diff options
author | Sven Gothel <[email protected]> | 2015-08-30 06:26:29 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-08-30 06:26:29 +0200 |
commit | 5acb70d3d301fe66e4d03037325a91528e4c2c1d (patch) | |
tree | 971c01c0a098b1ad12ea2ac6fecbf3b422ee486c /src/test/com | |
parent | 18e487fdfe6f27564d976aa3a568d0ddc272d8ba (diff) |
Bug 1203: Add missing constraints in desktop *GLContext.create* methods: Bail out if GL ES is requested ; Fix test case
*GLContext.createImpl(..) shall throw an GLException:
*GLContext.createContextARBImpl(..) shall return 0:
- Desktop implementation: if GL ES is requested
- EGL implementation: if GL Desktop is requested, but not available
Otherwise GLContextImpl may mistake a desktop context for an ES one.
+++
Fix unit test TestGLAutoDrawableFactoryGLProfileDeviceNEWT.test11ES2OnDesktop():
We have to query the factory by desired profile,
since the desktop factory cannot produce an GL ES context.
Diffstat (limited to 'src/test/com')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLAutoDrawableFactoryGLProfileDeviceNEWT.java | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLAutoDrawableFactoryGLProfileDeviceNEWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLAutoDrawableFactoryGLProfileDeviceNEWT.java index fe3ba91e3..1e264d21a 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLAutoDrawableFactoryGLProfileDeviceNEWT.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLAutoDrawableFactoryGLProfileDeviceNEWT.java @@ -71,7 +71,8 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { } } - void doTest(final boolean isEGL, final GLDrawableFactory factory, final GLCapabilitiesImmutable reqGLCaps, final GLEventListener demo) throws InterruptedException { + void doTest(final boolean isEGL, final GLDrawableFactory factory, final AbstractGraphicsDevice device, + final GLCapabilitiesImmutable reqGLCaps, final GLEventListener demo) throws InterruptedException { System.err.println("Factory: "+factory.getClass().getName()); System.err.println("Requested GL Caps: "+reqGLCaps); @@ -79,7 +80,7 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { // Create native OpenGL resources .. XGL/WGL/CGL .. // equivalent to GLAutoDrawable methods: setVisible(true) // - final GLOffscreenAutoDrawable glad = factory.createOffscreenAutoDrawable(null, reqGLCaps, null, widthStep*szStep, heightStep*szStep); + final GLOffscreenAutoDrawable glad = factory.createOffscreenAutoDrawable(device, reqGLCaps, null, widthStep*szStep, heightStep*szStep); Assert.assertNotNull(glad); Assert.assertTrue(glad.isRealized()); @@ -145,7 +146,8 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { System.err.println("EGL Factory n/a"); return; } - final GLProfile glp = getProfile(factory.getDefaultDevice(), GLProfile.GLES2); + final AbstractGraphicsDevice prodDevice = factory.getDefaultDevice(); + final GLProfile glp = getProfile(prodDevice, GLProfile.GLES2); if(null != glp) { Assert.assertTrue("Not a GLES2 profile but "+glp, glp.isGLES2()); Assert.assertTrue("Not a GL2ES2 profile but "+glp, glp.isGL2ES2()); @@ -157,7 +159,7 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { reqGLCaps.setOnscreen(false); final GearsES2 demo = new GearsES2(1); demo.setVerbose(false); - doTest(true /* isEGL */, factory, reqGLCaps, demo); + doTest(true /* isEGL */, factory, prodDevice, reqGLCaps, demo); } @Test @@ -167,7 +169,8 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { System.err.println("EGL Factory n/a"); return; } - final GLProfile glp = getProfile(factory.getDefaultDevice(), GLProfile.GL2GL3); + final AbstractGraphicsDevice prodDevice = factory.getDefaultDevice(); + final GLProfile glp = getProfile(prodDevice, GLProfile.GL2GL3); if(null != glp) { Assert.assertTrue("Not a GL2GL3 profile but "+glp, glp.isGL2GL3()); } @@ -181,17 +184,18 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { reqGLCaps.setOnscreen(false); final GearsES2 demo = new GearsES2(1); demo.setVerbose(false); - doTest(true /* isEGL */, factory, reqGLCaps, demo); + doTest(true /* isEGL */, factory, prodDevice, reqGLCaps, demo); } @Test public void test11ES2OnDesktop() throws InterruptedException { - final GLDrawableFactory factory = GLDrawableFactory.getDesktopFactory(); - if( null == factory ) { + final GLDrawableFactory deskFactory = GLDrawableFactory.getDesktopFactory(); + if( null == deskFactory ) { System.err.println("Desktop Factory n/a"); return; } - final GLProfile glp = getProfile(factory.getDefaultDevice(), GLProfile.GLES2); + final AbstractGraphicsDevice prodDevice = deskFactory.getDefaultDevice(); + final GLProfile glp = getProfile(prodDevice, GLProfile.GLES2); if(null != glp) { Assert.assertTrue("Not a GLES2 profile but "+glp, glp.isGLES2()); Assert.assertTrue("Not a GL2ES2 profile but "+glp, glp.isGL2ES2()); @@ -199,11 +203,16 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { if(null == glp) { return; } + final GLDrawableFactory prodFactory = GLDrawableFactory.getFactory(glp); + if( null == prodFactory ) { + System.err.println("Production Factory n/a"); + return; + } final GLCapabilities reqGLCaps = new GLCapabilities(glp); reqGLCaps.setOnscreen(false); final GearsES2 demo = new GearsES2(1); demo.setVerbose(false); - doTest(false /* isEGL */, factory, reqGLCaps, demo); + doTest(true /* isEGL */, prodFactory, prodDevice, reqGLCaps, demo); } @Test @@ -213,7 +222,8 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { System.err.println("Desktop Factory n/a"); return; } - final GLProfile glp = getProfile(factory.getDefaultDevice(), GLProfile.GL2GL3); + final AbstractGraphicsDevice prodDevice = factory.getDefaultDevice(); + final GLProfile glp = getProfile(prodDevice, GLProfile.GL2GL3); if(null != glp) { Assert.assertTrue("Not a GL2GL3 profile but "+glp, glp.isGL2GL3()); } @@ -227,7 +237,7 @@ public class TestGLAutoDrawableFactoryGLProfileDeviceNEWT extends UITestCase { reqGLCaps.setOnscreen(false); final GearsES2 demo = new GearsES2(1); demo.setVerbose(false); - doTest(false /* isEGL */, factory, reqGLCaps, demo); + doTest(false /* isEGL */, factory, prodDevice, reqGLCaps, demo); } public static void main(final String args[]) throws IOException { |