lwjgl/src/generated/org/lwjgl/opengl/NVFramebufferMultisampleCov...

28 lines
1.2 KiB
Java

/* MACHINE GENERATED FILE, DO NOT EDIT */
package org.lwjgl.opengl;
import org.lwjgl.LWJGLException;
import org.lwjgl.BufferChecks;
import java.nio.*;
public final class NVFramebufferMultisampleCoverage {
/**
*Accepted by the <pname> parameter of GetRenderbufferParameterivEXT:
*/
public static final int GL_RENDERBUFFER_COVERAGE_SAMPLES_NV = 0x8cab;
public static final int GL_RENDERBUFFER_COLOR_SAMPLES_NV = 0x8e10;
private NVFramebufferMultisampleCoverage() {
}
public static void glRenderbufferStorageMultisampleCoverageNV(int target, int coverageSamples, int colorSamples, int internalformat, int width, int height) {
ContextCapabilities caps = GLContext.getCapabilities();
long function_pointer = caps.NV_framebuffer_multisample_coverage_glRenderbufferStorageMultisampleCoverageNV_pointer;
BufferChecks.checkFunctionAddress(function_pointer);
nglRenderbufferStorageMultisampleCoverageNV(target, coverageSamples, colorSamples, internalformat, width, height, function_pointer);
}
private static native void nglRenderbufferStorageMultisampleCoverageNV(int target, int coverageSamples, int colorSamples, int internalformat, int width, int height, long function_pointer);
}