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 94918f9d78d..b7892c507cf 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;