diff options
Diffstat (limited to 'test/com')
-rw-r--r-- | test/com/jogamp/opencl/gl/CLGLTest.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/com/jogamp/opencl/gl/CLGLTest.java b/test/com/jogamp/opencl/gl/CLGLTest.java index aba827e7..464f1468 100644 --- a/test/com/jogamp/opencl/gl/CLGLTest.java +++ b/test/com/jogamp/opencl/gl/CLGLTest.java @@ -33,7 +33,6 @@ package com.jogamp.opencl.gl; import com.jogamp.common.nio.Buffers; -import com.jogamp.common.os.Platform; import com.jogamp.opencl.CLCommandQueue; import javax.media.opengl.GL2; import javax.media.opengl.GLException; @@ -77,11 +76,6 @@ public class CLGLTest { public static void initGL() { GLProfile.initSingleton(true); - // FIXME remove when JOCL is stabelized on mac - if(Platform.getOS().toLowerCase().contains("mac")) { - fail("quick exit to prevent deadlock"); - } - Display display = NewtFactory.createDisplay(null); // local display assertNotNull(display); @@ -215,7 +209,7 @@ public class CLGLTest { while(clData.hasRemaining()) { assertEquals(glData.get(), clData.get()); } - + out.println(clBuffer); clBuffer.release(); |