glCreateMemoryObjectsExt function opengl_glext
GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects)
Implementation
void glCreateMemoryObjectsExt(int n, Pointer<Uint32> memoryObjects) {
final glCreateMemoryObjectsExtAsFunction = _glCreateMemoryObjectsExt
.cast<
NativeFunction<Void Function(Uint32 n, Pointer<Uint32> memoryObjects)>
>()
.asFunction<void Function(int n, Pointer<Uint32> memoryObjects)>();
return glCreateMemoryObjectsExtAsFunction(n, memoryObjects);
}