summaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/sun/opengl/impl
diff options
context:
space:
mode:
authorsg215889 <[email protected]>2009-07-28 20:20:02 -0700
committersg215889 <[email protected]>2009-07-28 20:20:02 -0700
commitce34e2286a1ef4f8be874144e25c0268a1abf90f (patch)
treec6039233aa5e4851c40eb789dc7bb24609c3ad15 /src/jogl/classes/com/sun/opengl/impl
parent6db7512b4dc3c97e31937e3bd226b2b33cc53268 (diff)
Use getNativeWindowType(custom=true) for factory selection; Don't fail is non native OS factory is available
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/impl')
-rwxr-xr-xsrc/jogl/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java b/src/jogl/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java
index 396580c1d..7af45d683 100755
--- a/src/jogl/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java
+++ b/src/jogl/classes/com/sun/opengl/impl/egl/EGLDrawableFactory.java
@@ -50,7 +50,7 @@ public class EGLDrawableFactory extends GLDrawableFactoryImpl {
new EGLGraphicsConfigurationFactory();
// Check for other underlying stuff ..
- if(NativeWindowFactory.TYPE_X11.equals(NativeWindowFactory.getNativeWindowType(false))) {
+ if(NativeWindowFactory.TYPE_X11.equals(NativeWindowFactory.getNativeWindowType(true))) {
try {
NWReflection.createInstance("com.sun.opengl.impl.x11.glx.X11GLXGraphicsConfigurationFactory");
} catch (Throwable t) {}