mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-21 07:50:35 +01:00
r300: source register index is always unsigned
This was forgotten when we converted to the NIR lowering of negative indirect adressing. Reviewed-by: Filip Gawin <filip.gawin@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24154>
This commit is contained in:
parent
953dd9605f
commit
beee5c3658
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ struct rc_src_register {
|
|||
unsigned int File:4;
|
||||
|
||||
/** Negative values may be used for relative addressing. */
|
||||
signed int Index:(RC_REGISTER_INDEX_BITS+1);
|
||||
unsigned int Index:RC_REGISTER_INDEX_BITS;
|
||||
unsigned int RelAddr:1;
|
||||
|
||||
unsigned int Swizzle:12;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue