glDeleteObjectArb function opengl_glext
GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj)
Implementation
void glDeleteObjectArb(Pointer<NativeType> obj) {
  final glDeleteObjectArbAsFunction = _glDeleteObjectArb
      .cast<NativeFunction<Void Function(Pointer<NativeType> obj)>>()
      .asFunction<void Function(Pointer<NativeType> obj)>();
  return glDeleteObjectArbAsFunction(obj);
}