diff options
author | Sven Gothel <[email protected]> | 2010-10-27 16:27:35 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-10-27 16:27:35 +0200 |
commit | e6131c6b2cbf8d1e5a05f0343612f5083b55aaa9 (patch) | |
tree | 69f0425b9400408041859562448e10b354778527 /src/jogl/classes/javax/media | |
parent | a42017128a0e5a24b5852151efdf496059ca6a5d (diff) |
GLAnimatorControl/Animator: Allow stop() if paused()
Diffstat (limited to 'src/jogl/classes/javax/media')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLAnimatorControl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java b/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java index 3aba634a0..01e5646f9 100644 --- a/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java +++ b/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java @@ -129,7 +129,7 @@ public interface GLAnimatorControl { * @see #stop() * @see #isAnimating() * @see #getThread() - * @throws GLException if started and animating already + * @throws GLException if started already */ void start(); @@ -144,7 +144,7 @@ public interface GLAnimatorControl { * @see #start() * @see #isAnimating() * @see #getThread() - * @throws GLException if not started or not animating + * @throws GLException if not started */ void stop(); |