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