| 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 |
| 11 #include "SkMaskFilter.h" | 11 #include "SkMaskFilter.h" |
| 12 | 12 |
| 13 /** | 13 /** |
| 14 * Simple MaskFilter that creates a screen door stipple pattern. | 14 * Simple MaskFilter that creates a screen door stipple pattern. |
| 15 */ | 15 */ |
| 16 class SK_API SkStippleMaskFilter : public SkMaskFilter { | 16 class SK_API SkStippleMaskFilter : public SkMaskFilter { |
| 17 public: | 17 public: |
| 18 SkStippleMaskFilter() : INHERITED() { | 18 static SkStippleMaskFilter* Create() { |
| 19 return SkNEW(SkStippleMaskFilter); |
| 19 } | 20 } |
| 20 | 21 |
| 21 virtual bool filterMask(SkMask* dst, const SkMask& src, | 22 virtual bool filterMask(SkMask* dst, const SkMask& src, |
| 22 const SkMatrix& matrix, | 23 const SkMatrix& matrix, |
| 23 SkIPoint* margin) const SK_OVERRIDE; | 24 SkIPoint* margin) const SK_OVERRIDE; |
| 24 | 25 |
| 25 // getFormat is from SkMaskFilter | 26 // getFormat is from SkMaskFilter |
| 26 virtual SkMask::Format getFormat() const SK_OVERRIDE { | 27 virtual SkMask::Format getFormat() const SK_OVERRIDE { |
| 27 return SkMask::kA8_Format; | 28 return SkMask::kA8_Format; |
| 28 } | 29 } |
| 29 | 30 |
| 30 SkDEVCODE(virtual void toString(SkString* str) const SK_OVERRIDE;) | 31 SkDEVCODE(virtual void toString(SkString* str) const SK_OVERRIDE;) |
| 31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkStippleMaskFilter); | 32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkStippleMaskFilter); |
| 32 | 33 |
| 33 protected: | 34 protected: |
| 34 SkStippleMaskFilter(SkReadBuffer& buffer) | 35 SkStippleMaskFilter(SkReadBuffer& buffer) |
| 35 : SkMaskFilter(buffer) { | 36 : SkMaskFilter(buffer) { |
| 36 } | 37 } |
| 37 | 38 |
| 39 #ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS |
| 40 public: |
| 41 #endif |
| 42 SkStippleMaskFilter() : INHERITED() { |
| 43 } |
| 44 |
| 38 private: | 45 private: |
| 39 typedef SkMaskFilter INHERITED; | 46 typedef SkMaskFilter INHERITED; |
| 40 }; | 47 }; |
| 41 | 48 |
| 42 #endif // SkStippleMaskFilter_DEFINED | 49 #endif // SkStippleMaskFilter_DEFINED |
| OLD | NEW |