aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
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);