diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-11-30 14:03:40 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-11-30 14:03:40 +0000 |
commit | 8f8b6bd03d275379918777eaf7f63c0157b7ed9d (patch) | |
tree | 58d1c346800df9cec7feaef42ead48285ef57044 | |
parent | 47916ea9d351f0ce6dc34713d6c164b0032f9830 (diff) |
i915: Whitespace
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-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) |