summaryrefslogtreecommitdiffstats
path: root/src/demos/GLInfo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-09-12 12:33:51 -0700
committerSven Gothel <[email protected]>2009-09-12 12:33:51 -0700
commit84cd1236dbfc44dd18cf377589e56990a192f63b (patch)
treed13c487f05722184c5121b7c52d78e0bb36f0de0 /src/demos/GLInfo.java
parent5e0f70ef63e0a04383d2701491b2f5f19f19b611 (diff)
Fix for NEWT Changes: GLWindow: remove ambigous create functions, ie with Window and Capabilities arguments
Diffstat (limited to 'src/demos/GLInfo.java')
-rwxr-xr-xsrc/demos/GLInfo.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/demos/GLInfo.java b/src/demos/GLInfo.java
index 2c00668..938e087 100755
--- a/src/demos/GLInfo.java
+++ b/src/demos/GLInfo.java
@@ -37,8 +37,10 @@ public class GLInfo extends Thread implements GLEventListener {
Screen nScreen = NewtFactory.createScreen(NativeWindowFactory.TYPE_AWT, nDisplay, 0); // screen 0
nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps);
System.err.println(glp+" "+nWindow);
+ window = GLWindow.create(nWindow);
+ } else {
+ window = GLWindow.create(caps);
}
- window = GLWindow.create(nWindow, caps);
System.err.println(glp+" GLWindow : "+window);