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

    /**
     * The {@link java.nio.Buffer} instance returned by this method is guaranteed
     * to be an instance of {@link java.nio.ByteBuffer}.
     */
    public static native java.nio.Buffer glMapBufferRange(
        int target,
        int offset,
        int length,
        int access
    );