summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_validate.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-01 14:49:56 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-01 14:51:25 +0100
commitedfa8201a50c47376b7aa0c05d7851e3e1353bde (patch)
treeca11942b02e8a6eb919b959b5d677af75a11c009 /src/gallium/auxiliary/draw/draw_validate.c
parentcaa44763f7f7aa26ed0b0d1e5af0c410fba6bfe6 (diff)
draw: more flatshade_first changes
- Reduce the number of changes to the normal vertex ordering - Assume that the hardware knows how to do this in the standard case. - Add support to the passthrough vcache path.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_validate.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_validate.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gallium/auxiliary/draw/draw_validate.c b/src/gallium/auxiliary/draw/draw_validate.c
index ad43f06f73..e163e078f0 100644
--- a/src/gallium/auxiliary/draw/draw_validate.c
+++ b/src/gallium/auxiliary/draw/draw_validate.c
@@ -76,10 +76,6 @@ draw_need_pipeline(const struct draw_context *draw,
/* AA lines */
if (draw->rasterizer->line_smooth && draw->pipeline.aaline)
return TRUE;
-
- /* first-vertex driven flatshading */
- if (draw->rasterizer->flatshade && draw->rasterizer->flatshade_first)
- return TRUE;
}
if (points(prim))
@@ -116,10 +112,6 @@ draw_need_pipeline(const struct draw_context *draw,
/* two-side lighting */
if (draw->rasterizer->light_twoside)
return TRUE;
-
- /* first-vertex driven flatshading */
- if (draw->rasterizer->flatshade && draw->rasterizer->flatshade_first)
- return TRUE;
}
/* polygon cull - this is difficult - hardware can cull just fine