mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 08:50:13 +01:00
i965: Fix signedness of backend_reg::reg_offset.
And make it 16-bit so it packs nicely with the previous field. Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
7e816c7feb
commit
eb9bd3a1b0
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ struct backend_reg
|
|||
*
|
||||
* For uniforms, this is in units of 1 float.
|
||||
*/
|
||||
int reg_offset;
|
||||
uint16_t reg_offset;
|
||||
|
||||
struct brw_reg fixed_hw_reg;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue