diff options
author | Michael Bien <[email protected]> | 2011-04-26 21:29:40 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-04-26 21:29:40 +0200 |
commit | 7d44ee784ffa59146d2d1d124f5ffc482fb0f5f0 (patch) | |
tree | 4236ea1fdda5f7b423a457f7fb8dc8c058d9a060 /test/com/jogamp | |
parent | 5e3020e831a4b5fc04843db88642097b2ad072a9 (diff) |
using CL_CGL sharegroup for context creation on mac + enabled CLGLTest on mac
Diffstat (limited to 'test/com/jogamp')
-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(); |