From bd491dc416552771d293843743f8211fd54e929c Mon Sep 17 00:00:00 2001 From: shamanDevel Date: Wed, 11 May 2016 09:48:45 +0200 Subject: [PATCH] removed fixmes --- .../src/main/java/com/jme3/system/lwjgl/LwjglContext.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/jme3-lwjgl3/src/main/java/com/jme3/system/lwjgl/LwjglContext.java b/jme3-lwjgl3/src/main/java/com/jme3/system/lwjgl/LwjglContext.java index 72b1e934c..9c31f2085 100644 --- a/jme3-lwjgl3/src/main/java/com/jme3/system/lwjgl/LwjglContext.java +++ b/jme3-lwjgl3/src/main/java/com/jme3/system/lwjgl/LwjglContext.java @@ -75,8 +75,6 @@ public abstract class LwjglContext implements JmeContext { private static final Logger logger = Logger.getLogger(LwjglContext.class.getName()); - //Fixme: OpenGL/CL sharing does not work yet, this line disables the sharing methods - //(They will throw an OpenCLException) public static final boolean CL_GL_SHARING_POSSIBLE = true; protected static final String THREAD_NAME = "jME3 Main"; @@ -298,10 +296,6 @@ public abstract class LwjglContext implements JmeContext { } private long createContext(final CLPlatform platform, final List devices, long window) throws Exception { - //Fixme: OpenGL/CL sharing does not work. The properties seem to be setup wrongly - // If it works, set CL_GL_SHARING_POSSIBLE to true to enable the sharing - // methods again - final int propertyCount = 2 + 4 + 1; final PointerBuffer properties = PointerBuffer.allocateDirect(propertyCount + devices.size());