Re: Adaptive Sync
Posted by
Sven Gothel on
Sep 20, 2014; 9:02am
URL: https://forum.jogamp.org/Adaptive-Sync-tp4033175p4033176.html
On 09/20/2014 10:59 AM, adi [via jogamp] wrote:
> Hello
>
> Does something know with what function i can set set adaptice sync
> in jogl?
> In the Internet i have found sometinh how that *wglSwapIntervalEXT*,
> but there is nothing in jogl.
> Thanks
xxxSwapInterval*(..) has been aliased via
GL gl;
gl.setSwapInterval(int swapInterval);
see GearsES2 for example.
However, 'adaptive sync' IMHO is something different,
i.e. more like an 'adaptive framerate/rendering'
where one likes to guarantee a certain framerate
and hence drops elements from rendering or reducing details
according to continuously measures frame duration ..
~Sven