| Index: src/effects/SkMatrixConvolutionImageFilter.cpp
|
| diff --git a/src/effects/SkMatrixConvolutionImageFilter.cpp b/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| index 70e6740755c75ac0c0c491e41d99e28eb8b167ec..92ac934559fcd3a4ee1f285a4b5033efb9243a9b 100644
|
| --- a/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| +++ b/src/effects/SkMatrixConvolutionImageFilter.cpp
|
| @@ -348,7 +348,7 @@ static GrTextureDomain::Mode convert_tilemodes(
|
| }
|
|
|
| bool SkMatrixConvolutionImageFilter::asFragmentProcessor(GrFragmentProcessor** fp,
|
| - GrProcessorDataManager*,
|
| + GrProcessorDataManager* procDataManager,
|
| GrTexture* texture,
|
| const SkMatrix&,
|
| const SkIRect& bounds) const {
|
| @@ -356,7 +356,8 @@ bool SkMatrixConvolutionImageFilter::asFragmentProcessor(GrFragmentProcessor** f
|
| return fKernelSize.width() * fKernelSize.height() <= MAX_KERNEL_SIZE;
|
| }
|
| SkASSERT(fKernelSize.width() * fKernelSize.height() <= MAX_KERNEL_SIZE);
|
| - *fp = GrMatrixConvolutionEffect::Create(texture,
|
| + *fp = GrMatrixConvolutionEffect::Create(procDataManager,
|
| + texture,
|
| bounds,
|
| fKernelSize,
|
| fKernel,
|
|
|