diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2020-04-24 12:17:04 +0200 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <[email protected]> | 2020-05-05 12:26:02 +0200 |
commit | 547e81655a0b9f6d7742e25f2e353e22c3a3b393 (patch) | |
tree | f98b7e7706b4f2c12023f2d56530865392237169 /src/gallium | |
parent | b0a7499d28dd5a7c89a70cea79cb14d943632609 (diff) |
radeonsi: don't print gs_copy_shader stats for shaderdb
Fixes: dbc86fa3de6 ("radeonsi: dump shader stats when hitting the live cache")
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4607>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state_shaders.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state_shaders.c b/src/gallium/drivers/radeonsi/si_state_shaders.c index ce09a34ddd8..45dcfa679b5 100644 --- a/src/gallium/drivers/radeonsi/si_state_shaders.c +++ b/src/gallium/drivers/radeonsi/si_state_shaders.c @@ -2841,8 +2841,6 @@ static void *si_create_shader(struct pipe_context *ctx, const struct pipe_shader si_shader_dump_stats_for_shader_db(sscreen, sel->main_shader_part_ngg, &sctx->debug); if (sel->main_shader_part_ngg_es) si_shader_dump_stats_for_shader_db(sscreen, sel->main_shader_part_ngg_es, &sctx->debug); - if (sel->gs_copy_shader) - si_shader_dump_stats_for_shader_db(sscreen, sel->gs_copy_shader, &sctx->debug); } return sel; } |