From: Francisco Jerez Date: Thu, 19 Mar 2015 14:03:57 +0000 (+0200) Subject: i965: Fix signedness of backend_reg::reg_offset. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb9bd3a1b0d6c518f9a38d81c0729feb38474f5a;p=mesa.git 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 --- diff --git a/src/mesa/drivers/dri/i965/brw_shader.h b/src/mesa/drivers/dri/i965/brw_shader.h index f8cc98afd91..944a8701aa3 100644 --- a/src/mesa/drivers/dri/i965/brw_shader.h +++ b/src/mesa/drivers/dri/i965/brw_shader.h @@ -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;