All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.opengl.GLXSGISwapControl Maven / Gradle / Ivy

Go to download

The most widely adopted 2D and 3D graphics API in the industry, bringing thousands of applications to a wide variety of computer platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.opengl;

import org.lwjgl.system.*;

import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;

/**
 * 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.

*/ public class GLXSGISwapControl { protected GLXSGISwapControl() { throw new UnsupportedOperationException(); } static boolean isAvailable(GLXCapabilities caps) { return checkFunctions( caps.glXSwapIntervalSGI ); } // --- [ glXSwapIntervalSGI ] --- /** * 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 when {@link GLX#glXSwapBuffers SwapBuffers} * is first called subsequent to the {@code glXSwapIntervalSGI} 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.

* * @param interval the swap interval */ @NativeType("GLint") public static int glXSwapIntervalSGI(int interval) { long __functionAddress = GL.getCapabilitiesGLXClient().glXSwapIntervalSGI; if (CHECKS) { check(__functionAddress); } return callI(__functionAddress, interval); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy