glEndQueryArb function

void glEndQueryArb(
  1. int target
)
define glEndQueryARB GLEW_GET_FUN(__glewEndQueryARB)
GLEW_FUN_EXPORT PFNGLENDQUERYARBPROC __glewEndQueryARB
typedef void (GLAPIENTRY * PFNGLENDQUERYARBPROC) (GLenum target)

Implementation

void glEndQueryArb(int target) {
  final glEndQueryArbAsFunction = _glEndQueryArb
      .cast<NativeFunction<Void Function(Uint32 target)>>()
      .asFunction<void Function(int target)>();
  return glEndQueryArbAsFunction(target);
}