| Index: src/effects/SkAlphaThresholdFilter.cpp
|
| diff --git a/src/effects/SkAlphaThresholdFilter.cpp b/src/effects/SkAlphaThresholdFilter.cpp
|
| index 0d16ec685ed4f1ee57c994e0e976e5674c3794fb..bf2a3fda1c1998d6256925d8637a8c9f253e20a7 100644
|
| --- a/src/effects/SkAlphaThresholdFilter.cpp
|
| +++ b/src/effects/SkAlphaThresholdFilter.cpp
|
| @@ -187,7 +187,7 @@ sk_sp<SkSpecialImage> SkAlphaThresholdFilterImpl::onFilterImage(SkSpecialImage*
|
| return nullptr;
|
| }
|
|
|
| - return DrawWithFP(context, std::move(fp), bounds, source->internal_getProxy());
|
| + return DrawWithFP(context, std::move(fp), bounds);
|
| }
|
| #endif
|
|
|
| @@ -262,8 +262,7 @@ sk_sp<SkSpecialImage> SkAlphaThresholdFilterImpl::onFilterImage(SkSpecialImage*
|
|
|
| offset->fX = bounds.left();
|
| offset->fY = bounds.top();
|
| - return SkSpecialImage::MakeFromRaster(source->internal_getProxy(),
|
| - SkIRect::MakeWH(bounds.width(), bounds.height()),
|
| + return SkSpecialImage::MakeFromRaster(SkIRect::MakeWH(bounds.width(), bounds.height()),
|
| dst);
|
| }
|
|
|
|
|