OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * 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 |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef SkStippleMaskFilter_DEFINED | 8 #ifndef SkStippleMaskFilter_DEFINED |
9 #define SkStippleMaskFilter_DEFINED | 9 #define SkStippleMaskFilter_DEFINED |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 virtual bool filterMask(SkMask* dst, const SkMask& src, | 22 virtual bool filterMask(SkMask* dst, const SkMask& src, |
23 const SkMatrix& matrix, | 23 const SkMatrix& matrix, |
24 SkIPoint* margin) const SK_OVERRIDE; | 24 SkIPoint* margin) const SK_OVERRIDE; |
25 | 25 |
26 // getFormat is from SkMaskFilter | 26 // getFormat is from SkMaskFilter |
27 virtual SkMask::Format getFormat() const SK_OVERRIDE { | 27 virtual SkMask::Format getFormat() const SK_OVERRIDE { |
28 return SkMask::kA8_Format; | 28 return SkMask::kA8_Format; |
29 } | 29 } |
30 | 30 |
31 SkDEVCODE(virtual void toString(SkString* str) const SK_OVERRIDE;) | 31 SK_TO_STRING_OVERRIDE() |
32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkStippleMaskFilter); | 32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkStippleMaskFilter); |
33 | 33 |
34 protected: | 34 protected: |
35 SkStippleMaskFilter(SkReadBuffer& buffer) | 35 SkStippleMaskFilter(SkReadBuffer& buffer) |
36 : SkMaskFilter(buffer) { | 36 : SkMaskFilter(buffer) { |
37 } | 37 } |
38 | 38 |
39 #ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS | 39 #ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS |
40 public: | 40 public: |
41 #endif | 41 #endif |
42 SkStippleMaskFilter() : INHERITED() { | 42 SkStippleMaskFilter() : INHERITED() { |
43 } | 43 } |
44 | 44 |
45 private: | 45 private: |
46 typedef SkMaskFilter INHERITED; | 46 typedef SkMaskFilter INHERITED; |
47 }; | 47 }; |
48 | 48 |
49 #endif // SkStippleMaskFilter_DEFINED | 49 #endif // SkStippleMaskFilter_DEFINED |
OLD | NEW |