aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/svg/model/SkSVGContainer.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/SkSVGContainer.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/SkSVGContainer.cpp')
-rw-r--r--experimental/svg/model/SkSVGContainer.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/experimental/svg/model/SkSVGContainer.cpp b/experimental/svg/model/SkSVGContainer.cpp
index 4f91b30bab..af19608d25 100644
--- a/experimental/svg/model/SkSVGContainer.cpp
+++ b/experimental/svg/model/SkSVGContainer.cpp
@@ -14,6 +14,10 @@ void SkSVGContainer::appendChild(sk_sp<SkSVGNode> node) {
fChildren.push_back(std::move(node));
}
+bool SkSVGContainer::hasChildren() const {
+ return !fChildren.empty();
+}
+
void SkSVGContainer::onRender(const SkSVGRenderContext& ctx) const {
for (int i = 0; i < fChildren.count(); ++i) {
fChildren[i]->render(ctx);