diff options
author | Sven Gothel <[email protected]> | 2013-10-27 10:15:48 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-27 10:15:48 +0100 |
commit | b642b87c85329b37a181f96e1d7adeea9fb6b79f (patch) | |
tree | d01b08d43bf2f2c4d64fba27b98fab9618c12eea /src/jogl/classes/com | |
parent | a444e03c8a346492de400b203d22f3f6c0067628 (diff) |
API doc: GLStateKeeper (wording), GLAutoDrawable (enh. init desc.), GLDrawable (Shared Context)
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/GLStateKeeper.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/GLStateKeeper.java b/src/jogl/classes/com/jogamp/opengl/GLStateKeeper.java index b98c4431d..2b452e138 100644 --- a/src/jogl/classes/com/jogamp/opengl/GLStateKeeper.java +++ b/src/jogl/classes/com/jogamp/opengl/GLStateKeeper.java @@ -62,14 +62,14 @@ public interface GLStateKeeper { /** * If set to <code>true</code>, the next {@link GLAutoDrawable#destroy()} operation will - * {@link #pullGLEventListenerState() pull} to preserve the {@link GLEventListenerState}. + * {@link #preserveGLEventListenerState() preserve} the {@link GLEventListenerState}. * <p> * This is a one-shot flag, i.e. after preserving the {@link GLEventListenerState}, * the flag is cleared. * </p> * <p> - * A preserved {@link GLEventListenerState} will be {@link #pushGLEventListenerState() pushed} - * if realized again. + * A preserved {@link GLEventListenerState} will be + * {@link #restoreGLEventListenerState() restored} again. * </p> * @return <code>true</code> if supported and successful, <code>false</code> otherwise. * @see #isGLStatePreservationSupported() |