diff options
author | Sven Gothel <[email protected]> | 2012-09-29 03:03:20 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-09-29 03:03:20 +0200 |
commit | 18ae6451a5531f46f56389bd7071db1d988e80d7 (patch) | |
tree | c56e33eb8cfb3d73b7cabdaf64c411845cd242dc | |
parent | 4f8432b0a5ac2a030056884c8f6c877435aaf5c8 (diff) |
GLContext.makeCurrent(): Clean API doc
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLContext.java | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLContext.java b/src/jogl/classes/javax/media/opengl/GLContext.java index 1cee0209c..63470ccd3 100644 --- a/src/jogl/classes/javax/media/opengl/GLContext.java +++ b/src/jogl/classes/javax/media/opengl/GLContext.java @@ -274,19 +274,23 @@ public abstract class GLContext { * Makes this GLContext current on the calling thread. * <p> * There are two return values that indicate success and one that - * indicates failure. A return value of CONTEXT_CURRENT_NEW - * indicates that that context has been made current, and that - * this is the first time this context has been made current, or - * that the state of the underlying context or drawable may have - * changed since the last time this context was made current. In - * this case, the application may wish to initialize the state. A - * return value of CONTEXT_CURRENT indicates that the context has + * indicates failure. + * </p> + * <p> + * A return value of {@link #CONTEXT_CURRENT_NEW} + * indicates that that context has been made current for the 1st time, + * or that the state of the underlying context or drawable has + * changed since the last time this context was current. + * In this case, the application may wish to initialize the render state. + * </p> + * <p> + * A return value of {@link #CONTEXT_CURRENT} indicates that the context has * been made currrent, with its previous state restored. * </p> * <p> * If the context could not be made current (for example, because * the underlying drawable has not ben realized on the display) , - * a value of CONTEXT_NOT_CURRENT is returned. + * a value of {@link #CONTEXT_NOT_CURRENT} is returned. * </p> * <p> * This method is blocking, i.e. waits until another thread has @@ -297,11 +301,11 @@ public abstract class GLContext { * and unlocked at {@link #release()} * </p> * - * @return CONTEXT_CURRENT if the context was successfully made current - * @return CONTEXT_CURRENT_NEW if the context was successfully made - * current, but need to be initialized. - * - * @return CONTEXT_NOT_CURRENT if the context could not be made current. + * @return <ul> + * <li>{@link #CONTEXT_CURRENT_NEW} if the context was successfully made current the 1st time,</li> + * <li>{@link #CONTEXT_CURRENT} if the context was successfully made current,</li> + * <li>{@link #CONTEXT_NOT_CURRENT} if the context could not be made current.</li> + * </ul> * * @throws GLException if synchronization is disabled and the * context is current on another thread, or because the context |