diff options
author | Sven Gothel <[email protected]> | 2011-11-25 03:09:47 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-25 03:09:47 +0100 |
commit | c59ac4647b6084181ce17cc594e9343ebe8f6d56 (patch) | |
tree | 21fcec1507770a5dcc286a92e84a9d841d42c06a /src/newt/classes/com | |
parent | 0314be79a7a93931a74fe4322bc78e699d7741e9 (diff) |
Complete commit bafd9b99816f55c105230a59211caf13f0315910 (NEWT):
- WindowImpl exposes private non-delegated GraphicsConfiguration,
- which is being used by GLWindow's wrapped NativeWindow instantiation (eg: AWT driver)
- Fix NewtFactoryAWT.getNativeWindow() use AWTGraphicsConfiguration.create(..)
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/opengl/GLWindow.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java index 5566837f0..b2a44dbf6 100644 --- a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java +++ b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java @@ -408,7 +408,7 @@ public class GLWindow implements GLAutoDrawable, Window, NEWTEventConsumer, FPSC if (null == context && visible && 0 != window.getWindowHandle() && 0<getWidth()*getHeight()) { NativeWindow nw; if (window.getWrappedWindow() != null) { - nw = NativeWindowFactory.getNativeWindow(window.getWrappedWindow(), window.getGraphicsConfiguration()); + nw = NativeWindowFactory.getNativeWindow(window.getWrappedWindow(), window.getPrivateGraphicsConfiguration()); } else { nw = window; } |