glIsQuery function opengl_glext
GLAPI GLboolean APIENTRY glIsQuery (GLuint id)
Implementation
int glIsQuery(int id) {
final glIsQueryAsFunction = _glIsQuery
.cast<NativeFunction<Int32 Function(Uint32 id)>>()
.asFunction<int Function(int id)>();
return glIsQueryAsFunction(id);
}