From 394342138a29a5072786e0a3d5277e21a28bdcb4 Mon Sep 17 00:00:00 2001 From: Chien Yang Date: Fri, 6 Oct 2006 18:02:03 +0000 Subject: Clean up native resources and print error message if SetPixelFormat fail. git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@712 ba19aa83-45c5-6ac9-afd3-db810772062c --- src/native/ogl/NativeConfigTemplate3D.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/native/ogl/NativeConfigTemplate3D.c') diff --git a/src/native/ogl/NativeConfigTemplate3D.c b/src/native/ogl/NativeConfigTemplate3D.c index 2d7ace7..692ebfb 100644 --- a/src/native/ogl/NativeConfigTemplate3D.c +++ b/src/native/ogl/NativeConfigTemplate3D.c @@ -1436,6 +1436,8 @@ jint JNICALL Java_javax_media_j3d_NativeConfigTemplate3D_choosePixelFormat( jlong * offScreenPFListPtr; PIXELFORMATDESCRIPTOR dummy_pfd = getDummyPFD(); + int i; + /* * Select any pixel format and bound current context to * it so that we can get the wglChoosePixelFormatARB entry point. @@ -1458,7 +1460,12 @@ jint JNICALL Java_javax_media_j3d_NativeConfigTemplate3D_choosePixelFormat( return -1; } - SetPixelFormat(hdc, pixelFormat, NULL); + if (SetPixelFormat(hdc, pixelFormat, NULL)) { + printErrorMessage("In NativeConfigTemplate : Failed in SetPixelFormat"); + DestroyWindow(hwnd); + UnregisterClass(szAppName, (HINSTANCE)NULL); + return -1; + } hrc = wglCreateContext(hdc); if (!hrc) { -- cgit v1.2.3