| Index: third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp
|
| index 585cce045032888fb588166ca86e782fd5564437..cbaebda358615c27d1986d0d6ef5d73659ef3543 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp
|
| @@ -152,7 +152,7 @@ PassRefPtr<SkImageFilter> FEConvolveMatrix::createImageFilter(SkiaImageFilterBui
|
| OwnPtr<SkScalar[]> kernel = adoptArrayPtr(new SkScalar[numElements]);
|
| for (int i = 0; i < numElements; ++i)
|
| kernel[i] = SkFloatToScalar(m_kernelMatrix[numElements - 1 - i]);
|
| - SkImageFilter::CropRect cropRect = getCropRect(builder.cropOffset());
|
| + SkImageFilter::CropRect cropRect = getCropRect();
|
| return adoptRef(SkMatrixConvolutionImageFilter::Create(kernelSize, kernel.get(), gain, bias, target, tileMode, convolveAlpha, input.get(), &cropRect));
|
| }
|
|
|
|
|