From: Mihai Preda Date: Wed, 30 Nov 2022 09:45:07 +0000 (+0200) Subject: nir: print shader_info bools with the value X-Git-Tag: upstream/23.3.3~15874 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0320dbaff55870df5eb14c207083f1cd0d1ec1ee;p=platform%2Fupstream%2Fmesa.git nir: print shader_info bools with the value Reviewed-by: Marek Olšák Acked-by: Pierre-Eric Pelloux-Prayer Part-of: --- diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index 2871e38..48e58db 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -1812,7 +1812,7 @@ print_nz_unsigned(FILE *fp, const char *label, unsigned value) { static void print_nz_bool(FILE *fp, const char *label, bool value) { if (value) - fprintf(fp, "%s\n", label); + fprintf(fp, "%s: true\n", label); } static void