comparison src/dmscaledblit.h @ 1102:e06abfde6c39

Cosmetics pass: Remove excess whitespace.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Mar 2015 23:22:36 +0200
parents 27949209238b
children
comparison
equal deleted inserted replaced
1101:0577f10dc3de 1102:e06abfde6c39
23 DMQValue xr, yr; 23 DMQValue xr, yr;
24 24
25 #ifdef DM_BLITFUNC_VARS 25 #ifdef DM_BLITFUNC_VARS
26 DM_BLITFUNC_VARS 26 DM_BLITFUNC_VARS
27 #endif 27 #endif
28 28
29 // Clip coordinates 29 // Clip coordinates
30 if (dmScaledClipCoord(&xr, x0, src->w, dwidth, 30 if (dmScaledClipCoord(&xr, x0, src->w, dwidth,
31 dst->clip_rect.x, dst->clip_rect.x + dst->clip_rect.w) 31 dst->clip_rect.x, dst->clip_rect.x + dst->clip_rect.w)
32 || 32 ||
33 dmScaledClipCoord(&yr, y0, src->h, dheight, 33 dmScaledClipCoord(&yr, y0, src->h, dheight,
34 dst->clip_rect.y, dst->clip_rect.y + dst->clip_rect.h)) 34 dst->clip_rect.y, dst->clip_rect.y + dst->clip_rect.h))
35 return -1; 35 return -1;