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

Unified Diff: experimental/svg/model/SkSVGNode.cpp

Issue 2164193002: Initial SVG model (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: warning fix Created 4 years, 5 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
« no previous file with comments | « experimental/svg/model/SkSVGNode.h ('k') | experimental/svg/model/SkSVGPath.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/svg/model/SkSVGNode.cpp
diff --git a/experimental/svg/model/SkSVGNode.cpp b/experimental/svg/model/SkSVGNode.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..2b891792fda12ba0c1c788005c32c802835a7ac8
--- /dev/null
+++ b/experimental/svg/model/SkSVGNode.cpp
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkCanvas.h"
+#include "SkMatrix.h"
+#include "SkSVGNode.h"
+#include "SkSVGRenderContext.h"
+#include "SkSVGValue.h"
+#include "SkTLazy.h"
+
+SkSVGNode::SkSVGNode(SkSVGTag t) : fTag(t) { }
+
+SkSVGNode::~SkSVGNode() { }
+
+void SkSVGNode::render(SkCanvas* canvas) const {
+ this->render(canvas, SkSVGRenderContext());
+}
+
+void SkSVGNode::render(SkCanvas* canvas, const SkSVGRenderContext& ctx) const {
+ SkTCopyOnFirstWrite<SkSVGRenderContext> localContext(ctx);
+ fPresentationAttributes.applyTo(localContext);
+
+ SkAutoCanvasRestore acr(canvas, false);
+ const SkMatrix& m = this->onLocalMatrix();
+ if (!m.isIdentity()) {
+ canvas->save();
+ canvas->concat(m);
+ }
+
+ this->onRender(canvas, *localContext);
+}
+
+void SkSVGNode::setAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
+ this->onSetAttribute(attr, v);
+}
+
+void SkSVGNode::onSetAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
+ switch (attr) {
+ case SkSVGAttribute::fill:
+ if (const SkSVGColorValue* color = v.as<SkSVGColorValue>()) {
+ fPresentationAttributes.setFill(*color);
+ }
+ break;
+ case SkSVGAttribute::stroke:
+ if (const SkSVGColorValue* color = v.as<SkSVGColorValue>()) {
+ fPresentationAttributes.setStroke(*color);
+ }
+ break;
+ default:
+ break;
+ }
+}
+
+const SkMatrix& SkSVGNode::onLocalMatrix() const {
+ return SkMatrix::I();
+}
« no previous file with comments | « experimental/svg/model/SkSVGNode.h ('k') | experimental/svg/model/SkSVGPath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698