|
From: Caspian Rychlik-P. <ci...@us...> - 2003-09-26 16:51:00
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/win32 In directory sc8-pr-cvs1:/tmp/cvs-serv14594/src/native/win32 Modified Files: org_lwjgl_opengl_Window.cpp Log Message: Changed from wglSwapBuffers back to SwapBuffers. Index: org_lwjgl_opengl_Window.cpp CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/win32/org_lwjgl_opengl_Window.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/win32/org_lwjgl_opengl_Window.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- org_lwjgl_opengl_Window.cpp 26 Sep 2003 13:59:50 -0000 1.7 +++ org_lwjgl_opengl_Window.cpp 26 Sep 2003 16:26:10 -0000 1.8 @@ -529,7 +529,8 @@ (JNIEnv * env, jclass clazz) { dirty = false; - wglSwapLayerBuffers(hdc, WGL_SWAP_MAIN_PLANE); + SwapBuffers(hdc); +// wglSwapLayerBuffers(hdc, WGL_SWAP_MAIN_PLANE); } /* |