aboutsummaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl/gl/CLGLTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/com/jogamp/opencl/gl/CLGLTest.java')
-rw-r--r--test/com/jogamp/opencl/gl/CLGLTest.java17
1 files changed, 9 insertions, 8 deletions
diff --git a/test/com/jogamp/opencl/gl/CLGLTest.java b/test/com/jogamp/opencl/gl/CLGLTest.java
index bcd6342d..f8cd28d5 100644
--- a/test/com/jogamp/opencl/gl/CLGLTest.java
+++ b/test/com/jogamp/opencl/gl/CLGLTest.java
@@ -18,8 +18,6 @@ import com.jogamp.opencl.CLContext;
import com.jogamp.opencl.CLPlatform;
import javax.media.opengl.GLCapabilities;
import javax.media.opengl.GLProfile;
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
import javax.media.opengl.GLContext;
import org.junit.Test;
@@ -38,10 +36,9 @@ public class CLGLTest {
private static GLContext glcontext;
private static GLWindow glWindow;
- @BeforeClass
+// @BeforeClass
public static void init() {
-
- GLProfile.initSingleton();
+ GLProfile.initSingleton(true);
// FIXME remove when JOCL is stabelized on mac
if(Platform.getOS().toLowerCase().contains("mac")) {
@@ -65,15 +62,14 @@ public class CLGLTest {
glWindow.setVisible(true);
glcontext = glWindow.getContext();
- glcontext.makeCurrent();
+// glcontext.makeCurrent();
out.println("useing glcontext:");
out.println(glcontext);
}
- @AfterClass
+// @AfterClass
public static void release() {
if(glcontext!= null) {
- glcontext.destroy();
glcontext = null;
}
}
@@ -81,6 +77,8 @@ public class CLGLTest {
@Test
public void createContextTest() {
+ init();
+
out.println(" - - - glcl; createContextTest - - - ");
CLDevice[] devices = CLPlatform.getDefault().listCLDevices();
@@ -116,7 +114,10 @@ public class CLGLTest {
context.release();
}
+ glcontext.destroy();
+
+ release();
}