diff options
author | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-02-17 14:42:22 +0000 |
---|---|---|
committer | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-02-17 14:42:22 +0000 |
commit | 543c719a6d2d8f27f125cb5cb02aaa9c2e563bfd (patch) | |
tree | b7062d2420af0dda959f67f1d51907d429d164eb /src/core | |
parent | 6c5bf8d9fe6fe263f583a4c22d04e3be879ecfeb (diff) |
Revert r3036. This change breaks loading images as
described in Chromium issue 114107. The Chromium break
may be fixed by WebKit patch 78239, at which time
this patch can be reapplied.
Review URL: https://codereview.appspot.com/5675077
git-svn-id: http://skia.googlecode.com/svn/trunk@3219 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkBitmap.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/SkBitmap.cpp b/src/core/SkBitmap.cpp index 9a21320620..58d0bd868f 100644 --- a/src/core/SkBitmap.cpp +++ b/src/core/SkBitmap.cpp @@ -821,7 +821,6 @@ bool SkBitmap::extractSubset(SkBitmap* result, const SkIRect& subset) const { SkBitmap dst; dst.setConfig(this->config(), r.width(), r.height(), this->rowBytes()); - dst.setIsOpaque(this->isOpaque()); dst.setIsVolatile(this->isVolatile()); if (fPixelRef) { |