i965/vec4: fix indentation in pack_uniform_registers
authorIago Toral Quiroga <itoral@igalia.com>
Mon, 30 May 2016 07:08:04 +0000 (09:08 +0200)
committerSamuel Iglesias Gonsálvez <siglesias@igalia.com>
Tue, 3 Jan 2017 10:26:51 +0000 (11:26 +0100)
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/brw_vec4.cpp

index bce40b8..1d65b99 100644 (file)
@@ -660,25 +660,25 @@ vec4_visitor::pack_uniform_registers()
       int dst;
       /* Find the lowest place we can slot this uniform in. */
       for (dst = 0; dst < src; dst++) {
-        if (chans_used[dst] + size <= 4)
-           break;
+         if (chans_used[dst] + size <= 4)
+            break;
       }
 
       if (src == dst) {
-        new_loc[src] = dst;
-        new_chan[src] = 0;
+         new_loc[src] = dst;
+         new_chan[src] = 0;
       } else {
-        new_loc[src] = dst;
-        new_chan[src] = chans_used[dst];
+         new_loc[src] = dst;
+         new_chan[src] = chans_used[dst];
 
-        /* Move the references to the data */
-        for (int j = 0; j < size; j++) {
-           stage_prog_data->param[dst * 4 + new_chan[src] + j] =
-              stage_prog_data->param[src * 4 + j];
-        }
+         /* Move the references to the data */
+         for (int j = 0; j < size; j++) {
+            stage_prog_data->param[dst * 4 + new_chan[src] + j] =
+               stage_prog_data->param[src * 4 + j];
+         }
 
-        chans_used[dst] += size;
-        chans_used[src] = 0;
+         chans_used[dst] += size;
+         chans_used[src] = 0;
       }
 
       new_uniform_count = MAX2(new_uniform_count, dst + 1);
@@ -691,8 +691,8 @@ vec4_visitor::pack_uniform_registers()
       for (int i = 0 ; i < 3; i++) {
          int src = inst->src[i].nr;
 
-        if (inst->src[i].file != UNIFORM)
-           continue;
+         if (inst->src[i].file != UNIFORM)
+            continue;
 
          inst->src[i].nr = new_loc[src];
          inst->src[i].swizzle += BRW_SWIZZLE4(new_chan[src], new_chan[src],