From 30c1fe267c0cf47a25db06ac93c6065881af2a20 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 29 Sep 2009 10:02:28 -0700 Subject: GLNewtRun: Add parenting re-pos/re-size test; JOGLNewtAppletBase: Remove GLProfile, must be used in Capabilities/Window construction phase --- src/demos/applets/JOGLNewtApplet1Run.java | 1 - src/demos/applets/JOGLNewtAppletBase.java | 3 --- 2 files changed, 4 deletions(-) (limited to 'src/demos/applets') diff --git a/src/demos/applets/JOGLNewtApplet1Run.java b/src/demos/applets/JOGLNewtApplet1Run.java index 8080fe4..2d8cd3c 100755 --- a/src/demos/applets/JOGLNewtApplet1Run.java +++ b/src/demos/applets/JOGLNewtApplet1Run.java @@ -45,7 +45,6 @@ public class JOGLNewtApplet1Run extends Applet { throw new RuntimeException("No applet parameter 'gl_event_listener_class'"); } base = new JOGLNewtAppletBase(glEventListenerClazzName, - glProfileName, glSwapInterval, handleWindowEvents, useGLInEventHandler, 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; -- cgit v1.2.3