summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2020-11-24 10:52:45 +1000
committerDave Airlie <airlied@redhat.com>2020-11-24 11:00:18 +1000
commit105fc1c615eb4963503c738c68766f830bc5a662 (patch)
treeb8b4599dd3be01f24930a5cfb6d50e87080caad6 /src/gallium/include/pipe
parent87c70f1984fc6f9be6c32559ecfbde1946ff7360 (diff)
gallium: fix missing bit field in p_state.h
Marek pointed this out, not sure how we missed it. Fixes: 3dc6da1ac1f5 ("gallium: add a non-multisample sample mask out behaviour flag.") Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7741>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r--src/gallium/include/pipe/p_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h
index 7fade64cc6c..e96d2d65ca9 100644
--- a/src/gallium/include/pipe/p_state.h
+++ b/src/gallium/include/pipe/p_state.h
@@ -111,7 +111,7 @@ struct pipe_rasterizer_state
unsigned point_tri_clip:1; /** large points clipped as tris or points */
unsigned point_size_per_vertex:1; /**< size computed in vertex shader */
unsigned multisample:1; /* XXX maybe more ms state in future */
- unsigned no_ms_sample_mask_out;
+ unsigned no_ms_sample_mask_out:1;
unsigned force_persample_interp:1;
unsigned line_smooth:1;
unsigned line_stipple_enable:1;