summaryrefslogtreecommitdiffstats
path: root/src/demos/GLNewtRun.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/GLNewtRun.java
parent1ff81eb806d6df78994a808217eb2c5f6b4ef8da (diff)
Accomodate JOGL changes up to ce24d32178106baa16e84f016192441ce45845a7
Diffstat (limited to 'src/demos/GLNewtRun.java')
-rwxr-xr-xsrc/demos/GLNewtRun.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demos/GLNewtRun.java b/src/demos/GLNewtRun.java
index 82aec19..40e5e1a 100755
--- a/src/demos/GLNewtRun.java
+++ b/src/demos/GLNewtRun.java
@@ -193,15 +193,15 @@ public class GLNewtRun extends WindowAdapter implements KeyListener, MouseListen
Window nWindow = null;
if(useAWT) {
Display nDisplay = NewtFactory.createDisplay(NativeWindowFactory.TYPE_AWT, null); // local display
- Screen nScreen = NewtFactory.createScreen(NativeWindowFactory.TYPE_AWT, nDisplay, 0); // screen 0
+ Screen nScreen = NewtFactory.createScreen(nDisplay, 0); // screen 0
if(useAWTTestFrame) {
java.awt.MenuBar menuTest = new java.awt.MenuBar();
menuTest.add(new java.awt.Menu("External Frame Test - Menu"));
java.awt.Frame frame = new java.awt.Frame("External Frame Test");
frame.setMenuBar(menuTest);
- nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, new Object[] { frame }, nScreen, caps);
+ nWindow = NewtFactory.createWindow(new Object[] { frame }, nScreen, caps);
} else {
- nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps);
+ nWindow = NewtFactory.createWindow(nScreen, caps);
}
} else {
Display nDisplay = NewtFactory.createDisplay(null); // local display