Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(823)

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.cpp

Issue 2884313002: color: Rename blink::ColorSpace to blink::InterpolationSpace (Closed)
Patch Set: Incorporate review feedback Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698