diff options
Diffstat (limited to 'test/com')
-rw-r--r-- | test/com/jogamp/opencl/gl/CLGLTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/com/jogamp/opencl/gl/CLGLTest.java b/test/com/jogamp/opencl/gl/CLGLTest.java index e2864822..f05c4d55 100644 --- a/test/com/jogamp/opencl/gl/CLGLTest.java +++ b/test/com/jogamp/opencl/gl/CLGLTest.java @@ -42,7 +42,7 @@ public class CLGLTest { Screen screen = NewtFactory.createScreen(display, 0); // screen 0 assertNotNull(screen); - Window window = NewtFactory.createWindow(screen, new GLCapabilities(GLProfile.getDefault()), false /* undecorated */); + Window window = NewtFactory.createWindow(screen, new GLCapabilities(GLProfile.getDefault())); assertNotNull(window); window.setSize(640, 480); @@ -88,6 +88,7 @@ public class CLGLTest { } assumeNotNull(glcontext); + out.println(device.getPlatform()); CLContext context = CLGLContext.create(glcontext, device); assertNotNull(context); assertTrue(glcontext.isCurrent()); |