From: Brian Date: Thu, 13 Mar 2008 20:32:20 +0000 (-0600) Subject: gallium: added bypass_vs flag to rasterizer state (may be temporary) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6ed165748c6585f1368be37c0d0289cead419c9;p=mesa.git gallium: added bypass_vs flag to rasterizer state (may be temporary) --- diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 02c354322d3..5791a10119c 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -110,6 +110,7 @@ struct pipe_rasterizer_state unsigned line_stipple_pattern:16; unsigned line_last_pixel:1; 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? */ float line_width;