aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-04 07:02:26 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-04 07:02:26 +0000
commit6e515d67d2365ecd05fb80762eeb76c55e81368c (patch)
tree89e8a22cfcf88ff1db9db5ebe3bdebf4fbfdc685 /include
parente76a3225d5d791a631f70a6a45f6772721710eee (diff)
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@12477 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/core/SkPathRef.h2
-rw-r--r--include/gpu/GrTypes.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkPathRef.h b/include/core/SkPathRef.h
index fd9b339302..5d55c72ced 100644
--- a/include/core/SkPathRef.h
+++ b/include/core/SkPathRef.h
@@ -133,7 +133,7 @@ public:
* optimization for performance and so some paths that are in
* fact ovals can report false.
*/
- bool isOval(SkRect* rect) const {
+ bool isOval(SkRect* rect) const {
if (fIsOval && NULL != rect) {
*rect = getBounds();
}
diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h
index 67dcf518e7..0bb432d663 100644
--- a/include/gpu/GrTypes.h
+++ b/include/gpu/GrTypes.h
@@ -252,7 +252,7 @@ static inline int GrMaskFormatBytesPerPixel(GrMaskFormat format) {
// kA8 (0) -> 1
// kA565 (1) -> 2
// kA888 (2) -> 4
- // kARGB (3) -> 4
+ // kARGB (3) -> 4
static const int sBytesPerPixel[] = { 1, 2, 4, 4 };
SK_COMPILE_ASSERT(SK_ARRAY_COUNT(sBytesPerPixel) == kMaskFormatCount, array_size_mismatch);