glFreeObjectBufferAti function opengl_glext

void glFreeObjectBufferAti(
  1. int buffer
)
GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer)

Implementation

void glFreeObjectBufferAti(int buffer) {
  final glFreeObjectBufferAtiAsFunction = _glFreeObjectBufferAti
      .cast<NativeFunction<Void Function(Uint32 buffer)>>()
      .asFunction<void Function(int buffer)>();
  return glFreeObjectBufferAtiAsFunction(buffer);
}