mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
i965/fs: add support for printing double immediates
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
0f2e227d5c
commit
a308bae58f
1 changed files with 3 additions and 0 deletions
|
|
@ -4913,6 +4913,9 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
case BRW_REGISTER_TYPE_F:
|
||||
fprintf(file, "%-gf", inst->src[i].f);
|
||||
break;
|
||||
case BRW_REGISTER_TYPE_DF:
|
||||
fprintf(file, "%fdf", inst->src[i].df);
|
||||
break;
|
||||
case BRW_REGISTER_TYPE_W:
|
||||
case BRW_REGISTER_TYPE_D:
|
||||
fprintf(file, "%dd", inst->src[i].d);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue