summaryrefslogtreecommitdiffstats
path: root/src/demos/es1/Info.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-10-29 04:09:43 +0200
committerSven Gothel <[email protected]>2010-10-29 04:09:43 +0200
commit2f2eece4438c933fa2dcfb79ed522251b0db5183 (patch)
treea231e1551db1b1896119de6dab9c8c842d87c250 /src/demos/es1/Info.java
parent1ff81eb806d6df78994a808217eb2c5f6b4ef8da (diff)
Accomodate JOGL changes up to ce24d32178106baa16e84f016192441ce45845a7
Diffstat (limited to 'src/demos/es1/Info.java')
-rwxr-xr-xsrc/demos/es1/Info.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demos/es1/Info.java b/src/demos/es1/Info.java
index cc2fe86..c8e0edb 100755
--- a/src/demos/es1/Info.java
+++ b/src/demos/es1/Info.java
@@ -25,8 +25,8 @@ public class Info implements GLEventListener {
Window nWindow = null;
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);
+ Screen nScreen = NewtFactory.createScreen(nDisplay, 0); // screen 0
+ nWindow = NewtFactory.createWindow(nScreen, caps);
nWindow.setUndecorated(false);
window = GLWindow.create(nWindow);
} else {