glCreateVertexArrays function opengl_glext

void glCreateVertexArrays(
  1. int n,
  2. Pointer<Uint32> arrays
)
GLAPI void APIENTRY glCreateVertexArrays (GLsizei n, GLuint *arrays)

Implementation

void glCreateVertexArrays(int n, Pointer<Uint32> arrays) {
  final glCreateVertexArraysAsFunction = _glCreateVertexArrays
      .cast<NativeFunction<Void Function(Uint32 n, Pointer<Uint32> arrays)>>()
      .asFunction<void Function(int n, Pointer<Uint32> arrays)>();
  return glCreateVertexArraysAsFunction(n, arrays);
}