diff options
| author | Brian Paul <brianp@vmware.com> | 2009-02-12 14:58:19 -0700 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-02-13 17:18:35 -0700 | 
| commit | 11b75eafc7533c152e6306e4d8f85d7268f3cc16 (patch) | |
| tree | edb31902edeb4e8c8c457c84f1176a2026156b94 | |
| parent | 1a693e90b5594651a3b17f47c7f5f094088c502f (diff) | |
i965: more reformatting/clean-up
| -rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_glsl.c | 22 | 
1 files changed, 10 insertions, 12 deletions
| diff --git a/src/mesa/drivers/dri/i965/brw_wm_glsl.c b/src/mesa/drivers/dri/i965/brw_wm_glsl.c index 93e5481662..66c80f1291 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_glsl.c +++ b/src/mesa/drivers/dri/i965/brw_wm_glsl.c @@ -319,7 +319,6 @@ static void emit_pixel_xy(struct brw_wm_compile *c,  		stride(suboffset(r1_uw, 5), 2, 4, 0),  		brw_imm_v(0x11001100));      } -  }  static void emit_delta_xy(struct brw_wm_compile *c, @@ -395,18 +394,17 @@ static void emit_fb_write(struct brw_wm_compile *c,       */      if (c->key.aa_dest_stencil_reg)  	nr += 1; -    { -	brw_push_insn_state(p); -	for (channel = 0; channel < 4; channel++) { -	    src0 = get_src_reg(c,  &inst->SrcReg[0], channel, 1); -	    /*  mov (8) m2.0<1>:ud   r28.0<8;8,1>:ud  { Align1 } */ -	    /*  mov (8) m6.0<1>:ud   r29.0<8;8,1>:ud  { Align1 SecHalf } */ -	    brw_MOV(p, brw_message_reg(nr + channel), src0); -	} -	/* skip over the regs populated above: */ -	nr += 8; -	brw_pop_insn_state(p); + +    brw_push_insn_state(p); +    for (channel = 0; channel < 4; channel++) { +        src0 = get_src_reg(c,  &inst->SrcReg[0], channel, 1); +        /*  mov (8) m2.0<1>:ud   r28.0<8;8,1>:ud  { Align1 } */ +        /*  mov (8) m6.0<1>:ud   r29.0<8;8,1>:ud  { Align1 SecHalf } */ +        brw_MOV(p, brw_message_reg(nr + channel), src0);      } +    /* skip over the regs populated above: */ +    nr += 8; +    brw_pop_insn_state(p);      if (c->key.source_depth_to_render_target) {         if (c->key.computes_depth) { | 
