diff options
author | Sven Gothel <[email protected]> | 2012-02-25 18:30:25 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-25 18:30:25 +0100 |
commit | c3098619080d10e5bec8b52999117002b16f3ff5 (patch) | |
tree | 0be5c16d29a17010f8c2799fa2abfe54fb96b581 /src/jogl/classes/javax/media/opengl/GLDrawableFactory.java | |
parent | 24f66881aed6bf1f6b79fe6d14ef3fdc0e254fab (diff) |
X11/GLX: Query X Server whether GLX is available (X11/SharedResourceRunner) ; Minor cleanups.
Before gathering GLX details and actually instantiate a X11/GLX shared resource,
we shall query whether GLX is actually available.
Since GLX availability is being queried on the server side,
more changes are required for the X11GLX* impl,
eg. not using X11GLXGraphicsConfigurationFactory and fall back to
X11GraphicsConfigurationFactory.
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLDrawableFactory.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLDrawableFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java b/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java index 9a921091c..26abc53ba 100644 --- a/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java +++ b/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java @@ -266,7 +266,7 @@ public abstract class GLDrawableFactory { throw new InternalError("no default device"); } if (GLProfile.DEBUG) { - System.err.println("Info: GLDrawableFactory.validateDevice: using default device : "+device); + System.err.println("Info: "+getClass().getSimpleName()+".validateDevice: using default device : "+device); } } @@ -274,7 +274,7 @@ public abstract class GLDrawableFactory { // since even the default device may not be used by this factory. if( !getIsDeviceCompatible(device) ) { if (GLProfile.DEBUG) { - System.err.println("Info: GLDrawableFactory.validateDevice: device not compatible : "+device); + System.err.println("Info: "+getClass().getSimpleName()+".validateDevice: device not compatible : "+device); } return null; } |