diff options
author | Brian <[email protected]> | 2007-11-16 09:31:25 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-16 09:31:25 -0700 |
commit | f361edae5d495254f4bc27473bf24b1ac7d5af06 (patch) | |
tree | f285f3fe90fc875822fe4078a80769190e393385 /src/mesa/pipe/draw | |
parent | 90dd0cb822f2fe14258c786e5c37da69472b7d17 (diff) |
added a clip-bypass flag to rasterizer state
Diffstat (limited to 'src/mesa/pipe/draw')
-rw-r--r-- | src/mesa/pipe/draw/draw_validate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/draw/draw_validate.c b/src/mesa/pipe/draw/draw_validate.c index fdeb1be8ca7..4e8f986b272 100644 --- a/src/mesa/pipe/draw/draw_validate.c +++ b/src/mesa/pipe/draw/draw_validate.c @@ -85,6 +85,7 @@ static void validate_begin( struct draw_stage *stage ) /* Clip stage */ + if (!draw->rasterizer->bypass_clipping) { draw->pipeline.clip->next = next; next = draw->pipeline.clip; |