1c8b8e8b8e
Updating the generator to handle GLvoid*/java.nio.Buffer return values probably wouldn't be too hard, but this is the only function that needs it currently. Bug: 8566953 Change-Id: I359a951136ab479ab576ce2e5a2881b937b7e8c9
10 lines
264 B
Java
10 lines
264 B
Java
// 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
|
|
);
|
|
|