diff options
author | brianosman <brianosman@google.com> | 2016-08-17 14:01:05 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-17 14:01:05 -0700 |
commit | 69c166d2ce3f4d2099f35f8e88f1aa56ceeaf960 (patch) | |
tree | b4dd37edab6952e67c7362a247014016abac37a5 /src/pdf | |
parent | a7eaf2e7e84ff10d1ed76b5d1e039c1a2d931392 (diff) |
Add alphaType() to SkImage
Keep isOpaque as a convenience method -- many places really only need to
know that for optimization purposes (SrcOver -> Src, etc...).
In all the places where we pull data back out or convert to another
object and need to supply an SkImageInfo, we can avoid losing information
about premulness.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2250663002
Review-Url: https://codereview.chromium.org/2250663002
Diffstat (limited to 'src/pdf')
-rw-r--r-- | src/pdf/SkPDFBitmap.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pdf/SkPDFBitmap.cpp b/src/pdf/SkPDFBitmap.cpp index 887bca4ab0..772745ca50 100644 --- a/src/pdf/SkPDFBitmap.cpp +++ b/src/pdf/SkPDFBitmap.cpp @@ -32,8 +32,7 @@ void image_get_ro_pixels(const SkImage* image, SkBitmap* dst) { } } // no pixels or wrong size: fill with zeros. - SkAlphaType at = image->isOpaque() ? kOpaque_SkAlphaType : kPremul_SkAlphaType; - dst->setInfo(SkImageInfo::MakeN32(image->width(), image->height(), at)); + dst->setInfo(SkImageInfo::MakeN32(image->width(), image->height(), image->alphaType())); } bool image_compute_is_opaque(const SkImage* image) { |