From fc06f0cbd509a50f72efdcafbfb2386ca3dbf777 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Fri, 5 Aug 2022 16:34:09 +0100 Subject: [PATCH] nir/print: support nir_texop_descriptor_amd Signed-off-by: Rhys Perry Reviewed-by: Georg Lehmann Fixes: 3098000e712 ("nir: add nir_texop_descriptor_amd") Part-of: --- src/compiler/nir/nir_print.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index 3162f0d3714..edc83db5989 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -1244,6 +1244,9 @@ print_tex_instr(nir_tex_instr *instr, print_state *state) case nir_texop_fragment_mask_fetch_amd: fprintf(fp, "fragment_mask_fetch_amd "); break; + case nir_texop_descriptor_amd: + fprintf(fp, "descriptor_amd "); + break; default: unreachable("Invalid texture operation"); break;