From 13465737988686cba0c28d570f1e09bb6509c61d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 22 Feb 2019 12:34:30 +0100 Subject: [PATCH] Platform: document that GlfwApplication::swapInterval() doesn't exist. --- src/Magnum/Platform/GlfwApplication.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index ef2e67e61..34ea7cf11 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -416,6 +416,10 @@ class GlfwApplication { * Set @cpp 0 @ce for no VSync, @cpp 1 @ce for enabled VSync. Some * platforms support @cpp -1 @ce for late swap tearing. Default is * driver-dependent. + * + * @note Unlike SDL2, GLFW doesn't provide any getter for the swap + * interval, so this class doesn't provide any equivalent to + * @ref Sdl2Application::swapInterval(). */ void setSwapInterval(Int interval);