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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.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/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),

Powered by Google App Engine
This is Rietveld 408576698