diff options
author | Kenneth Russel <[email protected]> | 2008-12-21 20:02:57 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2008-12-21 20:02:57 +0000 |
commit | 040200121e35aced836985c085699ef6c9df0719 (patch) | |
tree | 8abb08bfb96c59a231647342720f336faf2657de /src/classes/com/sun/javafx | |
parent | c62bd461e08fb4c2d2d775364e8edff2b04e5671 (diff) |
Removed lockSurface(), unlockSurface(), and isSurfaceLocked() from
GLDrawable interface because they are implementation details that
should not be in the public API. Removed associated calls from
GLCanvas, GLJPanel and Newt GLWindow.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1826 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/javafx')
-rw-r--r-- | src/classes/com/sun/javafx/newt/GLWindow.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/classes/com/sun/javafx/newt/GLWindow.java b/src/classes/com/sun/javafx/newt/GLWindow.java index e2fa4c67e..e7e5408fa 100644 --- a/src/classes/com/sun/javafx/newt/GLWindow.java +++ b/src/classes/com/sun/javafx/newt/GLWindow.java @@ -477,18 +477,6 @@ public class GLWindow extends Window implements GLAutoDrawable { return drawable.getNativeWindow(); } - public int lockSurface() throws GLException { - return drawable.lockSurface(); - } - - public void unlockSurface() { - drawable.unlockSurface(); - } - - public boolean isSurfaceLocked() { - return drawable.isSurfaceLocked(); - } - //---------------------------------------------------------------------- // Internals only below this point // |