summaryrefslogtreecommitdiffstats
path: root/src/demos/es2/openmax/Cube.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/es2/openmax/Cube.java
parent5e0f70ef63e0a04383d2701491b2f5f19f19b611 (diff)
Fix for NEWT Changes: GLWindow: remove ambigous create functions, ie with Window and Capabilities arguments
Diffstat (limited to 'src/demos/es2/openmax/Cube.java')
-rw-r--r--src/demos/es2/openmax/Cube.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/demos/es2/openmax/Cube.java b/src/demos/es2/openmax/Cube.java
index 706d8b5..46d25c1 100644
--- a/src/demos/es2/openmax/Cube.java
+++ b/src/demos/es2/openmax/Cube.java
@@ -318,14 +318,16 @@ public class Cube implements GLEventListener {
caps.setDepthBits(16);
Window nWindow = null;
+ GLWindow window;
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);
+ window = GLWindow.create(nWindow);
+ } else {
+ window = GLWindow.create(caps);
}
- GLWindow window = GLWindow.create(nWindow, caps);
-
window.addGLEventListener(this);
window.enablePerfLog(true);