diff options
author | Sven Gothel <[email protected]> | 2013-03-27 12:33:16 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-03-27 12:33:16 +0100 |
commit | b95dbaeb0d23d365bc15d9b6deb4149d35be533a (patch) | |
tree | 0e7dfb0ce10231fb2613c7448db371e113b040eb /src | |
parent | 9a4fcc7ea4ec61e4ceed791acced734ac04ea270 (diff) |
Complete 9a4fcc7ea4ec61e4ceed791acced734ac04ea270: SharedResourceRunner.Impl.createSharedResource(..): isGLXAvailableOnServer(..) call redundant since checked upfront at isDeviceSupported(..)
Diffstat (limited to 'src')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java b/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java index 8d1717e75..f22bbfc52 100644 --- a/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java +++ b/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java @@ -250,9 +250,6 @@ public class X11GLXDrawableFactory extends GLDrawableFactoryImpl { try { final X11GraphicsScreen sharedScreen = new X11GraphicsScreen(sharedDevice, sharedDevice.getDefaultScreen()); - if(!GLXUtil.isGLXAvailableOnServer(sharedDevice)) { - throw new GLException("GLX not available on device/server: "+sharedDevice); - } GLXUtil.initGLXClientDataSingleton(sharedDevice); final String glXServerVendorName = GLX.glXQueryServerString(sharedDevice.getHandle(), 0, GLX.GLX_VENDOR); final VersionNumber glXServerVersion = GLXUtil.getGLXServerVersionNumber(sharedDevice); |