Home
last modified time | relevance | path

Searched refs:pipe_query (Results 1 – 25 of 95) sorted by relevance

1234

/third_party/mesa3d/src/gallium/drivers/i915/
Di915_query.c41 static struct pipe_query *
46 return (struct pipe_query *)query; in i915_create_query()
50 i915_destroy_query(struct pipe_context *ctx, struct pipe_query *query) in i915_destroy_query()
56 i915_begin_query(struct pipe_context *ctx, struct pipe_query *query) in i915_begin_query()
62 i915_end_query(struct pipe_context *ctx, struct pipe_query *query) in i915_end_query()
68 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, in i915_get_query_result()
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_query.c42 static struct pipe_query *
48 return (struct pipe_query *)query; in lima_create_query()
52 lima_destroy_query(struct pipe_context *ctx, struct pipe_query *query) in lima_destroy_query()
58 lima_begin_query(struct pipe_context *ctx, struct pipe_query *query) in lima_begin_query()
64 lima_end_query(struct pipe_context *ctx, struct pipe_query *query) in lima_end_query()
70 lima_get_query_result(struct pipe_context *ctx, struct pipe_query *query, in lima_get_query_result()
/third_party/mesa3d/src/gallium/include/pipe/
Dp_context.h59 struct pipe_query;
196 struct pipe_query *query,
214 struct pipe_query *(*create_query)( struct pipe_context *pipe,
233 struct pipe_query *(*create_batch_query)( struct pipe_context *pipe,
238 struct pipe_query *q);
240 bool (*begin_query)(struct pipe_context *pipe, struct pipe_query *q);
241 bool (*end_query)(struct pipe_context *pipe, struct pipe_query *q);
249 struct pipe_query *q,
267 struct pipe_query *q,
305 struct pipe_query *(*new_intel_perf_query_obj)(struct pipe_context *pipe,
[all …]
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_query.c44 static struct pipe_query *
52 static struct pipe_query *
62 v3d_destroy_query(struct pipe_context *pctx, struct pipe_query *query) in v3d_destroy_query()
71 v3d_begin_query(struct pipe_context *pctx, struct pipe_query *query) in v3d_begin_query()
80 v3d_end_query(struct pipe_context *pctx, struct pipe_query *query) in v3d_end_query()
89 v3d_get_query_result(struct pipe_context *pctx, struct pipe_query *query, in v3d_get_query_result()
Dv3d_query.h44 struct pipe_query *v3d_create_query_pipe(struct v3d_context *v3d, unsigned query_type, unsigned ind…
45 struct pipe_query *v3d_create_batch_query_perfcnt(struct v3d_context *v3d, unsigned num_queries,
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_query.c32 static struct pipe_query *r300_create_query(struct pipe_context *pipe, in r300_create_query()
54 return (struct pipe_query*)q; in r300_create_query()
71 return (struct pipe_query*)q; in r300_create_query()
75 struct pipe_query* query) in r300_destroy_query()
91 struct pipe_query* query) in r300_begin_query()
118 struct pipe_query* query) in r300_end_query()
142 struct pipe_query* query, in r300_get_query_result()
186 struct pipe_query *query, in r300_render_condition()
/third_party/mesa3d/src/gallium/drivers/virgl/
Dvirgl_query.c77 static inline struct virgl_query *virgl_query(struct pipe_query *q) in virgl_query()
83 struct pipe_query *q, in virgl_render_condition()
95 static struct pipe_query *virgl_create_query(struct pipe_context *ctx, in virgl_create_query()
124 return (struct pipe_query *)query; in virgl_create_query()
128 struct pipe_query *q) in virgl_destroy_query()
140 struct pipe_query *q) in virgl_begin_query()
151 struct pipe_query *q) in virgl_end_query()
175 struct pipe_query *q, in virgl_get_query_result()
239 struct pipe_query *q, in virgl_get_query_result_resource()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_query.c117 static struct pipe_query *
138 return (struct pipe_query *)query; in vc4_create_batch_query()
152 return (struct pipe_query *)query; in vc4_create_batch_query()
160 static struct pipe_query *
167 vc4_destroy_query(struct pipe_context *pctx, struct pipe_query *pquery) in vc4_destroy_query()
188 vc4_begin_query(struct pipe_context *pctx, struct pipe_query *pquery) in vc4_begin_query()
230 vc4_end_query(struct pipe_context *pctx, struct pipe_query *pquery) in vc4_end_query()
250 vc4_get_query_result(struct pipe_context *pctx, struct pipe_query *pquery, in vc4_get_query_result()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_query.c37 static struct pipe_query *
48 return (struct pipe_query *)q; in etna_create_query()
52 etna_destroy_query(struct pipe_context *pctx, struct pipe_query *pq) in etna_destroy_query()
60 etna_begin_query(struct pipe_context *pctx, struct pipe_query *pq) in etna_begin_query()
70 etna_end_query(struct pipe_context *pctx, struct pipe_query *pq) in etna_end_query()
80 etna_get_query_result(struct pipe_context *pctx, struct pipe_query *pq, in etna_get_query_result()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_perfquery.c138 pipe->delete_intel_perf_query(pipe, (struct pipe_query *)o); in st_DeletePerfQuery()
155 return pipe->begin_intel_perf_query(pipe, (struct pipe_query *)o); in st_BeginPerfQuery()
163 pipe->end_intel_perf_query(pipe, (struct pipe_query *)o); in st_EndPerfQuery()
173 pipe->wait_intel_perf_query(pipe, (struct pipe_query *)o); in st_WaitPerfQuery()
184 return pipe->is_intel_perf_query_ready(pipe, (struct pipe_query *)o); in st_IsPerfQueryReady()
203 return pipe->get_intel_perf_query_data(pipe, (struct pipe_query *)o, in st_GetPerfQueryData()
211 struct pipe_query *q; in st_NewPerfQueryObject()
Dst_cb_queryobj.h40 struct pipe_query *pq;
43 struct pipe_query *pq_begin;
Dst_cb_perfmon.h31 struct pipe_query *query;
46 struct pipe_query *batch_query;
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_query.c33 static struct pipe_query *
40 return (struct pipe_query *)q; in nv50_create_query()
44 nv50_destroy_query(struct pipe_context *pipe, struct pipe_query *pq) in nv50_destroy_query()
51 nv50_begin_query(struct pipe_context *pipe, struct pipe_query *pq) in nv50_begin_query()
58 nv50_end_query(struct pipe_context *pipe, struct pipe_query *pq) in nv50_end_query()
66 nv50_get_query_result(struct pipe_context *pipe, struct pipe_query *pq, in nv50_get_query_result()
75 struct pipe_query *pq, in nv50_render_condition()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_performance_query.c85 static struct pipe_query *
102 return (struct pipe_query *)&q->base; in iris_new_perf_query_obj()
106 iris_begin_perf_query(struct pipe_context *pipe, struct pipe_query *q) in iris_begin_perf_query()
117 iris_end_perf_query(struct pipe_context *pipe, struct pipe_query *q) in iris_end_perf_query()
129 iris_delete_perf_query(struct pipe_context *pipe, struct pipe_query *q) in iris_delete_perf_query()
188 iris_wait_perf_query(struct pipe_context *pipe, struct pipe_query *q) in iris_wait_perf_query()
200 iris_is_perf_query_ready(struct pipe_context *pipe, struct pipe_query *q) in iris_is_perf_query_ready()
218 struct pipe_query *q, in iris_get_perf_query_data()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_query.c34 static struct pipe_query *
44 return (struct pipe_query *)q; in nvc0_create_query()
48 nvc0_destroy_query(struct pipe_context *pipe, struct pipe_query *pq) in nvc0_destroy_query()
55 nvc0_begin_query(struct pipe_context *pipe, struct pipe_query *pq) in nvc0_begin_query()
62 nvc0_end_query(struct pipe_context *pipe, struct pipe_query *pq) in nvc0_end_query()
70 nvc0_get_query_result(struct pipe_context *pipe, struct pipe_query *pq, in nvc0_get_query_result()
79 struct pipe_query *pq, in nvc0_get_query_result_resource()
97 struct pipe_query *pq, in nvc0_render_condition()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_query.c102 nv30_query(struct pipe_query *pipe) in nv30_query()
107 static struct pipe_query *
140 return (struct pipe_query *)q; in nv30_query_create()
144 nv30_query_destroy(struct pipe_context *pipe, struct pipe_query *pq) in nv30_query_destroy()
150 nv30_query_begin(struct pipe_context *pipe, struct pipe_query *pq) in nv30_query_begin()
180 nv30_query_end(struct pipe_context *pipe, struct pipe_query *pq) in nv30_query_end()
202 nv30_query_result(struct pipe_context *pipe, struct pipe_query *pq, in nv30_query_result()
242 struct pipe_query *pq, in nv40_query_render_condition()
/third_party/mesa3d/src/gallium/drivers/swr/
Dswr_query.cpp35 swr_query(struct pipe_query *p) in swr_query()
40 static struct pipe_query *
56 return (struct pipe_query *)pq; in swr_create_query()
61 swr_destroy_query(struct pipe_context *pipe, struct pipe_query *q) in swr_destroy_query()
77 struct pipe_query *q, in swr_get_query_result()
162 swr_begin_query(struct pipe_context *pipe, struct pipe_query *q) in swr_begin_query()
196 swr_end_query(struct pipe_context *pipe, struct pipe_query *q) in swr_end_query()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_helpers.h88 struct pipe_query *
92 util_end_pipestat_query(struct pipe_context *ctx, struct pipe_query *q,
95 struct pipe_query *
98 util_end_time_query(struct pipe_context *ctx, struct pipe_query *q, FILE *f,
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_query.c40 static struct pipe_query *
51 return (struct pipe_query *)q; in fd_create_query()
55 fd_destroy_query(struct pipe_context *pctx, struct pipe_query *pq) in_dt in fd_destroy_query()
62 fd_begin_query(struct pipe_context *pctx, struct pipe_query *pq) in_dt in fd_begin_query()
72 fd_end_query(struct pipe_context *pctx, struct pipe_query *pq) in_dt in fd_end_query()
88 fd_get_query_result(struct pipe_context *pctx, struct pipe_query *pq, bool wait, in fd_get_query_result()
99 fd_render_condition(struct pipe_context *pctx, struct pipe_query *pq, in fd_render_condition()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_query.c50 static struct softpipe_query *softpipe_query( struct pipe_query *p ) in softpipe_query()
55 static struct pipe_query *
78 return (struct pipe_query *)sq; in softpipe_create_query()
83 softpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q) in softpipe_destroy_query()
90 softpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q) in softpipe_begin_query()
149 softpipe_end_query(struct pipe_context *pipe, struct pipe_query *q) in softpipe_end_query()
234 struct pipe_query *q, in softpipe_get_query_result()
286 is_result_nonzero(struct pipe_query *q, in is_result_nonzero()
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
Ddd_pipe.h132 struct pipe_query *query;
202 struct pipe_query *query;
356 dd_query(struct pipe_query *query) in dd_query()
361 static inline struct pipe_query *
362 dd_query_unwrap(struct pipe_query *query) in dd_query_unwrap()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_query.cpp103 static struct pipe_query *
151 return (struct pipe_query *)query; in d3d12_create_query()
156 struct pipe_query *q) in d3d12_destroy_query()
161 d3d12_destroy_query(pctx, (struct pipe_query *)query->subquery); in d3d12_destroy_query()
331 struct pipe_query *q) in d3d12_begin_query()
384 struct pipe_query *q) in d3d12_end_query()
401 struct pipe_query *q, in d3d12_get_query_result()
440 … struct pipe_query *subquery = d3d12_create_query(&ctx->base, PIPE_QUERY_PIPELINE_STATISTICS, 0); in d3d12_validate_queries()
462 struct pipe_query *pquery, in d3d12_render_condition()
/third_party/mesa3d/src/gallium/frontends/clover/core/
Dtimestamp.hpp28 struct pipe_query;
53 pipe_query *_query;
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
DQuery.cpp171 struct pipe_query *state = CastPipeQuery(hQuery); in QueryBegin()
201 struct pipe_query *state = pQuery->handle; in QueryEnd()
234 struct pipe_query *state = pQuery->handle; in QueryGetData()
348 struct pipe_query *state = CastPipeQuery(hQuery); in SetPredication()
383 struct pipe_query *query = pQuery->handle; in CheckPredicate()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_query.c46 static struct llvmpipe_query *llvmpipe_query( struct pipe_query *p ) in llvmpipe_query()
51 static struct pipe_query *
67 return (struct pipe_query *) pq; in llvmpipe_create_query()
72 llvmpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q) in llvmpipe_destroy_query()
95 struct pipe_query *q, in llvmpipe_get_query_result()
206 struct pipe_query *q, in llvmpipe_get_query_result_resource()
379 llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q) in llvmpipe_begin_query()
442 llvmpipe_end_query(struct pipe_context *pipe, struct pipe_query *q) in llvmpipe_end_query()

1234