diff options
author | Sven Gothel <[email protected]> | 2011-11-18 19:22:11 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-18 19:22:11 +0100 |
commit | cd609dc73fc7d7ecfc67670c57cfc7d90dff4eb8 (patch) | |
tree | f3c2ebcf8f1ea0e39b3067d10951c63dde7108b0 /src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java | |
parent | 2b4318da81b2ce97b7f7291f423053d9d4a46eca (diff) |
WindowsWGLDrawableFactory createOffscreenDrawable() - Don't spin off creation on AWT thread (may deadlock)
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java b/src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java index 4f0b11789..068190cb2 100644 --- a/src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java +++ b/src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java @@ -323,15 +323,6 @@ public abstract class GLDrawableFactoryImpl extends GLDrawableFactory { // GLDrawableFactoryImpl details // - protected void maybeDoSingleThreadedWorkaround(Runnable action) { - if (Threading.isSingleThreaded() && - !Threading.isOpenGLThread()) { - Threading.invokeOnOpenGLThread(action); - } else { - action.run(); - } - } - /** * Returns the sole GLDrawableFactoryImpl instance. * |