OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2006 The Android Open Source Project | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 | |
9 #include "SkSVGUse.h" | |
10 #include "SkSVGParser.h" | |
11 | |
12 const SkSVGAttribute SkSVGUse::gAttributes[] = { | |
13 SVG_ATTRIBUTE(height), | |
14 SVG_ATTRIBUTE(width), | |
15 SVG_ATTRIBUTE(x), | |
16 SVG_LITERAL_ATTRIBUTE(xlink:href, f_xlink_href), | |
17 SVG_ATTRIBUTE(y) | |
18 }; | |
19 | |
20 DEFINE_SVG_INFO(Use) | |
21 | |
22 void SkSVGUse::translate(SkSVGParser& parser, bool defState) { | |
23 INHERITED::translate(parser, defState); | |
24 parser._startElement("add"); | |
25 const char* start = strchr(f_xlink_href.c_str(), '#') + 1; | |
26 SkASSERT(start); | |
27 parser._addAttributeLen("use", start, strlen(start) - 1); | |
28 parser._endElement(); // clip | |
29 } | |
OLD | NEW |