From 105fc1c615eb4963503c738c68766f830bc5a662 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 24 Nov 2020 10:52:45 +1000 Subject: 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 Part-of: --- src/gallium/include/pipe/p_state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gallium/include/pipe') 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; -- cgit v1.2.3