| 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 5ba109a154ce8cb7c4e277e1881a3061d6189134..773256212520330bd750d4e0c40e16690e16906f 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp
|
| @@ -141,8 +141,8 @@ sk_sp<SkImageFilter> FEConvolveMatrix::CreateImageFilter() {
|
| if (!ParametersValid())
|
| return CreateTransparentBlack();
|
|
|
| - sk_sp<SkImageFilter> input(
|
| - SkiaImageFilterBuilder::Build(InputEffect(0), OperatingColorSpace()));
|
| + sk_sp<SkImageFilter> input(SkiaImageFilterBuilder::Build(
|
| + InputEffect(0), OperatingInterpolationSpace()));
|
| SkISize kernel_size(
|
| SkISize::Make(kernel_size_.Width(), kernel_size_.Height()));
|
| // parametersValid() above checks that the kernel area fits in int.
|
|
|