diff options
author | Sven Gothel <[email protected]> | 2012-02-25 18:19:19 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-25 18:19:19 +0100 |
commit | 24f66881aed6bf1f6b79fe6d14ef3fdc0e254fab (patch) | |
tree | 6ca95f5bf2a2fe533c4d3f45c0d7a5dd3aabb71d /src/jogl/classes | |
parent | b6885506215bbc02b9b805d0c9ace2a134b2c61d (diff) |
Fix commit 9e66972c193399d6dcdf9e6662f4335bdf15736a
Diffstat (limited to 'src/jogl/classes')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java b/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java index 1ab66674b..bee2b28f9 100644 --- a/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java +++ b/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java @@ -206,7 +206,7 @@ public class EGLDrawableFactory extends GLDrawableFactoryImpl { public final boolean getIsDeviceCompatible(AbstractGraphicsDevice device) { // via mappings (X11/WGL/.. -> EGL) we shall be able to handle all types. - return null==eglES2DynamicLookupHelper || null==eglES1DynamicLookupHelper; + return null!=eglES2DynamicLookupHelper || null!=eglES1DynamicLookupHelper; } /** |