From 5f68ba505b45d712e019c1ee6f8939947b659506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Ondra=C4=8Dka?= Date: Tue, 7 May 2024 08:44:52 +0200 Subject: [PATCH] r300: missing whitespace in shader stats MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pavel Ondračka Part-of: --- src/gallium/drivers/r300/compiler/radeon_compiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r300/compiler/radeon_compiler.c b/src/gallium/drivers/r300/compiler/radeon_compiler.c index 85ba7151d6c..757b7cdb659 100644 --- a/src/gallium/drivers/r300/compiler/radeon_compiler.c +++ b/src/gallium/drivers/r300/compiler/radeon_compiler.c @@ -454,7 +454,7 @@ static void print_stats(struct radeon_compiler * c) * have the same set. */ util_debug_message(c->debug, SHADER_INFO, - "%s shader: %u inst, %u vinst, %u sinst, %u predicate, %u flowcontrol," + "%s shader: %u inst, %u vinst, %u sinst, %u predicate, %u flowcontrol, " "%u loops, %u tex, %u presub, %u omod, %u temps, %u consts, %u lits, %u cycles", c->type == RC_VERTEX_PROGRAM ? "VS" : "FS", s.num_insts, s.num_rgb_insts, s.num_alpha_insts, s.num_pred_insts,