| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
| 9 #include "SkMatrix.h" | 9 #include "SkMatrix.h" |
| 10 #include "SkSVGNode.h" | 10 #include "SkSVGNode.h" |
| 11 #include "SkSVGRenderContext.h" | 11 #include "SkSVGRenderContext.h" |
| 12 #include "SkSVGValue.h" | 12 #include "SkSVGValue.h" |
| 13 #include "SkTLazy.h" | 13 #include "SkTLazy.h" |
| 14 | 14 |
| 15 SkSVGNode::SkSVGNode(SkSVGTag t) : fTag(t) { } | 15 SkSVGNode::SkSVGNode(SkSVGTag t) : fTag(t) { } |
| 16 | 16 |
| 17 SkSVGNode::~SkSVGNode() { } | 17 SkSVGNode::~SkSVGNode() { } |
| 18 | 18 |
| 19 void SkSVGNode::render(SkCanvas* canvas) const { | |
| 20 this->render(canvas, SkSVGRenderContext()); | |
| 21 } | |
| 22 | |
| 23 void SkSVGNode::render(SkCanvas* canvas, const SkSVGRenderContext& ctx) const { | 19 void SkSVGNode::render(SkCanvas* canvas, const SkSVGRenderContext& ctx) const { |
| 24 SkTCopyOnFirstWrite<SkSVGRenderContext> localContext(ctx); | 20 SkTCopyOnFirstWrite<SkSVGRenderContext> localContext(ctx); |
| 25 fPresentationAttributes.applyTo(localContext); | 21 fPresentationAttributes.applyTo(localContext); |
| 26 | 22 |
| 27 SkAutoCanvasRestore acr(canvas, false); | 23 SkAutoCanvasRestore acr(canvas, false); |
| 28 const SkMatrix& m = this->onLocalMatrix(); | 24 const SkMatrix& m = this->onLocalMatrix(); |
| 29 if (!m.isIdentity()) { | 25 if (!m.isIdentity()) { |
| 30 canvas->save(); | 26 canvas->save(); |
| 31 canvas->concat(m); | 27 canvas->concat(m); |
| 32 } | 28 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 44 if (const SkSVGColorValue* color = v.as<SkSVGColorValue>()) { | 40 if (const SkSVGColorValue* color = v.as<SkSVGColorValue>()) { |
| 45 fPresentationAttributes.setFill(*color); | 41 fPresentationAttributes.setFill(*color); |
| 46 } | 42 } |
| 47 break; | 43 break; |
| 48 case SkSVGAttribute::kStroke: | 44 case SkSVGAttribute::kStroke: |
| 49 if (const SkSVGColorValue* color = v.as<SkSVGColorValue>()) { | 45 if (const SkSVGColorValue* color = v.as<SkSVGColorValue>()) { |
| 50 fPresentationAttributes.setStroke(*color); | 46 fPresentationAttributes.setStroke(*color); |
| 51 } | 47 } |
| 52 break; | 48 break; |
| 53 default: | 49 default: |
| 50 SkDebugf("attribute ID <%d> ignored for node <%d>\n", attr, fTag); |
| 54 break; | 51 break; |
| 55 } | 52 } |
| 56 } | 53 } |
| 57 | 54 |
| 58 const SkMatrix& SkSVGNode::onLocalMatrix() const { | 55 const SkMatrix& SkSVGNode::onLocalMatrix() const { |
| 59 return SkMatrix::I(); | 56 return SkMatrix::I(); |
| 60 } | 57 } |
| OLD | NEW |