summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/gles11/glBindVertexBuffer.java
blob: bab2e891ec41f3125c89047edb217d88126f3622 (plain)
1
2
3
4
5
6
7
8
9
    // 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
    );