| 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 "SkSVGFilter.h" | |
| 10 #include "SkSVGParser.h" | |
| 11 | |
| 12 const SkSVGAttribute SkSVGFilter::gAttributes[] = { | |
| 13 SVG_ATTRIBUTE(filterUnits), | |
| 14 SVG_ATTRIBUTE(height), | |
| 15 SVG_ATTRIBUTE(width), | |
| 16 SVG_ATTRIBUTE(x), | |
| 17 SVG_ATTRIBUTE(y) | |
| 18 }; | |
| 19 | |
| 20 DEFINE_SVG_INFO(Filter) | |
| 21 | |
| 22 void SkSVGFilter::translate(SkSVGParser& parser, bool defState) { | |
| 23 // INHERITED::translate(parser, defState); | |
| 24 } | |
| OLD | NEW |