summaryrefslogtreecommitdiffstats
path: root/src/demos/GLInfo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-05-21 06:19:40 +0200
committerSven Gothel <[email protected]>2010-05-21 06:19:40 +0200
commit49b453135a64ad944eac2d4bebcb0fbb2fac5494 (patch)
tree0b666218146f161102a124ad0ccd16317da8a976 /src/demos/GLInfo.java
parent2329eaec304b79b1f9cd5838f7ea8747a9b45e14 (diff)
Fixes for JOGL changes 6e599a2696f878786783e0fea17534e67655a5c9
Diffstat (limited to 'src/demos/GLInfo.java')
-rwxr-xr-xsrc/demos/GLInfo.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/GLInfo.java b/src/demos/GLInfo.java
index 55bf9cd..0d0c1e2 100755
--- a/src/demos/GLInfo.java
+++ b/src/demos/GLInfo.java
@@ -34,7 +34,7 @@ public class GLInfo extends Thread implements GLEventListener {
if(0!=(type&USE_AWT)) {
Display nDisplay = NewtFactory.createDisplay(NativeWindowFactory.TYPE_AWT, null); // local display
Screen nScreen = NewtFactory.createScreen(NativeWindowFactory.TYPE_AWT, nDisplay, 0); // screen 0
- nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps);
+ nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps, false);
System.err.println(glp+" "+nWindow);
window = GLWindow.create(nWindow);
} else {