|
From: Elias N. <eli...@us...> - 2003-03-27 18:28:10
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/linux In directory sc8-pr-cvs1:/tmp/cvs-serv28750/linux Modified Files: org_lwjgl_opengl_BaseGL.cpp Log Message: Various linux fixes(alot) Index: org_lwjgl_opengl_BaseGL.cpp CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/linux/org_lwjgl_opengl_BaseGL.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/linux/org_lwjgl_opengl_BaseGL.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- org_lwjgl_opengl_BaseGL.cpp 27 Mar 2003 18:27:36 -0000 1.11 +++ org_lwjgl_opengl_BaseGL.cpp 27 Mar 2003 18:28:05 -0000 1.12 @@ -65,7 +65,6 @@ JNIEXPORT jboolean JNICALL Java_org_lwjgl_opengl_BaseGL_nCreate (JNIEnv * env, jobject obj) { - printf("1\n"); if (disp == NULL) { #ifdef _DEBUG printf("No display\n"); @@ -78,9 +77,7 @@ #endif return JNI_FALSE; } - printf("2\n"); context = glXCreateContext(disp, getVisualInfo(), NULL, True); - printf("3\n"); if (context == NULL) { #ifdef _DEBUG printf("Could not create context\n"); @@ -88,9 +85,7 @@ return JNI_FALSE; } - printf("4\n"); makeCurrent(); - printf("5\n"); if (extgl_Initialize() != 0) { #ifdef _DEBUG printf("Could not init gl function pointers\n"); |