diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-05-03 07:01:00 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-05-03 07:01:00 +0000 |
commit | 2fd42c471c77f54ace35c13975651e17d5b2e8c6 (patch) | |
tree | 9a1d57b8fda4e9caaa66c28df9660b1c1d55c4ed /include | |
parent | f77b35d86ad439917bda78334deb31fbcc16cdae (diff) |
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@8976 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkMask.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkMask.h b/include/core/SkMask.h index 4cf3ae7307..71551842bb 100644 --- a/include/core/SkMask.h +++ b/include/core/SkMask.h @@ -98,7 +98,7 @@ struct SkMask { uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes); return row + (x - fBounds.fLeft); } - + /** * Return the address of the specified 32bit mask. In the debug build, * this asserts that the mask's format is 32bits, and that (x,y) @@ -111,7 +111,7 @@ struct SkMask { uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes); return row + (x - fBounds.fLeft); } - + /** * Returns the address of the specified pixel, computing the pixel-size * at runtime based on the mask format. This will be slightly slower than |