| 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 "SkSVGMask.h" | |
| 10 #include "SkSVGParser.h" | |
| 11 | |
| 12 const SkSVGAttribute SkSVGMask::gAttributes[] = { | |
| 13 SVG_ATTRIBUTE(height), | |
| 14 SVG_ATTRIBUTE(maskUnits), | |
| 15 SVG_ATTRIBUTE(width), | |
| 16 SVG_ATTRIBUTE(x), | |
| 17 SVG_ATTRIBUTE(y) | |
| 18 }; | |
| 19 | |
| 20 DEFINE_SVG_INFO(Mask) | |
| 21 | |
| 22 bool SkSVGMask::isDef() { | |
| 23 return false; | |
| 24 } | |
| 25 | |
| 26 bool SkSVGMask::isNotDef() { | |
| 27 return false; | |
| 28 } | |
| 29 | |
| 30 void SkSVGMask::translate(SkSVGParser& parser, bool defState) { | |
| 31 INHERITED::translate(parser, defState); | |
| 32 } | |
| OLD | NEW |