From 1ff81eb806d6df78994a808217eb2c5f6b4ef8da Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Thu, 14 Oct 2010 21:34:27 +0200 Subject: Fix/Syn with JOGL 774138544e1eec3330309ad682fa05154a07ab8d ; Notably add: Applet's with native NEWT support, ie jogl-newt-applet-runner-gears.html --- src/demos/multisample/Multisample.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/demos/multisample') diff --git a/src/demos/multisample/Multisample.java b/src/demos/multisample/Multisample.java index 8e7facf..9c95b97 100755 --- a/src/demos/multisample/Multisample.java +++ b/src/demos/multisample/Multisample.java @@ -45,9 +45,6 @@ import javax.media.opengl.*; import javax.media.opengl.awt.GLCanvas; public class Multisample { - static { - GLProfile.initSingleton(); - } private GLCanvas canvas; // Simple class to warn if results are not going to be as expected @@ -76,6 +73,13 @@ public class Multisample { } public static void main(String[] args) { + // set argument 'NotFirstUIActionOnProcess' in the JNLP's application-desc tag for example + // + // NotFirstUIActionOnProcess + // + boolean firstUIActionOnProcess = 0==args.length || !args[0].equals("NotFirstUIActionOnProcess") ; + GLProfile.initSingleton(firstUIActionOnProcess); + new Multisample().run(args); } @@ -126,6 +130,7 @@ public class Multisample { class Listener implements GLEventListener { public void init(GLAutoDrawable drawable) { + System.err.println("Info: "+drawable); GL2 gl = drawable.getGL().getGL2(); gl.glClearColor(0, 0, 0, 0); -- cgit v1.2.3