diff options
author | Sven Gothel <[email protected]> | 2012-08-18 16:38:56 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-08-18 16:38:56 +0200 |
commit | 26ca1c43c6a571d0fd686b0962343c4bcbc62e82 (patch) | |
tree | 39a0ccd4b2f8a96d0174bcc55156ea6ed31c295b /test/com/jogamp/opencl | |
parent | 8599a753ff0a885d3de42c6597d07bdde603b709 (diff) |
Adapt to GlueGen ARM Build Changes 422d7a5eb53fca6642ebf4e8910d8b0311bb2597 ; Remove JOGL GLProfile.initSingleton(boolean) call in CLGL test
Diffstat (limited to 'test/com/jogamp/opencl')
-rw-r--r-- | test/com/jogamp/opencl/gl/CLGLTest.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/com/jogamp/opencl/gl/CLGLTest.java b/test/com/jogamp/opencl/gl/CLGLTest.java index 464f1468..75cd35c2 100644 --- a/test/com/jogamp/opencl/gl/CLGLTest.java +++ b/test/com/jogamp/opencl/gl/CLGLTest.java @@ -74,15 +74,7 @@ public class CLGLTest { private static Window window; public static void initGL() { - GLProfile.initSingleton(true); - - Display display = NewtFactory.createDisplay(null); // local display - assertNotNull(display); - - Screen screen = NewtFactory.createScreen(display, 0); // screen 0 - assertNotNull(screen); - - window = NewtFactory.createWindow(screen, new GLCapabilities(GLProfile.getDefault())); + window = NewtFactory.createWindow(new GLCapabilities(GLProfile.getDefault())); assertNotNull(window); window.setSize(640, 480); |