1 
2 /*
3  * Copyright 2006 The Android Open Source Project
4  *
5  * Use of this source code is governed by a BSD-style license that can be
6  * found in the LICENSE file.
7  */
8 
9 
10 #include "SkSVGFeColorMatrix.h"
11 #include "SkSVGParser.h"
12 
13 const SkSVGAttribute SkSVGFeColorMatrix::gAttributes[] = {
14     SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_filters),
15     SVG_ATTRIBUTE(result),
16     SVG_ATTRIBUTE(type),
17     SVG_ATTRIBUTE(values)
18 };
19 
DEFINE_SVG_INFO(FeColorMatrix)20 DEFINE_SVG_INFO(FeColorMatrix)
21 
22 void SkSVGFeColorMatrix::translate(SkSVGParser& parser, bool defState) {
23     INHERITED::translate(parser, defState);
24 }
25