mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
i965/vec4: dump subnr for FIXED_GRF
This came in handy when debugging the payload setup for Tess Eval, since it prints correct subnr for attributes that can be loaded in the second half of a register. Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
8e92b40203
commit
0579c85e5c
1 changed files with 1 additions and 1 deletions
|
|
@ -1562,7 +1562,7 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
fprintf(file, "vgrf%d", inst->src[i].nr);
|
||||
break;
|
||||
case FIXED_GRF:
|
||||
fprintf(file, "g%d", inst->src[i].nr);
|
||||
fprintf(file, "g%d.%d", inst->src[i].nr, inst->src[i].subnr);
|
||||
break;
|
||||
case ATTR:
|
||||
fprintf(file, "attr%d", inst->src[i].nr);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue