diff --git a/doc/changelog.dox b/doc/changelog.dox index 534a9b07c..1c2c59d28 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -69,6 +69,15 @@ r>>) code that's not VAO-aware working on core GL profiles (which don't allow default VAOs being used for drawing) +@subsubsection changelog-latest-changes-platform Platform libraries + +- @ref Platform::Sdl2Application::swapBuffers(), "Platform::*Application::swapBuffers()" + @ref Platform::Sdl2Application::swapInterval() "swapInterval() const" const, + @ref Platform::Sdl2Application::setSwapInterval() "setSwapInterval()", + @ref Platform::Sdl2Application::setMinimalLoopPeriod() "setMinimalLoopPeriod()" and + @ref Platform::Sdl2Application::redraw() "redraw()" were changed from + protected to public to allow calling them from outside + @subsubsection changelog-latest-changes-texturetools TextureTools library - Further performance and output quality improvements for diff --git a/src/Magnum/Platform/AndroidApplication.h b/src/Magnum/Platform/AndroidApplication.h index 8f4b3d203..4449c6761 100644 --- a/src/Magnum/Platform/AndroidApplication.h +++ b/src/Magnum/Platform/AndroidApplication.h @@ -309,7 +309,6 @@ class AndroidApplication { */ Vector2i windowSize() const; - protected: /** * @brief Swap buffers * diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index 05e2c39ab..8f7a85fb0 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -394,7 +394,6 @@ class GlfwApplication { */ Vector2 dpiScaling(const Configuration& configuration) const; - protected: /** * @brief Swap buffers * diff --git a/src/Magnum/Platform/GlutApplication.h b/src/Magnum/Platform/GlutApplication.h index 6c5fe0e27..1950cb07e 100644 --- a/src/Magnum/Platform/GlutApplication.h +++ b/src/Magnum/Platform/GlutApplication.h @@ -273,6 +273,7 @@ class CORRADE_DEPRECATED("scheduled for removal, consider switching to Sdl2Appli /** @{ @name Screen handling */ + public: /** * @brief Swap buffers * diff --git a/src/Magnum/Platform/Sdl2Application.h b/src/Magnum/Platform/Sdl2Application.h index 4962fe844..ffdec713a 100644 --- a/src/Magnum/Platform/Sdl2Application.h +++ b/src/Magnum/Platform/Sdl2Application.h @@ -659,7 +659,6 @@ class Sdl2Application { void setContainerCssClass(const std::string& cssClass); #endif - protected: /** * @brief Swap buffers *