glInstrumentsBufferSgix function opengl_glext

void glInstrumentsBufferSgix(
  1. int size,
  2. Pointer<Int32> buffer
)
GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer)

Implementation

void glInstrumentsBufferSgix(int size, Pointer<Int32> buffer) {
  final glInstrumentsBufferSgixAsFunction = _glInstrumentsBufferSgix
      .cast<NativeFunction<Void Function(Uint32 size, Pointer<Int32> buffer)>>()
      .asFunction<void Function(int size, Pointer<Int32> buffer)>();
  return glInstrumentsBufferSgixAsFunction(size, buffer);
}