glCreateQueries function opengl_glext
GLAPI void APIENTRY glCreateQueries (GLenum target, GLsizei n, GLuint *ids)
Implementation
void glCreateQueries(int target, int n, Pointer<Uint32> ids) {
final glCreateQueriesAsFunction = _glCreateQueries
.cast<
NativeFunction<
Void Function(Uint32 target, Uint32 n, Pointer<Uint32> ids)
>
>()
.asFunction<void Function(int target, int n, Pointer<Uint32> ids)>();
return glCreateQueriesAsFunction(target, n, ids);
}