| Index: src/effects/SkColorFilterImageFilter.cpp
|
| diff --git a/src/effects/SkColorFilterImageFilter.cpp b/src/effects/SkColorFilterImageFilter.cpp
|
| index 0a4a693ab0ce71e0272bbf251e548a734b1c774f..d9abdc58d67b2ae909e26c4299d8ac62876e51bf 100755
|
| --- a/src/effects/SkColorFilterImageFilter.cpp
|
| +++ b/src/effects/SkColorFilterImageFilter.cpp
|
| @@ -133,13 +133,13 @@ SkColorFilterImageFilter::~SkColorFilterImageFilter() {
|
| fColorFilter->unref();
|
| }
|
|
|
| -bool SkColorFilterImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source,
|
| +bool SkColorFilterImageFilter::onFilterImage(Proxy* proxy, const SkImage* source,
|
| const Context& ctx,
|
| - SkBitmap* result,
|
| + SkAutoTUnref<const SkImage>& result,
|
| SkIPoint* offset) const {
|
| - SkBitmap src = source;
|
| + SkAutoTUnref<const SkImage> src(SkRef(source));
|
| SkIPoint srcOffset = SkIPoint::Make(0, 0);
|
| - if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
| + if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, src, &srcOffset)) {
|
| return false;
|
| }
|
|
|
| @@ -157,9 +157,13 @@ bool SkColorFilterImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& sourc
|
|
|
| paint.setXfermodeMode(SkXfermode::kSrc_Mode);
|
| paint.setColorFilter(fColorFilter);
|
| - canvas.drawSprite(src, srcOffset.fX - bounds.fLeft, srcOffset.fY - bounds.fTop, &paint);
|
| + canvas.drawSprite(*src, srcOffset.fX - bounds.fLeft, srcOffset.fY - bounds.fTop, &paint);
|
| + SkImage* image = device->newImageSnapshot();
|
| + if (NULL == image) {
|
| + return false;
|
| + }
|
| + result.reset(image);
|
|
|
| - *result = device.get()->accessBitmap(false);
|
| offset->fX = bounds.fLeft;
|
| offset->fY = bounds.fTop;
|
| return true;
|
|
|