mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 18:30:09 +01:00
i965/vec4: Handle saturate in dump_instruction().
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
ebad062e9a
commit
78df9d5e30
1 changed files with 2 additions and 0 deletions
|
|
@ -1334,6 +1334,8 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
}
|
||||
|
||||
fprintf(file, "%s", brw_instruction_name(inst->opcode));
|
||||
if (inst->saturate)
|
||||
fprintf(file, ".sat");
|
||||
if (inst->conditional_mod) {
|
||||
fprintf(file, "%s", conditional_modifier[inst->conditional_mod]);
|
||||
if (!inst->predicate &&
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue