glCreateQueries function opengl_glext

void glCreateQueries(
  1. int target,
  2. int n,
  3. Pointer<Uint32> ids
)
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);
}