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

Unified Diff: src/core/SkImageFilter.cpp

Issue 1899263002: post apply non-scale transforms after imagefilters have run (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fission out gm to separate pre-CL Created 4 years, 8 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: src/core/SkImageFilter.cpp
diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp
index d73934cd38759d968acc185781c2e21750eb9336..5065406de088ed2a7848fb3b8e038f7a8ed71ea6 100644
--- a/src/core/SkImageFilter.cpp
+++ b/src/core/SkImageFilter.cpp
@@ -502,8 +502,9 @@ SkImageFilter::Context SkImageFilter::mapContext(const Context& ctx) const {
sk_sp<SkImageFilter> SkImageFilter::MakeMatrixFilter(const SkMatrix& matrix,
SkFilterQuality filterQuality,
+ bool doAntiAlias,
sk_sp<SkImageFilter> input) {
- return SkMatrixImageFilter::Make(matrix, filterQuality, std::move(input));
+ return SkMatrixImageFilter::Make(matrix, filterQuality, doAntiAlias, std::move(input));
}
sk_sp<SkImageFilter> SkImageFilter::makeWithLocalMatrix(const SkMatrix& matrix) const {

Powered by Google App Engine
This is Rietveld 408576698