mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 12:18:09 +02:00
i965/fs: Handle V/UV immediates in dump_instructions()
This commit is contained in:
parent
694eb342a2
commit
f447a13032
1 changed files with 5 additions and 0 deletions
|
|
@ -6036,6 +6036,11 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
brw_vf_to_float((inst->src[i].ud >> 16) & 0xff),
|
||||
brw_vf_to_float((inst->src[i].ud >> 24) & 0xff));
|
||||
break;
|
||||
case BRW_REGISTER_TYPE_V:
|
||||
case BRW_REGISTER_TYPE_UV:
|
||||
fprintf(file, "%08x%s", inst->src[i].ud,
|
||||
inst->src[i].type == BRW_REGISTER_TYPE_V ? "V" : "UV");
|
||||
break;
|
||||
default:
|
||||
fprintf(file, "???");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue