diff options
author | Sven Gothel <[email protected]> | 2008-08-11 12:16:28 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2008-08-11 12:16:28 +0000 |
commit | 1ef16ee89df4d0dd4df0c1356e5b52eba20f3850 (patch) | |
tree | 6430cf0e20dd6bfba9b12552e5f8803a6869a312 /src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java | |
parent | 2bf0794404b9ec92e13577f3b812a3947b57a0d1 (diff) |
Minor CVM/ES1 fixes
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1747 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java')
-rw-r--r-- | src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java b/src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java index b898f69e9..702ceb7b4 100644 --- a/src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java +++ b/src/classes/com/sun/opengl/impl/x11/glx/X11GLXDrawable.java @@ -83,7 +83,7 @@ public abstract class X11GLXDrawable extends GLDrawableImpl { XVisualInfo[] infos = X11Lib.XGetVisualInfo(display, X11Lib.VisualIDMask, template, count, 0); getFactory().unlockToolkit(); if (infos == null || infos.length == 0) { - throw new GLException("Error while getting XVisualInfo for visual ID " + visualID); + throw new GLException("Error while getting XVisualInfo for visual ID " + visualID+", "+this); } if (DEBUG) { System.err.println("!!! Fetched XVisualInfo for visual ID 0x" + Long.toHexString(visualID)); |