|
From: Elias N. <eli...@us...> - 2004-07-30 13:58:19
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14657/linux Modified Files: org_lwjgl_opengl_Display.cpp Log Message: Removed commented out releaseContext() from linux Display.cpp Index: org_lwjgl_opengl_Display.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/linux/org_lwjgl_opengl_Display.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- org_lwjgl_opengl_Display.cpp 24 Jul 2004 22:17:03 -0000 1.13 +++ org_lwjgl_opengl_Display.cpp 30 Jul 2004 13:58:08 -0000 1.14 @@ -387,13 +387,6 @@ throwException(env, "Could not make display context current"); } -/*static void releaseContext(void) { - if (USEGLX13) - glXMakeContextCurrent(getDisplay(), None, None, NULL); - else - glXMakeCurrent(getDisplay(), None, NULL); -} -*/ int convertToBPE(int bpp) { int bpe; switch (bpp) { @@ -531,7 +524,6 @@ } static void destroyContext(void) { -// releaseContext(); if (USEGLX13) { XFree(configs); configs = NULL; |