glCreateMemoryObjectsExt function opengl_glext

void glCreateMemoryObjectsExt(
  1. int n,
  2. Pointer<Uint32> memoryObjects
)
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);
}