glBeginQueryIndexed function opengl_glext

void glBeginQueryIndexed(
  1. int target,
  2. int index,
  3. int id
)
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);
}