mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-25 13:40:24 +01:00
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:
parent
b8c861b864
commit
fc06f0cbd5
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue