glCreateCommandListsNv function opengl_glext

void glCreateCommandListsNv(
  1. int n,
  2. Pointer<Uint32> lists
)
GLAPI void APIENTRY glCreateCommandListsNV (GLsizei n, GLuint *lists)

Implementation

void glCreateCommandListsNv(int n, Pointer<Uint32> lists) {
  final glCreateCommandListsNvAsFunction = _glCreateCommandListsNv
      .cast<NativeFunction<Void Function(Uint32 n, Pointer<Uint32> lists)>>()
      .asFunction<void Function(int n, Pointer<Uint32> lists)>();
  return glCreateCommandListsNvAsFunction(n, lists);
}