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 "SkSVGMask.h" | 9 #include "SkSVGMask.h" |
11 #include "SkSVGParser.h" | 10 #include "SkSVGParser.h" |
(...skipping 12 matching lines...) Expand all Loading... |
24 return false; | 23 return false; |
25 } | 24 } |
26 | 25 |
27 bool SkSVGMask::isNotDef() { | 26 bool SkSVGMask::isNotDef() { |
28 return false; | 27 return false; |
29 } | 28 } |
30 | 29 |
31 void SkSVGMask::translate(SkSVGParser& parser, bool defState) { | 30 void SkSVGMask::translate(SkSVGParser& parser, bool defState) { |
32 INHERITED::translate(parser, defState); | 31 INHERITED::translate(parser, defState); |
33 } | 32 } |
OLD | NEW |