From 0b07bb7afba75fc2fe1747af0a7a21596e9ccedc Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Sat, 3 Jul 2004 16:07:52 +0000 Subject: [PATCH] *** empty log message *** --- src/native/win32/org_lwjgl_opengl_Display.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/native/win32/org_lwjgl_opengl_Display.cpp b/src/native/win32/org_lwjgl_opengl_Display.cpp index 266fc251..5479d8b0 100644 --- a/src/native/win32/org_lwjgl_opengl_Display.cpp +++ b/src/native/win32/org_lwjgl_opengl_Display.cpp @@ -617,7 +617,6 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_Display_nCreateWindow(JNIEnv *env, BOOL result = wglMakeCurrent(hdc, hglrc); if (!result) { - printf("Could not bind context to window %d %d\n", GetLastError(), pixel_format_index); throwException(env, "Could not bind context to window"); closeWindow(); return; @@ -704,7 +703,6 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_Display_createContext(JNIEnv *env, extgl_InitWGL(env); if (extgl_Extensions.WGL_ARB_pixel_format) { pixel_format_index = findPixelFormatARB(env, pixel_format, NULL, true, true, true); - printf("pixel format %d\n", pixel_format_index); wglMakeCurrent(NULL, NULL); wglDeleteContext(hglrc); hglrc = wglCreateContext(hdc);