| Index: src/effects/SkMatrixConvolutionImageFilter.cpp
|
| diff --git a/src/effects/SkMatrixConvolutionImageFilter.cpp b/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| index 51e3b6faa72f6af926c98d3d181a97a60263c58e..f5d9a3f7d220e2fd01b6a964334be0799c4b7720 100644
|
| --- a/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| +++ b/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| @@ -329,7 +329,7 @@ sk_sp<SkSpecialImage> SkMatrixConvolutionImageFilter::onFilterImage(SkSpecialIma
|
| return nullptr;
|
| }
|
|
|
| - return DrawWithFP(context, std::move(fp), bounds, source->internal_getProxy());
|
| + return DrawWithFP(context, std::move(fp), bounds);
|
| }
|
| #endif
|
|
|
| @@ -381,8 +381,7 @@ sk_sp<SkSpecialImage> SkMatrixConvolutionImageFilter::onFilterImage(SkSpecialIma
|
| this->filterInteriorPixels(inputBM, &dst, interior, bounds);
|
| this->filterBorderPixels(inputBM, &dst, right, bounds);
|
| this->filterBorderPixels(inputBM, &dst, bottom, bounds);
|
| - return SkSpecialImage::MakeFromRaster(source->internal_getProxy(),
|
| - SkIRect::MakeWH(bounds.width(), bounds.height()),
|
| + return SkSpecialImage::MakeFromRaster(SkIRect::MakeWH(bounds.width(), bounds.height()),
|
| dst);
|
| }
|
|
|
|
|