diff options
author | Chien Yang <[email protected]> | 2006-10-06 18:02:03 +0000 |
---|---|---|
committer | Chien Yang <[email protected]> | 2006-10-06 18:02:03 +0000 |
commit | 394342138a29a5072786e0a3d5277e21a28bdcb4 (patch) | |
tree | 5e89d41ac5d4533b2be0e0baf25aacb665999465 /src/native/ogl/NativeScreenInfo.c | |
parent | 9eef9af05c78cdad57526c633aa3b31fc74f7aaa (diff) |
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
Diffstat (limited to 'src/native/ogl/NativeScreenInfo.c')
-rw-r--r-- | src/native/ogl/NativeScreenInfo.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/native/ogl/NativeScreenInfo.c b/src/native/ogl/NativeScreenInfo.c index 9d1cd36..b9775e7 100644 --- a/src/native/ogl/NativeScreenInfo.c +++ b/src/native/ogl/NativeScreenInfo.c @@ -187,7 +187,12 @@ Java_javax_media_j3d_NativeScreenInfo_queryWglARB( return JNI_FALSE; } - SetPixelFormat(hdc, pixelFormat, NULL); + if (SetPixelFormat(hdc, pixelFormat, NULL)) { + printErrorMessage("Failed in SetPixelFormat"); + DestroyWindow(hwnd); + UnregisterClass(szAppName, (HINSTANCE)NULL); + return -1; + } hrc = wglCreateContext(hdc); if (!hrc) { |