29package com.jogamp.opengl;
A registered UncaughtExceptionHandler instance is invoked when an animator abruptly stops due to an u...
void uncaughtException(final GLAnimatorControl animator, final GLAutoDrawable drawable, final Throwable cause)
Method invoked when the given GLAnimatorControl is stopped due to the given uncaught exception happen...
An animator control interface, which implementation may drive a com.jogamp.opengl....
boolean start()
Starts this animator, if not running.
boolean isPaused()
Indicates whether this animator is started and either manually paused or paused automatically due to ...
boolean resume()
Resumes animation if paused.
boolean isAnimating()
Indicates whether this animator is started and is not paused.
UncaughtExceptionHandler getUncaughtExceptionHandler()
Returns the UncaughtExceptionHandler invoked when this animator abruptly stops due to an uncaught exc...
boolean stop()
Stops this animator.
boolean pause()
Pauses this animator.
void setUncaughtExceptionHandler(final UncaughtExceptionHandler handler)
Set the handler invoked when this animator abruptly stops due to an uncaught exception from one of it...
boolean isStarted()
Indicates whether this animator has been started.
void add(GLAutoDrawable drawable)
Adds a drawable to this animator's list of rendering drawables.
A higher-level abstraction than GLDrawable which supplies an event based mechanism (GLEventListener) ...