Files
Android11/frameworks/native/opengl/tools/glgen/stubs/gles11/glBindVertexBuffer.java
2023-10-13 14:01:41 +00:00

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