indentation fixes
authorBrian <brian.paul@tungstengraphics.com>
Sat, 27 Oct 2007 15:33:50 +0000 (09:33 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Sat, 27 Oct 2007 15:33:50 +0000 (09:33 -0600)
src/mesa/pipe/tgsi/exec/tgsi_exec.c

index d98f46c..c503bce 100644 (file)
@@ -1535,21 +1535,21 @@ exec_instruction(
       assert (0);
       break;
 
-    case TGSI_OPCODE_LOG:
-        assert (0);
-        break;
+   case TGSI_OPCODE_LOG:
+      assert (0);
+      break;
 
-    case TGSI_OPCODE_MUL:
-        FOR_EACH_ENABLED_CHANNEL( *inst, chan_index )
-        {
-            FETCH(&r[0], 0, chan_index);
-            FETCH(&r[1], 1, chan_index);
+   case TGSI_OPCODE_MUL:
+      FOR_EACH_ENABLED_CHANNEL( *inst, chan_index )
+      {
+         FETCH(&r[0], 0, chan_index);
+         FETCH(&r[1], 1, chan_index);
 
-            micro_mul( &r[0], &r[0], &r[1] );
+         micro_mul( &r[0], &r[0], &r[1] );
 
-            STORE(&r[0], 0, chan_index);
-        }
-        break;
+         STORE(&r[0], 0, chan_index);
+      }
+      break;
 
    case TGSI_OPCODE_ADD:
       FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) {
@@ -1688,16 +1688,16 @@ exec_instruction(
       }
       break;
 
-    case TGSI_OPCODE_SUB:
-       FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) {
-          FETCH(&r[0], 0, chan_index);
-          FETCH(&r[1], 1, chan_index);
+   case TGSI_OPCODE_SUB:
+      FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) {
+         FETCH(&r[0], 0, chan_index);
+         FETCH(&r[1], 1, chan_index);
 
-          micro_sub( &r[0], &r[0], &r[1] );
+         micro_sub( &r[0], &r[0], &r[1] );
 
-          STORE(&r[0], 0, chan_index);
-       }
-       break;
+         STORE(&r[0], 0, chan_index);
+      }
+      break;
 
    case TGSI_OPCODE_LERP:
    /* TGSI_OPCODE_LRP */