summaryrefslogtreecommitdiff
path: root/svg/SkSVGFeColorMatrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'svg/SkSVGFeColorMatrix.cpp')
-rw-r--r--svg/SkSVGFeColorMatrix.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/svg/SkSVGFeColorMatrix.cpp b/svg/SkSVGFeColorMatrix.cpp
new file mode 100644
index 00000000..4e2d32a1
--- /dev/null
+++ b/svg/SkSVGFeColorMatrix.cpp
@@ -0,0 +1,24 @@
+
+/*
+ * Copyright 2006 The Android Open Source Project
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+
+#include "SkSVGFeColorMatrix.h"
+#include "SkSVGParser.h"
+
+const SkSVGAttribute SkSVGFeColorMatrix::gAttributes[] = {
+ SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_filters),
+ SVG_ATTRIBUTE(result),
+ SVG_ATTRIBUTE(type),
+ SVG_ATTRIBUTE(values)
+};
+
+DEFINE_SVG_INFO(FeColorMatrix)
+
+void SkSVGFeColorMatrix::translate(SkSVGParser& parser, bool defState) {
+ INHERITED::translate(parser, defState);
+}