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

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

The newest version!
/* MACHINE GENERATED FILE, DO NOT EDIT */

package org.lwjgl.opengl;

import org.lwjgl.*;
import java.nio.*;

public final class ARBSampleShading {

	/**
	 *  Accepted by the <cap> parameter of Enable, Disable, and IsEnabled,
	 *  and by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv,
	 *  and GetDoublev:
	 */
	public static final int GL_SAMPLE_SHADING_ARB = 0x8C36;

	/**
	 *  Accepted by the <pname> parameter of GetBooleanv, GetDoublev,
	 *  GetIntegerv, and GetFloatv:
	 */
	public static final int GL_MIN_SAMPLE_SHADING_VALUE_ARB = 0x8C37;

	private ARBSampleShading() {}

	public static void glMinSampleShadingARB(float value) {
		ContextCapabilities caps = GLContext.getCapabilities();
		long function_pointer = caps.glMinSampleShadingARB;
		BufferChecks.checkFunctionAddress(function_pointer);
		nglMinSampleShadingARB(value, function_pointer);
	}
	static native void nglMinSampleShadingARB(float value, long function_pointer);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy