glDetachObjectArb function opengl_glext

void glDetachObjectArb(
  1. Pointer<NativeType> containerObj,
  2. Pointer<NativeType> attachedObj
)
GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj)

Implementation

void glDetachObjectArb(
  Pointer<NativeType> containerObj,
  Pointer<NativeType> attachedObj,
) {
  final glDetachObjectArbAsFunction = _glDetachObjectArb
      .cast<
        NativeFunction<
          Void Function(
            Pointer<NativeType> containerObj,
            Pointer<NativeType> attachedObj,
          )
        >
      >()
      .asFunction<
        void Function(
          Pointer<NativeType> containerObj,
          Pointer<NativeType> attachedObj,
        )
      >();
  return glDetachObjectArbAsFunction(containerObj, attachedObj);
}