aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vs.h
diff options
context:
space:
mode:
authorPaul Berry <[email protected]>2011-09-03 08:42:28 -0700
committerPaul Berry <[email protected]>2011-09-06 11:05:48 -0700
commitbecd54eedb26ec9076e6f5f98f485861b3e13a90 (patch)
treeaf14dd4ac139b634362fa186b91e78eb07ea5605 /src/mesa/drivers/dri/i965/brw_vs.h
parentf2b09257ba04a8f50c58e208ca8ab66cfa362298 (diff)
i965: Remove two_side_color from brw_compute_vue_map().
Since we now lay out the VUE the same way regardless of whether two-sided color is enabled, brw_compute_vue_map() no longer needs to know whether two-sided color is enabled. This allows the two-sided color flag to be removed from the clip, GS, and VS keys, so that fewer GPU programs need to be recompiled when turning two-sided color on and off. Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.h b/src/mesa/drivers/dri/i965/brw_vs.h
index c31869c59c9..28e6b428013 100644
--- a/src/mesa/drivers/dri/i965/brw_vs.h
+++ b/src/mesa/drivers/dri/i965/brw_vs.h
@@ -48,7 +48,6 @@ struct brw_vs_prog_key {
GLuint nr_userclip:4;
GLuint copy_edgeflag:1;
GLuint point_coord_replace:8;
- GLuint two_side_color: 1;
GLuint clamp_vertex_color:1;
};