glEndQueryArb function opengl_glext
GLAPI void APIENTRY glEndQueryARB (GLenum target)
Implementation
void glEndQueryArb(int target) {
  final glEndQueryArbAsFunction = _glEndQueryArb
      .cast<NativeFunction<Void Function(Uint32 target)>>()
      .asFunction<void Function(int target)>();
  return glEndQueryArbAsFunction(target);
}