aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-05-03 07:01:00 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-05-03 07:01:00 +0000
commit2fd42c471c77f54ace35c13975651e17d5b2e8c6 (patch)
tree9a1d57b8fda4e9caaa66c28df9660b1c1d55c4ed /include/core
parentf77b35d86ad439917bda78334deb31fbcc16cdae (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/core')
-rw-r--r--include/core/SkMask.h4
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