From: Ian Romanick Date: Wed, 30 Jul 2008 17:00:48 +0000 (-0700) Subject: Formatting changes to ease application of patches X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a244cd9e29e0163a3d68cc30cc6f4a81a9ea96d;p=mesa.git Formatting changes to ease application of patches --- diff --git a/src/mesa/drivers/dri/i965/brw_vs_emit.c b/src/mesa/drivers/dri/i965/brw_vs_emit.c index 7767d1369ce..ad414f42cce 100644 --- a/src/mesa/drivers/dri/i965/brw_vs_emit.c +++ b/src/mesa/drivers/dri/i965/brw_vs_emit.c @@ -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); }