diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-03-13 14:32:20 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-03-13 14:32:20 -0600 |
commit | b6ed165748c6585f1368be37c0d0289cead419c9 (patch) | |
tree | b7a46b8dbe0ac41e9b3e2f3b60c8e55d6c64cf79 /src | |
parent | 3115e8c968b51d22962b1b92b13946956dddd98e (diff) |
gallium: added bypass_vs flag to rasterizer state (may be temporary)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 02c354322d..5791a10119 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; |