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

22 lines
552 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.LWJGLException;
import org.lwjgl.BufferChecks;
import java.nio.*;
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() {
}
static native void initNativeStubs() throws LWJGLException;
public static native void glUnlockArraysEXT();
public static native void glLockArraysEXT(int first, int count);
2003-08-17 18:38:57 +02:00
}