glIsBufferArb function opengl_glext
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);
}