replicant-frameworks_native/opengl/tools/glgen/stubs/gles11/glBindVertexBuffer.java

10 lines
259 B
Java
Raw Normal View History

// C function void glBindVertexBuffer ( GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride )
public static native void glBindVertexBuffer(
int bindingindex,
int buffer,
long offset,
int stride
);