glBeginQueryIndexed function opengl_glext
GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id)
Implementation
void glBeginQueryIndexed(int target, int index, int id) {
final glBeginQueryIndexedAsFunction = _glBeginQueryIndexed
.cast<
NativeFunction<Void Function(Uint32 target, Uint32 index, Uint32 id)>
>()
.asFunction<void Function(int target, int index, int id)>();
return glBeginQueryIndexedAsFunction(target, index, id);
}