mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 11:30:21 +01:00
nir/print: Print per-primitive and explicit strict IO info.
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28685>
This commit is contained in:
parent
566174785c
commit
723b3d354e
1 changed files with 6 additions and 0 deletions
|
|
@ -1366,6 +1366,12 @@ print_intrinsic_instr(nir_intrinsic_instr *instr, print_state *state)
|
|||
|
||||
fprintf(fp, "io location=%s slots=%u", loc, io.num_slots);
|
||||
|
||||
if (io.per_primitive)
|
||||
fprintf(fp, " per_primitive");
|
||||
|
||||
if (io.interp_explicit_strict)
|
||||
fprintf(fp, " explicit_strict");
|
||||
|
||||
if (io.dual_source_blend_index)
|
||||
fprintf(fp, " dualsrc");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue