Home
last modified time | relevance | path

Searched refs:pipeline_stats_enabled (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_barrier.c241 if (flags & SI_BARRIER_EVENT_PIPELINESTAT_START && ctx->pipeline_stats_enabled != 1) { in gfx10_emit_barrier()
243 ctx->pipeline_stats_enabled = 1; in gfx10_emit_barrier()
244 } else if (flags & SI_BARRIER_EVENT_PIPELINESTAT_STOP && ctx->pipeline_stats_enabled != 0) { in gfx10_emit_barrier()
246 ctx->pipeline_stats_enabled = 0; in gfx10_emit_barrier()
466 if (flags & SI_BARRIER_EVENT_PIPELINESTAT_START && sctx->pipeline_stats_enabled != 1) { in gfx6_emit_barrier()
470 sctx->pipeline_stats_enabled = 1; in gfx6_emit_barrier()
471 } else if (flags & SI_BARRIER_EVENT_PIPELINESTAT_STOP && sctx->pipeline_stats_enabled != 0) { in gfx6_emit_barrier()
475 sctx->pipeline_stats_enabled = 0; in gfx6_emit_barrier()
H A Dsi_gfx_cs.c476 ctx->pipeline_stats_enabled = -1; /* indicate that the current hw state is unknown */ in si_begin_new_gfx_cs()
H A Dsi_pipe.h996 int8_t pipeline_stats_enabled; /* -1 = unknown, 0 = disabled, 1 = enabled */ member