2005-02-15 12:05:36 +01:00
|
|
|
/* MACHINE GENERATED FILE, DO NOT EDIT */
|
2004-01-30 21:30:19 +01:00
|
|
|
|
2005-02-15 12:05:36 +01:00
|
|
|
package org.lwjgl.opengl;
|
2004-01-30 21:30:19 +01:00
|
|
|
|
2004-07-04 15:14:06 +02:00
|
|
|
import org.lwjgl.LWJGLException;
|
2004-07-29 13:20:43 +02:00
|
|
|
import org.lwjgl.BufferChecks;
|
2005-02-15 12:05:36 +01:00
|
|
|
import java.nio.*;
|
2004-07-04 15:14:06 +02:00
|
|
|
|
2004-02-19 00:54:46 +01:00
|
|
|
public final class ATIVertexAttribArrayObject {
|
2004-11-25 23:20:45 +01:00
|
|
|
|
2004-07-31 11:34:09 +02:00
|
|
|
private ATIVertexAttribArrayObject() {
|
|
|
|
|
}
|
2004-01-30 21:30:19 +01:00
|
|
|
|
2004-07-04 15:14:06 +02:00
|
|
|
static native void initNativeStubs() throws LWJGLException;
|
2004-07-03 23:12:33 +02:00
|
|
|
|
2004-01-30 21:30:19 +01:00
|
|
|
public static void glGetVertexAttribArrayObjectATI(int index, int pname, IntBuffer params) {
|
2005-02-15 12:05:36 +01:00
|
|
|
BufferChecks.checkBuffer(params, 4);
|
2004-01-30 21:30:19 +01:00
|
|
|
nglGetVertexAttribArrayObjectivATI(index, pname, params, params.position());
|
|
|
|
|
}
|
2005-02-15 12:05:36 +01:00
|
|
|
private static native void nglGetVertexAttribArrayObjectivATI(int index, int pname, IntBuffer params, int params_position);
|
2004-01-30 21:30:19 +01:00
|
|
|
|
2005-02-15 12:05:36 +01:00
|
|
|
public static void glGetVertexAttribArrayObjectATI(int index, int pname, FloatBuffer params) {
|
|
|
|
|
BufferChecks.checkBuffer(params, 4);
|
|
|
|
|
nglGetVertexAttribArrayObjectfvATI(index, pname, params, params.position());
|
|
|
|
|
}
|
|
|
|
|
private static native void nglGetVertexAttribArrayObjectfvATI(int index, int pname, FloatBuffer params, int params_position);
|
2004-01-30 21:30:19 +01:00
|
|
|
|
2005-02-15 12:05:36 +01:00
|
|
|
public static native void glVertexAttribArrayObjectATI(int index, int size, int type, boolean normalized, int stride, int buffer, int offset);
|
2004-07-03 23:12:33 +02:00
|
|
|
}
|