summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/gles11/glMapBufferRange.java
blob: 482ea9981cbf1929f78c2848564f87d51548df5f (plain)
1
2
3
4
5
6
7
8
9
    // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )

    public static native java.nio.Buffer glMapBufferRange(
        int target,
        int offset,
        int length,
        int access
    );