commit | 73d57bf4e814a47c2174d6f890e669ecb27db701 | [log] [tgz] |
---|---|---|
author | Florin Malita <fmalita@chromium.org> | Fri Jan 15 08:58:09 2021 -0500 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Fri Jan 15 15:19:40 2021 +0000 |
tree | 949cc04a0a4a03764cfec0b08e922e9f1a7ee44b | |
parent | 6a1a98c313bfbe24fa140b3ccba0af23676d5bea [diff] [blame] |
[svg] Add support for mask color-interpolation https://www.w3.org/TR/SVG11/painting.html#ColorInterpolationProperty Bug: skia:10842 Change-Id: I3e97577ee257c9afe64d924c768c85badbfab07d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/354220 Commit-Queue: Florin Malita <fmalita@google.com> Reviewed-by: Tyler Denniston <tdenniston@google.com>
diff --git a/modules/svg/src/SkSVGNode.cpp b/modules/svg/src/SkSVGNode.cpp index f87160c..fd2a4e3 100644 --- a/modules/svg/src/SkSVGNode.cpp +++ b/modules/svg/src/SkSVGNode.cpp
@@ -91,6 +91,7 @@ return PARSE_AND_SET( "clip-path" , ClipPath) || PARSE_AND_SET("clip-rule" , ClipRule) || PARSE_AND_SET("color" , Color) + || PARSE_AND_SET("color-interpolation" , ColorInterpolation) || PARSE_AND_SET("color-interpolation-filters", ColorInterpolationFilters) || PARSE_AND_SET("fill" , Fill) || PARSE_AND_SET("fill-opacity" , FillOpacity)