From 5ced623fdf438ffb20146c47334561ab8c11036e Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 3 Dec 2025 12:36:20 -0500 Subject: [PATCH] nir: print nir_tex_instr::backend_flags if present MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I was wondering where this was disappearing to. Signed-off-by: Alyssa Rosenzweig Reviewed-by: Karol Herbst 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 b6cbd506131..3ee7dd23a01 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -2038,6 +2038,10 @@ print_tex_instr(nir_tex_instr *instr, print_state *state) if (instr->skip_helpers) { fprintf(fp, ", skip_helpers"); } + + if (instr->backend_flags) { + fprintf(fp, ", backend_flags=0x%X", instr->backend_flags); + } } static void