Home | History | Annotate | Download | only in main

Lines Matching refs:ids

238  * Create $n query objects and store them in *ids. Make them of type $target
242 create_queries(struct gl_context *ctx, GLenum target, GLsizei n, GLuint *ids,
270 ids[i] = first + i;
277 _mesa_GenQueries(GLsizei n, GLuint *ids)
280 create_queries(ctx, 0, n, ids, false);
284 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids)
303 create_queries(ctx, target, n, ids, true);
308 _mesa_DeleteQueries(GLsizei n, const GLuint *ids)
323 if (ids[i] > 0) {
324 struct gl_query_object *q = _mesa_lookup_query_object(ctx, ids[i]);
336 _mesa_HashRemove(ctx->Query.QueryObjects, ids[i]);