From e701f9b67010279db02ceb51f7d08078cb34170a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 29 Apr 2012 15:47:02 +0000 Subject: style cleanup: whitespace / commas --- source/blender/imbuf/intern/rectop.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/imbuf/intern/rectop.c') diff --git a/source/blender/imbuf/intern/rectop.c b/source/blender/imbuf/intern/rectop.c index 6ea84fd6717..9f025803c2e 100644 --- a/source/blender/imbuf/intern/rectop.c +++ b/source/blender/imbuf/intern/rectop.c @@ -359,13 +359,13 @@ void IMB_rectblend(struct ImBuf *dbuf, struct ImBuf *sbuf, int destx, /* copy */ for (;height > 0; height--) { if (do_char) { - memcpy(drect,srect, width * sizeof(int)); + memcpy(drect, srect, width * sizeof(int)); drect += destskip; srect += srcskip; } if (do_float) { - memcpy(drectf,srectf, width * sizeof(float) * 4); + memcpy(drectf, srectf, width * sizeof(float) * 4); drectf += destskip*4; srectf += srcskip*4; } @@ -496,8 +496,8 @@ void buf_rectfill_area(unsigned char *rect, float *rectf, int width, int height, CLAMP(y1, 0, height); CLAMP(y2, 0, height); - if (x1>x2) SWAP(int,x1,x2); - if (y1>y2) SWAP(int,y1,y2); + if (x1>x2) SWAP(int, x1, x2); + if (y1>y2) SWAP(int, y1, y2); if (x1==x2 || y1==y2) return; a = col[3]; -- cgit v1.2.3