From fbae0893a6b1cbcd6cd916c580a2321674749d6e Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Wed, 6 Aug 2025 11:16:55 +0200 Subject: [PATCH] nir: print skip_helpers for tex instrs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Alyssa Rosenzweig Reviewed-by: Marek Olšák Part-of: --- src/compiler/nir/nir_print.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index 5b4775b1cc7..4d01473ebf8 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -1997,6 +1997,10 @@ print_tex_instr(nir_tex_instr *instr, print_state *state) if (instr->is_sparse) { fprintf(fp, ", sparse"); } + + if (instr->skip_helpers) { + fprintf(fp, ", skip_helpers"); + } } static void