diff options
author | Sven Gothel <[email protected]> | 2008-06-28 23:50:30 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2008-06-28 23:50:30 +0000 |
commit | 7be2d71e458dd37789ceac43dede4b308eff45c2 (patch) | |
tree | 3bdf63df9b5dce95ad8ac28047513191e2a04251 /src/classes/com/sun/opengl/impl/egl/awt | |
parent | d96486967efcfb6f43226da9fa60cbc3d68ab323 (diff) |
Synced locking of EGLDrawable/EGLContext with X11GLX* counterpart.
However, the 'unofficial combination' X11/AWT/EGL-Emulation
will freeze when AWT locking will be used.
Hence AWT locking is disabled within EGL,
which has no impact for the NEWT/EGL product.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1701 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/egl/awt')
-rw-r--r-- | src/classes/com/sun/opengl/impl/egl/awt/EGLAWTDrawableFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classes/com/sun/opengl/impl/egl/awt/EGLAWTDrawableFactory.java b/src/classes/com/sun/opengl/impl/egl/awt/EGLAWTDrawableFactory.java index e5d1387e8..501de1d01 100644 --- a/src/classes/com/sun/opengl/impl/egl/awt/EGLAWTDrawableFactory.java +++ b/src/classes/com/sun/opengl/impl/egl/awt/EGLAWTDrawableFactory.java @@ -44,11 +44,11 @@ public class EGLAWTDrawableFactory extends EGLDrawableFactory { public void lockToolkit() { super.lockToolkit(); - // freezes AWT: JAWTUtil.lockToolkit(); + //JAWTUtil.lockToolkit(); } public void unlockToolkit() { - // freezes AWT: JAWTUtil.unlockToolkit(); + //JAWTUtil.unlockToolkit(); super.unlockToolkit(); } |