| Index: src/effects/SkMatrixConvolutionImageFilter.cpp
|
| diff --git a/src/effects/SkMatrixConvolutionImageFilter.cpp b/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| index e58eec10f4e25d99c2fff2a262b232ea9bbda72b..5cbcc9c5054064c4668fd396e0f2df5347f708ea 100644
|
| --- a/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| +++ b/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| @@ -355,7 +355,7 @@ static GrTextureDomain::Mode convert_tilemodes(
|
| bool SkMatrixConvolutionImageFilter::asFragmentProcessor(GrFragmentProcessor** fp,
|
| GrTexture* texture,
|
| const SkMatrix&,
|
| - const SkIRect& bounds) const {
|
| + const SkIRect& bounds, GrRenderTarget* dst) const {
|
| if (!fp) {
|
| return fKernelSize.width() * fKernelSize.height() <= MAX_KERNEL_SIZE;
|
| }
|
| @@ -368,7 +368,7 @@ bool SkMatrixConvolutionImageFilter::asFragmentProcessor(GrFragmentProcessor** f
|
| fBias,
|
| fKernelOffset,
|
| convert_tilemodes(fTileMode),
|
| - fConvolveAlpha);
|
| + fConvolveAlpha, dst);
|
| return true;
|
| }
|
| #endif
|
|
|