glIsBufferArb function opengl_glext

int glIsBufferArb(
  1. int buffer
)
GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer)

Implementation

int glIsBufferArb(int buffer) {
  final glIsBufferArbAsFunction = _glIsBufferArb
      .cast<NativeFunction<Int32 Function(Uint32 buffer)>>()
      .asFunction<int Function(int buffer)>();
  return glIsBufferArbAsFunction(buffer);
}