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