glBeginQueryArb function opengl_glext
GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id)
Implementation
void glBeginQueryArb(int target, int id) {
final glBeginQueryArbAsFunction = _glBeginQueryArb
.cast<NativeFunction<Void Function(Uint32 target, Uint32 id)>>()
.asFunction<void Function(int target, int id)>();
return glBeginQueryArbAsFunction(target, id);
}