mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 07:58:07 +02:00
gallium: fix missing bit field in p_state.h
Marek pointed this out, not sure how we missed it. Fixes:3dc6da1ac1("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> (cherry picked from commit105fc1c615)
This commit is contained in:
parent
e9cdf398fa
commit
0464d64d6c
2 changed files with 2 additions and 2 deletions
|
|
@ -580,7 +580,7 @@
|
|||
"description": "gallium: fix missing bit field in p_state.h",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "3dc6da1ac1f5be2d6421940739b88f7e8d36cdf9"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue