summaryrefslogtreecommitdiffstats
path: root/src/demos/j2d/TextCube.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/j2d/TextCube.java')
-rwxr-xr-xsrc/demos/j2d/TextCube.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/demos/j2d/TextCube.java b/src/demos/j2d/TextCube.java
index 3433463..4587e10 100755
--- a/src/demos/j2d/TextCube.java
+++ b/src/demos/j2d/TextCube.java
@@ -65,9 +65,6 @@ import com.jogamp.opengl.util.Animator;
/** Shows how to place 2D text in 3D using the TextRenderer. */
public class TextCube extends Demo {
- static {
- GLProfile.initSingleton();
- }
private float xAng;
private float yAng;
private GLU glu = new GLU();
@@ -77,6 +74,13 @@ public class TextCube extends Demo {
private float textScaleFactor;
public static void main(String[] args) {
+ // set argument 'NotFirstUIActionOnProcess' in the JNLP's application-desc tag for example
+ // <application-desc main-class="demos.j2d.TextCube"/>
+ // <argument>NotFirstUIActionOnProcess</argument>
+ // </application-desc>
+ boolean firstUIActionOnProcess = 0==args.length || !args[0].equals("NotFirstUIActionOnProcess") ;
+ GLProfile.initSingleton(firstUIActionOnProcess);
+
Frame frame = new Frame("Text Cube");
frame.setLayout(new BorderLayout());