Formatting changes to ease application of patches

This commit is contained in:
Ian Romanick
2008-07-30 10:00:48 -07:00
parent 687cd467b3
commit 1a244cd9e2

View 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);
}