diff options
author | Francisco Jerez <[email protected]> | 2015-03-18 15:22:52 +0200 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-03-23 14:09:32 +0200 |
commit | 7678fb9c639f25313f3ae2e2b539e424370d3ec6 (patch) | |
tree | 6578b9e73eec4f1a16666675c89c812ad2ee25ce /src/mesa/drivers/dri/i965/brw_ir_vec4.h | |
parent | 7bc02c786df437024e2a8582192a66ddb5e40624 (diff) |
i965/vec4: Don't use GL types in the IR data structures.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_ir_vec4.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_ir_vec4.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; }; |