diff options
author | Sven Gothel <[email protected]> | 2019-12-09 07:12:56 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-09 07:12:56 +0100 |
commit | 606fbe8b3f4c420f1c4faecf4f49276e054543a0 (patch) | |
tree | cc7d1403e85b6e71370d088fee2dcbbc5198b9f3 /src/newt/classes | |
parent | 438f4bef0004834485c36eee013dae9199dd55d9 (diff) |
Bug 1156: NEWT WindowDriver: Handle case with requested CapabilitiesImmutable not being GLCapabilitiesImmutable
Diffstat (limited to 'src/newt/classes')
-rw-r--r-- | src/newt/classes/jogamp/newt/driver/egl/gbm/WindowDriver.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/classes/jogamp/newt/driver/egl/gbm/WindowDriver.java b/src/newt/classes/jogamp/newt/driver/egl/gbm/WindowDriver.java index 6d9940b95..a3af050c5 100644 --- a/src/newt/classes/jogamp/newt/driver/egl/gbm/WindowDriver.java +++ b/src/newt/classes/jogamp/newt/driver/egl/gbm/WindowDriver.java @@ -125,8 +125,9 @@ public class WindowDriver extends WindowImpl { throw new GLException("Caught: eglBindAPI to "+(ctDesktopGL ? "ES" : "GL")+" failed , error "+toHexString(EGL.eglGetError())); } + final GLCapabilitiesImmutable glCapsReq = EGLGraphicsConfigurationFactory.castOrCopyImmutable(capsRequested); final EGLGraphicsConfiguration eglConfig = EGLGraphicsConfigurationFactory.chooseGraphicsConfigurationStatic( - (GLCapabilitiesImmutable)capsRequested, (GLCapabilitiesImmutable)capsRequested, (GLCapabilitiesChooser)capabilitiesChooser, + glCapsReq, glCapsReq, (GLCapabilitiesChooser)capabilitiesChooser, aScreen, nativeVisualID, !capsRequested.isBackgroundOpaque()); if (eglConfig == null) { throw new NativeWindowException("Error choosing GraphicsConfiguration creating window: "+this); @@ -137,7 +138,6 @@ public class WindowDriver extends WindowImpl { if (nativeWindowHandle == 0) { throw new NativeWindowException("Error creating egl window: "+eglConfig); } - setGraphicsConfiguration(eglConfig); setWindowHandle(nativeWindowHandle); if (0 == getWindowHandle()) { throw new NativeWindowException("Error native Window Handle is null"); |