mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 11:00:11 +01:00
i965: Print the type and writemask on null destinations.
These are often useful in debugging, and the writemask (actually "Channel Enables") determines more than just what goes into the destination. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
bcdf664682
commit
18b194925f
1 changed files with 1 additions and 1 deletions
|
|
@ -726,7 +726,7 @@ reg(FILE *file, unsigned _reg_file, unsigned _reg_nr)
|
|||
switch (_reg_nr & 0xf0) {
|
||||
case BRW_ARF_NULL:
|
||||
string(file, "null");
|
||||
return -1;
|
||||
break;
|
||||
case BRW_ARF_ADDRESS:
|
||||
format(file, "a%d", _reg_nr & 0x0f);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue