Formatting changes to ease application of patches
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 30 Jul 2008 17:00:48 +0000 (10:00 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Thu, 21 Aug 2008 22:01:59 +0000 (15:01 -0700)
src/mesa/drivers/dri/i965/brw_vs_emit.c

index 7767d13..ad414f4 100644 (file)
@@ -1159,10 +1159,11 @@ void brw_vs_emit(struct brw_vs_compile *c )
         break;
       }
 
-      if (inst->DstReg.File == PROGRAM_OUTPUT
-             &&inst->DstReg.Index != VERT_RESULT_HPOS
-             &&c->output_regs[inst->DstReg.Index].used_in_src)
-         brw_MOV(p, get_dst(c, inst->DstReg), dst);
+      if ((inst->DstReg.File == PROGRAM_OUTPUT)
+          && (inst->DstReg.Index != VERT_RESULT_HPOS)
+          && c->output_regs[inst->DstReg.Index].used_in_src) {
+         brw_MOV(p, get_dst(c, inst->DstReg), dst);
+      }
 
       release_tmps(c);
    }