diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-11-30 14:03:40 +0000 |
---|---|---|
committer | Owain G. Ainsworth <oga@openbsd.org> | 2010-03-01 18:45:07 +0000 |
commit | 31e0522619144319f2835e2644fa3060e46e6d45 (patch) | |
tree | d002d1d237faeae5f7f49d5e81fc5f41f32b0935 /src/i915_render.c | |
parent | 598a5cc10ddc4f25afe0f4c92cdeb81a689c9997 (diff) |
i915: Whitespace
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
(cherry picked from commit 8f8b6bd03d275379918777eaf7f63c0157b7ed9d)
Signed-off-by: Owain G. Ainsworth <oga@openbsd.org>
Diffstat (limited to 'src/i915_render.c')
-rw-r--r-- | src/i915_render.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/i915_render.c b/src/i915_render.c index 0a260f30..93498734 100644 --- a/src/i915_render.c +++ b/src/i915_render.c @@ -656,15 +656,17 @@ static void i915_emit_composite_setup(ScrnInfoPtr scrn) PICT_FORMAT_RGB(mask_picture->format)) { if (i915_blend_op[op].src_alpha) { i915_fs_mul(out_reg, - i915_fs_operand(src_reg, W, W, W, W), - i915_fs_operand_reg(mask_reg)); + i915_fs_operand(src_reg, W, W, W, W), + i915_fs_operand_reg(mask_reg)); } else { - i915_fs_mul(out_reg, i915_fs_operand_reg(src_reg), - i915_fs_operand_reg(mask_reg)); + i915_fs_mul(out_reg, + i915_fs_operand_reg(src_reg), + i915_fs_operand_reg(mask_reg)); } } else { - i915_fs_mul(out_reg, i915_fs_operand_reg(src_reg), - i915_fs_operand(mask_reg, W, W, W, W)); + i915_fs_mul(out_reg, + i915_fs_operand_reg(src_reg), + i915_fs_operand(mask_reg, W, W, W, W)); } } if (dst_format == COLR_BUF_8BIT) |