| Index: third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| index 9696a29fba0e879e4a5fa423fe3afd6373ddf747..380a088490a741d827efc40a603572958f7a19ef 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| @@ -153,8 +153,8 @@ bool FEColorMatrix::AffectsTransparentPixels() const {
|
| }
|
|
|
| sk_sp<SkImageFilter> FEColorMatrix::CreateImageFilter() {
|
| - sk_sp<SkImageFilter> input(
|
| - SkiaImageFilterBuilder::Build(InputEffect(0), OperatingColorSpace()));
|
| + sk_sp<SkImageFilter> input(SkiaImageFilterBuilder::Build(
|
| + InputEffect(0), OperatingInterpolationSpace()));
|
| sk_sp<SkColorFilter> filter = CreateColorFilter(type_, values_);
|
| SkImageFilter::CropRect rect = GetCropRect();
|
| return SkColorFilterImageFilter::Make(std::move(filter), std::move(input),
|
|
|