OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
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 SkTableMaskFilter_DEFINED | 8 #ifndef SkTableMaskFilter_DEFINED |
9 #define SkTableMaskFilter_DEFINED | 9 #define SkTableMaskFilter_DEFINED |
10 | 10 |
11 #include "SkMaskFilter.h" | 11 #include "SkMaskFilter.h" |
12 #include "SkScalar.h" | 12 #include "SkScalar.h" |
13 | 13 |
14 /** \class SkTableMaskFilter | 14 /** \class SkTableMaskFilter |
15 | 15 |
16 Applies a table lookup on each of the alpha values in the mask. | 16 Applies a table lookup on each of the alpha values in the mask. |
17 Helper methods create some common tables (e.g. gamma, clipping) | 17 Helper methods create some common tables (e.g. gamma, clipping) |
18 */ | 18 */ |
19 class SK_API SkTableMaskFilter : public SkMaskFilter { | 19 class SK_API SkTableMaskFilter : public SkMaskFilter { |
20 public: | 20 public: |
21 virtual ~SkTableMaskFilter(); | |
22 | |
23 /** Utility that sets the gamma table | 21 /** Utility that sets the gamma table |
24 */ | 22 */ |
25 static void MakeGammaTable(uint8_t table[256], SkScalar gamma); | 23 static void MakeGammaTable(uint8_t table[256], SkScalar gamma); |
26 | 24 |
27 /** Utility that creates a clipping table: clamps values below min to 0 | 25 /** Utility that creates a clipping table: clamps values below min to 0 |
28 and above max to 255, and rescales the remaining into 0..255 | 26 and above max to 255, and rescales the remaining into 0..255 |
29 */ | 27 */ |
30 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max); | 28 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max); |
31 | 29 |
32 static SkTableMaskFilter* Create(const uint8_t table[256]) { | 30 static SkMaskFilter* Create(const uint8_t table[256]) { |
33 return new SkTableMaskFilter(table); | 31 return new SkTableMaskFilter(table); |
34 } | 32 } |
35 | 33 |
36 static SkTableMaskFilter* CreateGamma(SkScalar gamma) { | 34 static SkMaskFilter* CreateGamma(SkScalar gamma) { |
37 uint8_t table[256]; | 35 uint8_t table[256]; |
38 MakeGammaTable(table, gamma); | 36 MakeGammaTable(table, gamma); |
39 return new SkTableMaskFilter(table); | 37 return new SkTableMaskFilter(table); |
40 } | 38 } |
41 | 39 |
42 static SkTableMaskFilter* CreateClip(uint8_t min, uint8_t max) { | 40 static SkMaskFilter* CreateClip(uint8_t min, uint8_t max) { |
43 uint8_t table[256]; | 41 uint8_t table[256]; |
44 MakeClipTable(table, min, max); | 42 MakeClipTable(table, min, max); |
45 return new SkTableMaskFilter(table); | 43 return new SkTableMaskFilter(table); |
46 } | 44 } |
47 | 45 |
48 SkMask::Format getFormat() const override; | 46 SkMask::Format getFormat() const override; |
49 virtual bool filterMask(SkMask*, const SkMask&, const SkMatrix&, | 47 bool filterMask(SkMask*, const SkMask&, const SkMatrix&, SkIPoint*) const ov
erride; |
50 SkIPoint*) const override; | |
51 | 48 |
52 SK_TO_STRING_OVERRIDE() | 49 SK_TO_STRING_OVERRIDE() |
53 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTableMaskFilter) | 50 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTableMaskFilter) |
54 | 51 |
55 protected: | 52 protected: |
56 SkTableMaskFilter(); | 53 virtual ~SkTableMaskFilter(); |
57 explicit SkTableMaskFilter(const uint8_t table[256]); | 54 |
58 void flatten(SkWriteBuffer&) const override; | 55 void flatten(SkWriteBuffer&) const override; |
59 | 56 |
60 private: | 57 private: |
| 58 SkTableMaskFilter(); |
| 59 explicit SkTableMaskFilter(const uint8_t table[256]); |
| 60 |
61 uint8_t fTable[256]; | 61 uint8_t fTable[256]; |
62 | 62 |
63 typedef SkMaskFilter INHERITED; | 63 typedef SkMaskFilter INHERITED; |
64 }; | 64 }; |
65 | 65 |
66 #endif | 66 #endif |
OLD | NEW |