Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: include/effects/SkStippleMaskFilter.h

Issue 173633003: Factory methods for heap-allocated SkMaskFilter objects. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add SkTableMaskFilter::Create(table) and remove deprecated SkEmbossMaskFilter constructor. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/effects/SkKernel33MaskFilter.h ('k') | include/effects/SkTableMaskFilter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « include/effects/SkKernel33MaskFilter.h ('k') | include/effects/SkTableMaskFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698