mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
radeonsi: add a HUD query for draw calls with primitive restart
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
55445ff189
commit
fa15436e63
4 changed files with 11 additions and 0 deletions
|
|
@ -580,6 +580,7 @@ struct r600_common_context {
|
|||
unsigned num_cs_dw_queries_suspend;
|
||||
/* Misc stats. */
|
||||
unsigned num_draw_calls;
|
||||
unsigned num_prim_restart_calls;
|
||||
unsigned num_spill_draw_calls;
|
||||
unsigned num_compute_calls;
|
||||
unsigned num_spill_compute_calls;
|
||||
|
|
|
|||
|
|
@ -97,6 +97,9 @@ static bool r600_query_sw_begin(struct r600_common_context *rctx,
|
|||
case R600_QUERY_DRAW_CALLS:
|
||||
query->begin_result = rctx->num_draw_calls;
|
||||
break;
|
||||
case R600_QUERY_PRIM_RESTART_CALLS:
|
||||
query->begin_result = rctx->num_prim_restart_calls;
|
||||
break;
|
||||
case R600_QUERY_SPILL_DRAW_CALLS:
|
||||
query->begin_result = rctx->num_spill_draw_calls;
|
||||
break;
|
||||
|
|
@ -221,6 +224,9 @@ static bool r600_query_sw_end(struct r600_common_context *rctx,
|
|||
case R600_QUERY_DRAW_CALLS:
|
||||
query->end_result = rctx->num_draw_calls;
|
||||
break;
|
||||
case R600_QUERY_PRIM_RESTART_CALLS:
|
||||
query->end_result = rctx->num_prim_restart_calls;
|
||||
break;
|
||||
case R600_QUERY_SPILL_DRAW_CALLS:
|
||||
query->end_result = rctx->num_spill_draw_calls;
|
||||
break;
|
||||
|
|
@ -1761,6 +1767,7 @@ static struct pipe_driver_query_info r600_driver_query_list[] = {
|
|||
X("num-shaders-created", NUM_SHADERS_CREATED, UINT64, CUMULATIVE),
|
||||
X("num-shader-cache-hits", NUM_SHADER_CACHE_HITS, UINT64, CUMULATIVE),
|
||||
X("draw-calls", DRAW_CALLS, UINT64, AVERAGE),
|
||||
X("prim-restart-calls", PRIM_RESTART_CALLS, UINT64, AVERAGE),
|
||||
X("spill-draw-calls", SPILL_DRAW_CALLS, UINT64, AVERAGE),
|
||||
X("compute-calls", COMPUTE_CALLS, UINT64, AVERAGE),
|
||||
X("spill-compute-calls", SPILL_COMPUTE_CALLS, UINT64, AVERAGE),
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ struct r600_resource;
|
|||
|
||||
enum {
|
||||
R600_QUERY_DRAW_CALLS = PIPE_QUERY_DRIVER_SPECIFIC,
|
||||
R600_QUERY_PRIM_RESTART_CALLS,
|
||||
R600_QUERY_SPILL_DRAW_CALLS,
|
||||
R600_QUERY_COMPUTE_CALLS,
|
||||
R600_QUERY_SPILL_COMPUTE_CALLS,
|
||||
|
|
|
|||
|
|
@ -1396,6 +1396,8 @@ void si_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info)
|
|||
|
||||
pipe_resource_reference(&ib_tmp.buffer, NULL);
|
||||
sctx->b.num_draw_calls++;
|
||||
if (info->primitive_restart)
|
||||
sctx->b.num_prim_restart_calls++;
|
||||
if (G_0286E8_WAVESIZE(sctx->spi_tmpring_size))
|
||||
sctx->b.num_spill_draw_calls++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue