diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-15 07:01:43 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-15 07:01:43 +0000 |
commit | d77b3ecd92befc255bfb60b3ed2c79962a83a2e5 (patch) | |
tree | 6f4ea1fe3413aec36b3117230527ff9f871da976 /include/core | |
parent | a612d4c5134655fe6703c8d2f63be710aa1e2767 (diff) |
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@13083 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkImageInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkImageInfo.h b/include/core/SkImageInfo.h index e37f2ef6d9..d389d5e00a 100644 --- a/include/core/SkImageInfo.h +++ b/include/core/SkImageInfo.h @@ -142,14 +142,14 @@ struct SkImageInfo { }; return info; } - + /** * Sets colortype to the native ARGB32 type, and the alphatype to premul. */ static SkImageInfo MakeN32Premul(const SkISize& size) { return MakeN32Premul(size.width(), size.height()); } - + static SkImageInfo MakeA8(int width, int height) { SkASSERT(width >= 0); SkASSERT(height >= 0); @@ -158,7 +158,7 @@ struct SkImageInfo { }; return info; } - + bool isOpaque() const { return SkAlphaTypeIsOpaque(fAlphaType); } |