android13/frameworks/native/opengl/tools/glgen/stubs/gles11/glBindVertexBuffer.java

10 lines
259 B
Java

// 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
);