clean up color0 code
authorDave Airlie <airlied@nx6125b.(none)>
Thu, 21 Jun 2007 08:35:25 +0000 (18:35 +1000)
committerDave Airlie <airlied@nx6125b.(none)>
Thu, 21 Jun 2007 08:35:25 +0000 (18:35 +1000)
src/mesa/drivers/dri/r300/r300_swtcl.c

index 97f1583abddf35e31c1abfa995ee83924446c556..35b0235aa14618fb16b00ae4202ce41d833d7a0a 100644 (file)
@@ -257,25 +257,11 @@ static void r300SetVertexFormat( GLcontext *ctx )
    offset += 4;
 
    rmesa->swtcl.specoffset = 0;
-   if (RENDERINPUTS_TEST( index_bitset, _TNL_ATTRIB_COLOR1 ) ||
-       RENDERINPUTS_TEST( index_bitset, _TNL_ATTRIB_FOG )) {
-
-     if (_mesa_little_endian()) {
-      if (RENDERINPUTS_TEST( index_bitset, _TNL_ATTRIB_COLOR1 )) {
-        rmesa->swtcl.specoffset = offset;
-        EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_4F );
-        InputsRead |= 1 << VERT_ATTRIB_COLOR1;
-        OutputsWritten |= 1 << VERT_RESULT_COL1;
-      }
-
-     } else {
-      if (RENDERINPUTS_TEST( index_bitset, _TNL_ATTRIB_COLOR1 )) {
+   if (RENDERINPUTS_TEST( index_bitset, _TNL_ATTRIB_COLOR1 )) {
         rmesa->swtcl.specoffset = offset;
         EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_4F );
         InputsRead |= 1 << VERT_ATTRIB_COLOR1;
         OutputsWritten |= 1 << VERT_RESULT_COL1;
-      }
-     }
    }
 
    if (RENDERINPUTS_TEST_RANGE( index_bitset, _TNL_FIRST_TEX, _TNL_LAST_TEX )) {