summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i915simple/i915_state_derived.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-09-20 14:08:09 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-09-20 14:08:09 -0600
commit478d1e2c9c73fc29542375c44d01ab964ce8eccf (patch)
tree1c9c1ba08bfe5a0c81150c49acce0fab9cd63956 /src/mesa/pipe/i915simple/i915_state_derived.c
parent064daf319cf1868575c794f2380d54ea5b8358af (diff)
remove old/used code
Diffstat (limited to 'src/mesa/pipe/i915simple/i915_state_derived.c')
-rw-r--r--src/mesa/pipe/i915simple/i915_state_derived.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/mesa/pipe/i915simple/i915_state_derived.c b/src/mesa/pipe/i915simple/i915_state_derived.c
index 1485d37a62..2a03650620 100644
--- a/src/mesa/pipe/i915simple/i915_state_derived.c
+++ b/src/mesa/pipe/i915simple/i915_state_derived.c
@@ -103,40 +103,6 @@ static void calculate_vertex_layout( struct i915_context *i915 )
}
}
-#if 0
- /* color0 */
- if (inputsRead & (1 << TGSI_ATTRIB_COLOR0)) {
- front0 = draw_emit_vertex_attr(vinfo, FORMAT_4UB, colorInterp);
- vinfo->hwfmt[0] |= S4_VFMT_COLOR;
- }
-
- /* color 1 */
- if (inputsRead & (1 << TGSI_ATTRIB_COLOR1)) {
- assert(0); /* untested */
- front1 = draw_emit_vertex_attr(vinfo, FORMAT_4UB, colorInterp);
- vinfo->hwfmt[0] |= S4_VFMT_SPEC_FOG;
- }
-
- /* XXX fog? */
-
- /* texcoords */
- {
- uint i;
- for (i = TGSI_ATTRIB_TEX0; i <= TGSI_ATTRIB_TEX7; i++) {
- uint hwtc;
- if (inputsRead & (1 << i)) {
- draw_emit_vertex_attr(vinfo, FORMAT_4F, INTERP_PERSPECTIVE);
- hwtc = TEXCOORDFMT_4D;
- needW = TRUE;
- }
- else {
- hwtc = TEXCOORDFMT_NOT_PRESENT;
- }
- vinfo->hwfmt[1] |= hwtc << ((i - TGSI_ATTRIB_TEX0) * 4);
- }
- }
-#endif
-
/* go back and fill in the vertex position info now that we have needW */
if (needW) {
vinfo->hwfmt[0] |= S4_VFMT_XYZW;