summaryrefslogtreecommitdiffstats
path: root/src/demos/applets/JOGLNewtAppletBase.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-09-29 10:02:28 -0700
committerSven Gothel <[email protected]>2009-09-29 10:02:28 -0700
commit30c1fe267c0cf47a25db06ac93c6065881af2a20 (patch)
tree9219267ce49ace1ac5215ad23c0c9aa3e0f029a3 /src/demos/applets/JOGLNewtAppletBase.java
parentc752f7117dc38eed1caa870d7c96a084cea04f88 (diff)
GLNewtRun: Add parenting re-pos/re-size test; JOGLNewtAppletBase: Remove GLProfile, must be used in Capabilities/Window construction phase
Diffstat (limited to 'src/demos/applets/JOGLNewtAppletBase.java')
-rwxr-xr-xsrc/demos/applets/JOGLNewtAppletBase.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/demos/applets/JOGLNewtAppletBase.java b/src/demos/applets/JOGLNewtAppletBase.java
index 4246e4a..54dcf8f 100755
--- a/src/demos/applets/JOGLNewtAppletBase.java
+++ b/src/demos/applets/JOGLNewtAppletBase.java
@@ -14,7 +14,6 @@ import com.sun.opengl.util.*;
public class JOGLNewtAppletBase implements WindowListener, KeyListener, MouseListener, GLEventListener {
String glEventListenerClazzName;
- String glProfileName;
int glSwapInterval;
boolean handleWindowEvents;
boolean useGLInEventHandler;
@@ -27,7 +26,6 @@ public class JOGLNewtAppletBase implements WindowListener, KeyListener, MouseLis
boolean isValid = false;
public JOGLNewtAppletBase(String glEventListenerClazzName,
- String glProfileName,
int glSwapInterval,
boolean handleWindowEvents,
boolean useGLInEventHandler,
@@ -35,7 +33,6 @@ public class JOGLNewtAppletBase implements WindowListener, KeyListener, MouseLis
boolean glTrace) {
this.glEventListenerClazzName=glEventListenerClazzName;
- this.glProfileName=glProfileName;
this.glSwapInterval=glSwapInterval;
this.handleWindowEvents=handleWindowEvents;
this.useGLInEventHandler=useGLInEventHandler;