From: Michal Krol Date: Tue, 25 Mar 2008 22:48:30 +0000 (+0100) Subject: gallium: Introduce flatshade_first field to rasterizer_state. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc9757e1a8a0451a198d329880558b805adff42a;p=mesa.git gallium: Introduce flatshade_first field to rasterizer_state. This bit tells us which vertex of the primitive is used to propagate color for the remaining vertices if flatshade mode. --- diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 3e531c4da48..a2bd8c6aaab 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -112,6 +112,7 @@ struct pipe_rasterizer_state unsigned bypass_clipping:1; unsigned bypass_vs:1; /**< vertices are already fully transformed */ unsigned origin_lower_left:1; /**< Is (0,0) the lower-left corner? */ + unsigned flatshade_first:1; /**< take color attribute from the first vertex of a primitive */ float line_width; float point_size; /**< used when no per-vertex size */