From eb9bd3a1b0d6c518f9a38d81c0729feb38474f5a Mon Sep 17 00:00:00 2001 From: Francisco Jerez Date: Thu, 19 Mar 2015 16:03:57 +0200 Subject: [PATCH] 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 --- src/mesa/drivers/dri/i965/brw_shader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2