glIsQueryArb function opengl_glext
GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id)
Implementation
int glIsQueryArb(int id) {
final glIsQueryArbAsFunction = _glIsQueryArb
.cast<NativeFunction<Int32 Function(Uint32 id)>>()
.asFunction<int Function(int id)>();
return glIsQueryArbAsFunction(id);
}