GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset)
Implementation
void glNamedBufferStorageMemExt(
int buffer,
Pointer<Uint32> size,
int memory,
int offset,
) {
final glNamedBufferStorageMemExtAsFunction = _glNamedBufferStorageMemExt
.cast<
NativeFunction<
Void Function(
Uint32 buffer,
Pointer<Uint32> size,
Uint32 memory,
Uint64 offset,
)
>
>()
.asFunction<
void Function(int buffer, Pointer<Uint32> size, int memory, int offset)
>();
return glNamedBufferStorageMemExtAsFunction(buffer, size, memory, offset);
}