From: Francisco Jerez Date: Wed, 18 Mar 2015 13:22:52 +0000 (+0200) Subject: i965/vec4: Don't use GL types in the IR data structures. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7678fb9c639f25313f3ae2e2b539e424370d3ec6;p=mesa.git i965/vec4: Don't use GL types in the IR data structures. Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_ir_vec4.h b/src/mesa/drivers/dri/i965/brw_ir_vec4.h index 941086ffd28..8b26e487b72 100644 --- a/src/mesa/drivers/dri/i965/brw_ir_vec4.h +++ b/src/mesa/drivers/dri/i965/brw_ir_vec4.h @@ -58,7 +58,7 @@ public: explicit src_reg(dst_reg reg); - GLuint swizzle; /**< BRW_SWIZZLE_XYZW macros from brw_reg.h. */ + unsigned swizzle; /**< BRW_SWIZZLE_XYZW macros from brw_reg.h. */ src_reg *reladdr; };