void
glBufferStorageMemExt(
- int target,
- int size,
- int memory,
- int offset,
)
GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset)
Implementation
void glBufferStorageMemExt(int target, int size, int memory, int offset) {
final glBufferStorageMemExtAsFunction = _glBufferStorageMemExt
.cast<
NativeFunction<
Void Function(
Uint32 target,
IntPtr size,
Uint32 memory,
Uint64 offset,
)
>
>()
.asFunction<
void Function(int target, int size, int memory, int offset)
>();
return glBufferStorageMemExtAsFunction(target, size, memory, offset);
}