mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
ir3: print (sat) modifier of instructions
Signed-off-by: Job Noorman <jnoorman@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28341>
This commit is contained in:
parent
cd171964a6
commit
849005a471
1 changed files with 2 additions and 0 deletions
|
|
@ -96,6 +96,8 @@ print_instr_name(struct log_stream *stream, struct ir3_instruction *instr,
|
|||
mesa_log_stream_printf(stream, "(nop%d)", instr->nop);
|
||||
if (instr->flags & IR3_INSTR_UL)
|
||||
mesa_log_stream_printf(stream, "(ul)");
|
||||
if (instr->flags & IR3_INSTR_SAT)
|
||||
mesa_log_stream_printf(stream, "(sat)");
|
||||
} else {
|
||||
mesa_log_stream_printf(stream, " ");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue