glIsQueryArb function opengl_glext

int glIsQueryArb(
  1. int id
)
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);
}