• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1     // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
2 
3     /**
4      * The {@link java.nio.Buffer} instance returned by this method is guaranteed
5      * to be an instance of {@link java.nio.ByteBuffer}.
6      */
glMapBufferRange( int target, int offset, int length, int access )7     public static native java.nio.Buffer glMapBufferRange(
8         int target,
9         int offset,
10         int length,
11         int access
12     );
13 
14