HomeSort by relevance Sort by last modified time
    Searched refs:destroy_query (Results 1 - 25 of 49) sorted by null

1 2

  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_query.h 12 void (*destroy_query)(struct nv50_context *, struct nv50_query *); member in struct:nv50_query_funcs
nv50_query_hw.h 14 void (*destroy_query)(struct nv50_context *, struct nv50_hw_query *); member in struct:nv50_hw_query_funcs
nv50_query_hw_metric.c 74 if (hmq->queries[i]->funcs->destroy_query)
75 hmq->queries[i]->funcs->destroy_query(nv50, hmq->queries[i]);
145 .destroy_query = nv50_hw_metric_destroy_query,
nv50_query.c 47 q->funcs->destroy_query(nv50_context(pipe), q);
158 pipe->destroy_query = nv50_destroy_query;
nv50_query_hw.c 117 if (hq->funcs && hq->funcs->destroy_query) {
118 hq->funcs->destroy_query(nv50, hq);
346 .destroy_query = nv50_hw_destroy_query,
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_query.h 37 void (*destroy_query)(struct etna_context *ctx, struct etna_query *q); member in struct:etna_query_funcs
etnaviv_query.c 51 q->funcs->destroy_query(etna_context(pctx), q);
115 pctx->destroy_query = etna_destroy_query;
etnaviv_query_sw.c 94 .destroy_query = etna_sw_destroy_query,
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_query.h 12 void (*destroy_query)(struct nvc0_context *, struct nvc0_query *); member in struct:nvc0_query_funcs
nvc0_query_hw.h 14 void (*destroy_query)(struct nvc0_context *, struct nvc0_hw_query *); member in struct:nvc0_hw_query_funcs
nvc0_query_sw.c 112 .destroy_query = nvc0_sw_destroy_query,
nvc0_query.c 51 q->funcs->destroy_query(nvc0_context(pipe), q);
275 pipe->destroy_query = nvc0_destroy_query;
nvc0_query_hw.c 120 if (hq->funcs && hq->funcs->destroy_query) {
121 hq->funcs->destroy_query(nvc0, hq);
479 .destroy_query = nvc0_hw_destroy_query,
nvc0_query_hw_metric.c 468 if (hmq->queries[i]->funcs->destroy_query)
469 hmq->queries[i]->funcs->destroy_query(nvc0, hmq->queries[i]);
706 .destroy_query = nvc0_hw_metric_destroy_query,
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_query.h 38 void (*destroy_query)(struct fd_context *ctx, member in struct:fd_query_funcs
freedreno_query.c 59 q->funcs->destroy_query(fd_context(pctx), q);
133 pctx->destroy_query = fd_destroy_query;
freedreno_query_sw.c 132 .destroy_query = fd_sw_destroy_query,
  /external/mesa3d/src/gallium/drivers/i915/
i915_query.c 89 i915->base.destroy_query = i915_destroy_query;
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_query.c 85 pctx->destroy_query = vc4_destroy_query;
  /external/mesa3d/src/gallium/state_trackers/clover/core/
timestamp.cpp 44 q().pipe->destroy_query(q().pipe, _query);
  /external/mesa3d/src/gallium/tests/graw/
occlusion-query.c 200 info.ctx->destroy_query(info.ctx, q1);
201 info.ctx->destroy_query(info.ctx, q2);
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_driver_query.c 100 pipe->destroy_query(bq->pipe, bq->query[bq->head]);
191 bq->pipe->destroy_query(bq->pipe, bq->query[idx]);
266 pipe->destroy_query(pipe, info->query[info->head]);
351 pipe->destroy_query(pipe, info->query[i]);
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_query.c 177 vctx->base.destroy_query = virgl_destroy_query;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.c 68 pipe->destroy_query(pipe, stq->pq);
73 pipe->destroy_query(pipe, stq->pq_begin);
st_cb_perfmon.c 137 pipe->destroy_query(pipe, query);
144 pipe->destroy_query(pipe, stm->batch_query);

Completed in 889 milliseconds

1 2