summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-03-13 14:32:20 -0600
committerBrian <brian.paul@tungstengraphics.com>2008-03-13 14:32:20 -0600
commitb6ed165748c6585f1368be37c0d0289cead419c9 (patch)
treeb7a46b8dbe0ac41e9b3e2f3b60c8e55d6c64cf79 /src/gallium/include
parent3115e8c968b51d22962b1b92b13946956dddd98e (diff)
gallium: added bypass_vs flag to rasterizer state (may be temporary)
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/pipe/p_state.h1
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;