Package org.lwjgl.opengl
Class GLXSGISwapControl
- java.lang.Object
-
- org.lwjgl.opengl.GLXSGISwapControl
-
public class GLXSGISwapControl extends java.lang.Object
Native bindings to the GLX_SGI_swap_control extension.This extension allows an application to specify a minimum periodicity of color buffer swaps, measured in video frame periods.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static int
glXSwapIntervalSGI(int interval)
Specifies the minimum number of video frame periods per buffer swap.
-
-
-
Method Detail
-
glXSwapIntervalSGI
public static int glXSwapIntervalSGI(int interval)
Specifies the minimum number of video frame periods per buffer swap. (e.g. a value of two means that the color buffers will be swapped at most every other video frame.) A return value of zero indicates success; otherwise an error occurred. The interval takes effect whenSwapBuffers
is first called subsequent to theglXSwapIntervalSGI
call.A video frame period is the time required by the monitor to display a full frame of video data. In the case of an interlaced monitor, this is typically the time required to display both the even and odd fields of a frame of video data.
- Parameters:
interval
- the swap interval
-
-