mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 16:00:08 +01:00
nir: print nir_tex_instr::backend_flags if present
I was wondering where this was disappearing to. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Reviewed-by: Karol Herbst <kherbst@redhat.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38789>
This commit is contained in:
parent
b5063953ca
commit
5ced623fdf
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue