From 1e8061c22dbb6a59a22c33ec11e50b717bbef61d Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Wed, 12 Feb 2003 09:29:07 +0000 Subject: [PATCH] replaced wglSwapLayerBuffers -> SwapBuffers --- src/native/win32/org_lwjgl_opengl_BaseGL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/win32/org_lwjgl_opengl_BaseGL.cpp b/src/native/win32/org_lwjgl_opengl_BaseGL.cpp index 660b2a17..418f4012 100644 --- a/src/native/win32/org_lwjgl_opengl_BaseGL.cpp +++ b/src/native/win32/org_lwjgl_opengl_BaseGL.cpp @@ -116,7 +116,7 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_BaseGL_swapBuffers // Handle OS messages here handleMessages(); // Then do the flip - wglSwapLayerBuffers(hdc, WGL_SWAP_MAIN_PLANE); + SwapBuffers(hdc); } /*