From 76bf70d38fd109a09ee44d074cfd392e1884afff Mon Sep 17 00:00:00 2001 From: "skia.committer@gmail.com" Date: Wed, 20 Feb 2013 07:02:30 +0000 Subject: Sanitizing source files in Skia_Periodic_House_Keeping git-svn-id: http://skia.googlecode.com/svn/trunk@7787 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/effects/SkBlurMask.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/effects') diff --git a/src/effects/SkBlurMask.cpp b/src/effects/SkBlurMask.cpp index 7bbf0de8fa..70efa0bcba 100644 --- a/src/effects/SkBlurMask.cpp +++ b/src/effects/SkBlurMask.cpp @@ -31,11 +31,11 @@ * * This is what the inner loop looks like before unrolling, and with the two * cases broken out separately (width < diameter, width >= diameter): - * + * * if (width < diameter) { * for (int x = 0; x < width; ++x) { * sum += *right++; - * *dptr = (sum * scale + half) >> 24; + * *dptr = (sum * scale + half) >> 24; * dptr += dst_x_stride; * } * for (int x = width; x < diameter; ++x) { @@ -226,10 +226,10 @@ static int boxBlur(const uint8_t* src, int src_y_stride, uint8_t* dst, * interpolates between them. In float this would be: * outer_weight * outer_sum / kernelSize + * (1.0 - outer_weight) * innerSum / (kernelSize - 2) - * + * * This is what the inner loop looks like before unrolling, and with the two * cases broken out separately (width < diameter, width >= diameter): - * + * * if (width < diameter) { * for (int x = 0; x < width; x++) { * inner_sum = outer_sum; -- cgit v1.2.3