lwjgl2-arm64/src/java/org/lwjgl/opengl/EXTCompiledVertexArray.java

29 lines
1,009 B
Java
Raw Normal View History

/* MACHINE GENERATED FILE, DO NOT EDIT */
2004-02-08 21:41:00 +01:00
package org.lwjgl.opengl;
2002-08-30 23:30:40 +02:00
import org.lwjgl.BufferChecks;
2004-02-19 00:54:46 +01:00
public final class EXTCompiledVertexArray {
public static final int GL_ARRAY_ELEMENT_LOCK_COUNT_EXT = 0x81a9;
public static final int GL_ARRAY_ELEMENT_LOCK_FIRST_EXT = 0x81a8;
private EXTCompiledVertexArray() {
}
public static void glUnlockArraysEXT() {
long function_pointer = GLContext.getCapabilities().EXT_compiled_vertex_array_glUnlockArraysEXT_pointer;
BufferChecks.checkFunctionAddress(function_pointer);
nglUnlockArraysEXT(function_pointer);
}
private static native void nglUnlockArraysEXT(long function_pointer);
public static void glLockArraysEXT(int first, int count) {
long function_pointer = GLContext.getCapabilities().EXT_compiled_vertex_array_glLockArraysEXT_pointer;
BufferChecks.checkFunctionAddress(function_pointer);
nglLockArraysEXT(first, count, function_pointer);
}
private static native void nglLockArraysEXT(int first, int count, long function_pointer);
2003-08-17 18:38:57 +02:00
}