Lines Matching defs:ids
251 * Create $n query objects and store them in *ids. Make them of type $target
255 create_queries(struct gl_context *ctx, GLenum target, GLsizei n, GLuint *ids,
283 ids[i] = first + i;
290 _mesa_GenQueries(GLsizei n, GLuint *ids)
293 create_queries(ctx, 0, n, ids, false);
297 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids)
318 create_queries(ctx, target, n, ids, true);
323 _mesa_DeleteQueries(GLsizei n, const GLuint *ids)
338 if (ids[i] > 0) {
339 struct gl_query_object *q = _mesa_lookup_query_object(ctx, ids[i]);
351 _mesa_HashRemoveLocked(ctx->Query.QueryObjects, ids[i]);