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-11-14 07:02:31 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-14 07:02:31 +0000
commit73a5d53d96cb7a0b4214e273ed147d401e31ea16 (patch)
treed83a497c5dbcfe2859fddc775c5d8eb2b71b8441 /include/core
parent94f689afde8866d34a4ebd7515b298559f697e3b (diff)
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@12283 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkDevice.h2
-rw-r--r--include/core/SkImageInfo.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/include/core/SkDevice.h b/include/core/SkDevice.h
index b1f430ec77..d63af0424a 100644
--- a/include/core/SkDevice.h
+++ b/include/core/SkDevice.h
@@ -88,7 +88,7 @@ public:
const SkIPoint& origin = this->getOrigin();
bounds->setXYWH(origin.x(), origin.y(), this->width(), this->height());
}
-
+
/** Returns true if the device's bitmap's config treats every pixel as
implicitly opaque.
diff --git a/include/core/SkImageInfo.h b/include/core/SkImageInfo.h
index 270ff01992..c22249b842 100644
--- a/include/core/SkImageInfo.h
+++ b/include/core/SkImageInfo.h
@@ -20,7 +20,7 @@ enum SkAlphaType {
* in their alpha field, but intended the RGB to be treated as opaque.
*/
kIgnore_SkAlphaType,
-
+
/**
* All pixels are stored as opaque. This differs slightly from kIgnore in
* that kOpaque has correct "opaque" values stored in the pixels, while
@@ -28,13 +28,13 @@ enum SkAlphaType {
* as opaque.
*/
kOpaque_SkAlphaType,
-
+
/**
* All pixels have their alpha premultiplied in their color components.
* This is the natural format for the rendering target pixels.
*/
kPremul_SkAlphaType,
-
+
/**
* All pixels have their color components stored without any regard to the
* alpha. e.g. this is the default configuration for PNG images.
@@ -43,7 +43,7 @@ enum SkAlphaType {
* generate this on output.
*/
kUnpremul_SkAlphaType,
-
+
kLastEnum_SkAlphaType = kUnpremul_SkAlphaType
};