aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/svg/model/SkSVGNode.cpp
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2016-09-20 12:44:31 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-20 12:44:31 -0700
commit3dbb7b9f196d793fbd16243157ee67638891f5dc (patch)
treec575977859fd4a8766ccdace6d3d7d269868e28d /experimental/svg/model/SkSVGNode.cpp
parent15ba6d9e965b4d49f04dae5ff4f1ba7d54dd6c56 (diff)
[SVGDom] Opacity optimization
Apply opacity as fill/stroke paint alpha instead of saveLayer, when possible. R=robertphillips@google.com,stephana@google.com,reed@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2353503005 Review-Url: https://codereview.chromium.org/2353503005
Diffstat (limited to 'experimental/svg/model/SkSVGNode.cpp')
-rw-r--r--experimental/svg/model/SkSVGNode.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/experimental/svg/model/SkSVGNode.cpp b/experimental/svg/model/SkSVGNode.cpp
index 012c7d2277..f40ee5dadb 100644
--- a/experimental/svg/model/SkSVGNode.cpp
+++ b/experimental/svg/model/SkSVGNode.cpp
@@ -31,7 +31,8 @@ bool SkSVGNode::asPaint(const SkSVGRenderContext& ctx, SkPaint* paint) const {
}
bool SkSVGNode::onPrepareToRender(SkSVGRenderContext* ctx) const {
- ctx->applyPresentationAttributes(fPresentationAttributes);
+ ctx->applyPresentationAttributes(fPresentationAttributes,
+ this->hasChildren() ? 0 : SkSVGRenderContext::kLeaf);
return true;
}