OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
4 * | 3 * |
5 * 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 |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 | 8 |
10 #include "SkSVGFeColorMatrix.h" | 9 #include "SkSVGFeColorMatrix.h" |
11 #include "SkSVGParser.h" | 10 #include "SkSVGParser.h" |
12 | 11 |
13 const SkSVGAttribute SkSVGFeColorMatrix::gAttributes[] = { | 12 const SkSVGAttribute SkSVGFeColorMatrix::gAttributes[] = { |
14 SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_fil
ters), | 13 SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_fil
ters), |
15 SVG_ATTRIBUTE(result), | 14 SVG_ATTRIBUTE(result), |
16 SVG_ATTRIBUTE(type), | 15 SVG_ATTRIBUTE(type), |
17 SVG_ATTRIBUTE(values) | 16 SVG_ATTRIBUTE(values) |
18 }; | 17 }; |
19 | 18 |
20 DEFINE_SVG_INFO(FeColorMatrix) | 19 DEFINE_SVG_INFO(FeColorMatrix) |
21 | 20 |
22 void SkSVGFeColorMatrix::translate(SkSVGParser& parser, bool defState) { | 21 void SkSVGFeColorMatrix::translate(SkSVGParser& parser, bool defState) { |
23 INHERITED::translate(parser, defState); | 22 INHERITED::translate(parser, defState); |
24 } | 23 } |
OLD | NEW |