|
From: Elias N. <eli...@us...> - 2003-02-12 09:29:11
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/win32 In directory sc8-pr-cvs1:/tmp/cvs-serv28210/win32 Modified Files: org_lwjgl_opengl_BaseGL.cpp Log Message: replaced wglSwapLayerBuffers -> SwapBuffers Index: org_lwjgl_opengl_BaseGL.cpp CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/win32/org_lwjgl_opengl_BaseGL.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/win32/org_lwjgl_opengl_BaseGL.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- org_lwjgl_opengl_BaseGL.cpp 8 Feb 2003 23:25:11 -0000 1.12 +++ org_lwjgl_opengl_BaseGL.cpp 12 Feb 2003 09:29:07 -0000 1.13 @@ -116,7 +116,7 @@ // Handle OS messages here handleMessages(); // Then do the flip - wglSwapLayerBuffers(hdc, WGL_SWAP_MAIN_PLANE); + SwapBuffers(hdc); } /* |