jsr231 and VSync

Is there a way in jogl-jsr231 to control VSync.

in an old thread, I’ve found references to WGL and GLX with special methods to turn vsync on/off, but at least for GLX, the method is gone with jsr231 (glXSwapIntervalSGI(int) )

Lilian

JSR-231 now has a unified way of controlling v-sync:

GL.setSwapInterval(int);

.rex