summary refs log tree commit diff
path: root/src/Window.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.zig')
-rw-r--r--src/Window.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Window.zig b/src/Window.zig
index eba375c..4f22fa9 100644
--- a/src/Window.zig
+++ b/src/Window.zig
@@ -185,6 +185,7 @@ pub fn setShouldClose(self: Window, value: bool) Error!void {
     try checkError();
 }
 
+/// Swap the front and back buffers.
 pub fn swapBuffers(self: Window) Error!void {
     glfwSwapBuffers(self.pimpl);
     try checkError();