From 84cd1236dbfc44dd18cf377589e56990a192f63b Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 12 Sep 2009 12:33:51 -0700 Subject: Fix for NEWT Changes: GLWindow: remove ambigous create functions, ie with Window and Capabilities arguments --- src/demos/es2/perftst/Perftst.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/demos/es2/perftst/Perftst.java') diff --git a/src/demos/es2/perftst/Perftst.java b/src/demos/es2/perftst/Perftst.java index f023e4d..06520df 100755 --- a/src/demos/es2/perftst/Perftst.java +++ b/src/demos/es2/perftst/Perftst.java @@ -56,8 +56,10 @@ public class Perftst implements MouseListener, GLEventListener { 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); } - window = GLWindow.create(nWindow, caps); window.addMouseListener(this); window.addGLEventListener(this); -- cgit v1.2.3