nir/print: support nir_texop_descriptor_amd

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Fixes: 3098000e71 ("nir: add nir_texop_descriptor_amd")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17991>
This commit is contained in:
Rhys Perry 2022-08-05 16:34:09 +01:00 committed by Marge Bot
parent b8c861b864
commit fc06f0cbd5

View file

@ -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;