diff options
author | Sven Gothel <[email protected]> | 2012-08-18 16:42:03 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-08-18 16:42:03 +0200 |
commit | 5a196a9690a6ef43e38394992ef0c3874dbc0392 (patch) | |
tree | 729e5ffc5f8f44fbeeb791c2e0adb8de4fff9872 /src/com/jogamp/opencl/demos/joglinterop | |
parent | 0e6bf2a0a9b3df729d6984bdc1a857889a3c1bdf (diff) |
Adapt to JOGL changes 3ab518e90eb4cf82bcb8b990d337a5e4a531136b: Removed deprecated GLProfile.initSingleton(boolean), use GLProfile.initSingleton() instead.
Diffstat (limited to 'src/com/jogamp/opencl/demos/joglinterop')
-rw-r--r-- | src/com/jogamp/opencl/demos/joglinterop/GLCLInteroperabilityDemo.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/jogamp/opencl/demos/joglinterop/GLCLInteroperabilityDemo.java b/src/com/jogamp/opencl/demos/joglinterop/GLCLInteroperabilityDemo.java index 8fb4c9f..7ea66b7 100644 --- a/src/com/jogamp/opencl/demos/joglinterop/GLCLInteroperabilityDemo.java +++ b/src/com/jogamp/opencl/demos/joglinterop/GLCLInteroperabilityDemo.java @@ -281,8 +281,7 @@ public class GLCLInteroperabilityDemo implements GLEventListener { public void dispose(GLAutoDrawable drawable) { } public static void main(String[] args) { - //false for webstart compatibility - GLProfile.initSingleton(false); + GLProfile.initSingleton(); new GLCLInteroperabilityDemo(); } |