From be41d38f1c076c9e4dc595a6e1a4eb5ccdbd307b Mon Sep 17 00:00:00 2001 From: "skia.committer@gmail.com" Date: Thu, 20 Mar 2014 03:02:31 +0000 Subject: Sanitizing source files in Housekeeper-Nightly git-svn-id: http://skia.googlecode.com/svn/trunk@13871 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkColorPriv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/core/SkColorPriv.h') diff --git a/include/core/SkColorPriv.h b/include/core/SkColorPriv.h index ba1230adb3..9591f22725 100644 --- a/include/core/SkColorPriv.h +++ b/include/core/SkColorPriv.h @@ -102,7 +102,7 @@ // no need to pass in the colortype to this function. static inline uint32_t SkSwizzle_RB(uint32_t c) { static const uint32_t kRBMask = (0xFF << SK_R32_SHIFT) | (0xFF << SK_B32_SHIFT); - + unsigned c0 = (c >> SK_R32_SHIFT) & 0xFF; unsigned c1 = (c >> SK_B32_SHIFT) & 0xFF; return (c & ~kRBMask) | (c0 << SK_B32_SHIFT) | (c1 << SK_R32_SHIFT); -- cgit v1.2.3