On 03/24/2014 10:35 AM, Sven Gothel wrote:
> On 03/22/2014 08:53 PM, Teapot [via jogamp] wrote:
>> How do I set up the animator to render once and render only when asked so I
>> can do other things inbetween?
>
> Rendering on demand w/ an animator
> can be achieved by simply pause/resume the animator,
> i.e. start w/ paused, then resume/pause.
Note: A simple display() call might be even easier
w/ an attached but paused animator or no animator at all :)
>
> Note that the update/refresh rendering as caused by the underlying
> windowing toolkit will always happen if an attached animator is not animating
> or not existing.
>
> ~Sven