diff options
Diffstat (limited to 'src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtAppletBase.java')
-rwxr-xr-x | src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtAppletBase.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtAppletBase.java b/src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtAppletBase.java index c6240d1f9..b1061dd14 100755 --- a/src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtAppletBase.java +++ b/src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtAppletBase.java @@ -7,6 +7,8 @@ import java.security.PrivilegedAction; import javax.media.nativewindow.NativeWindow; import javax.media.opengl.*; +import jogamp.newt.Debug; + import com.jogamp.opengl.util.*; import com.jogamp.newt.event.*; @@ -16,6 +18,8 @@ import com.jogamp.newt.opengl.GLWindow; referenced from a web page via an <applet> tag. */ public class JOGLNewtAppletBase implements KeyListener, GLEventListener { + public static final boolean DEBUG = Debug.debug("Applet"); + String glEventListenerClazzName; int glSwapInterval; boolean noDefaultKeyListener; |