diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-30 22:36:54 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-30 22:36:54 -0800 |
commit | 5ad488908b39b8f2278a00c9d2cbce76dd925ad1 (patch) | |
tree | 6bdabda53c1a214481fedf3c5e8515dce5786cf8 /src/gallium/drivers | |
parent | bc783f3d3854f8ab117457d607dba00836171ba9 (diff) |
i915: Set bit field of length 1 light_twoside to unsigned.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/i915/i915_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_context.h b/src/gallium/drivers/i915/i915_context.h index 37cbd56036..6ec5566d5d 100644 --- a/src/gallium/drivers/i915/i915_context.h +++ b/src/gallium/drivers/i915/i915_context.h @@ -167,7 +167,7 @@ struct i915_depth_stencil_state { }; struct i915_rasterizer_state { - int light_twoside : 1; + unsigned light_twoside : 1; unsigned st; enum interp_mode color_interp; |