From f67b41e53bbae40ca7c374f05d72481ec9662cab Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 6 Nov 2022 21:44:06 -0500 Subject: [PATCH] radeonsi: don't print the base non-view texture format for AMD_TEST=computeblit it's confusing in the output and it affects nothing Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/gallium/drivers/radeonsi/si_test_image_copy_region.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_test_image_copy_region.c b/src/gallium/drivers/radeonsi/si_test_image_copy_region.c index 94918f9..b7892c5 100644 --- a/src/gallium/drivers/radeonsi/si_test_image_copy_region.c +++ b/src/gallium/drivers/radeonsi/si_test_image_copy_region.c @@ -770,13 +770,9 @@ void si_test_blit(struct si_screen *sscreen, unsigned test_flags) printf("%4u: dst = (", i); print_image_attrs(sscreen, (struct si_texture *)gfx_dst); - printf(", %20s as %20s), src = (", - util_format_description(tdst.format)->short_name, - util_format_short_name(info.dst.format)); + printf(", %20s), src = (", util_format_short_name(info.dst.format)); print_image_attrs(sscreen, (struct si_texture *)gfx_src); - printf(", %20s as %20s)", - util_format_description(tsrc.format)->short_name, - util_format_short_name(info.src.format)); + printf(", %20s)", util_format_short_name(info.src.format)); fflush(stdout); int src_width, src_height, src_depth, dst_width, dst_height, dst_depth; -- 2.7.4