glfwSwapBuffers¶
Swaps the front and back buffers of the specified window.
This function swaps the front and back buffers of the specified window when rendering with OpenGL or OpenGL ES. If the swap interval is greater than zero, the GPU driver waits the specified number of screen updates before swapping the buffers.
The specified window must have an OpenGL or OpenGL ES context. Specifying
a window without a context will generate a GLFW_NO_WINDOW_CONTEXT
error.
This function does not apply to Vulkan. If you are rendering with Vulkan,
see vkQueuePresentKHR
instead.
- arguments
-
\GLFWwindow
$window
The window whose buffers to swap.
- returns
-
void