glCompileCommandListNv function opengl_glext

void glCompileCommandListNv(
  1. int list
)
GLAPI void APIENTRY glCompileCommandListNV (GLuint list)

Implementation

void glCompileCommandListNv(int list) {
  final glCompileCommandListNvAsFunction = _glCompileCommandListNv
      .cast<NativeFunction<Void Function(Uint32 list)>>()
      .asFunction<void Function(int list)>();
  return glCompileCommandListNvAsFunction(list);
}