diff options
author | Sven Gothel <[email protected]> | 2008-11-26 22:05:16 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2008-11-26 22:05:16 +0000 |
commit | 47c0b60fa9fdd1df48cad1ec999ba40c3185e28f (patch) | |
tree | ead27b319ac5a8cf5a839e8c654b71c69d3efada /src/classes/com/sun/opengl | |
parent | 3fac9daea59c6231f96ef162e6ea64ff35e0b958 (diff) |
Newt-KD: window working, pointer event buggy
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1806 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl')
-rw-r--r-- | src/classes/com/sun/opengl/impl/egl/EGLConfig.java | 4 | ||||
-rwxr-xr-x | src/classes/com/sun/opengl/impl/egl/EGLDrawable.java | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/egl/EGLConfig.java b/src/classes/com/sun/opengl/impl/egl/EGLConfig.java index 0b33f91cc..49c1a895f 100644 --- a/src/classes/com/sun/opengl/impl/egl/EGLConfig.java +++ b/src/classes/com/sun/opengl/impl/egl/EGLConfig.java @@ -156,6 +156,10 @@ public class EGLConfig { return attrs; } + public String toString() { + return "EGLConfig[ id "+configID+ + ", "+capabilities+"]"; + } private _EGLConfig _config; private int configID; private GLCapabilities capabilities; diff --git a/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java b/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java index 77698f76d..fd0405a69 100755 --- a/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java +++ b/src/classes/com/sun/opengl/impl/egl/EGLDrawable.java @@ -181,7 +181,7 @@ public class EGLDrawable extends GLDrawableImpl { return "EGLDrawable[ realized "+getRealized()+ ", window "+getNativeWindow()+ ", egl display " + display + - ", egl config " + config + + ", " + config + ", egl surface " + surface + ", factory "+getFactory()+"]"; } |