1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkMaskCache.h"
#define CHECK_LOCAL(localCache, localName, globalName, ...) \
((localCache) ? localCache->localName(__VA_ARGS__) : SkResourceCache::globalName(__VA_ARGS__))
struct MaskValue {
SkMask fMask;
SkCachedData* fData;
};
namespace {
static unsigned gRRectBlurKeyNamespaceLabel;
struct RRectBlurKey : public SkResourceCache::Key {
public:
RRectBlurKey(SkScalar sigma, const SkRRect& rrect, SkBlurStyle style, SkBlurQuality quality)
: fSigma(sigma)
, fStyle(style)
, fQuality(quality)
, fRRect(rrect)
{
this->init(&gRRectBlurKeyNamespaceLabel, 0,
sizeof(fSigma) + sizeof(fStyle) + sizeof(fQuality) + sizeof(fRRect));
}
SkScalar fSigma;
int32_t fStyle;
int32_t fQuality;
SkRRect fRRect;
};
struct RRectBlurRec : public SkResourceCache::Rec {
RRectBlurRec(RRectBlurKey key, const SkMask& mask, SkCachedData* data)
: fKey(key)
{
fValue.fMask = mask;
fValue.fData = data;
fValue.fData->attachToCacheAndRef();
}
~RRectBlurRec() override {
fValue.fData->detachFromCacheAndUnref();
}
RRectBlurKey fKey;
MaskValue fValue;
const Key& getKey() const override { return fKey; }
size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); }
const char* getCategory() const override { return "rrect-blur"; }
SkDiscardableMemory* diagnostic_only_getDiscardable() const override {
return fValue.fData->diagnostic_only_getDiscardable();
}
static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextData) {
const RRectBlurRec& rec = static_cast<const RRectBlurRec&>(baseRec);
MaskValue* result = (MaskValue*)contextData;
SkCachedData* tmpData = rec.fValue.fData;
tmpData->ref();
if (nullptr == tmpData->data()) {
tmpData->unref();
return false;
}
*result = rec.fValue;
return true;
}
};
} // namespace
SkCachedData* SkMaskCache::FindAndRef(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
const SkRRect& rrect, SkMask* mask, SkResourceCache* localCache) {
MaskValue result;
RRectBlurKey key(sigma, rrect, style, quality);
if (!CHECK_LOCAL(localCache, find, Find, key, RRectBlurRec::Visitor, &result)) {
return nullptr;
}
*mask = result.fMask;
mask->fImage = (uint8_t*)(result.fData->data());
return result.fData;
}
void SkMaskCache::Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
const SkRRect& rrect, const SkMask& mask, SkCachedData* data,
SkResourceCache* localCache) {
RRectBlurKey key(sigma, rrect, style, quality);
return CHECK_LOCAL(localCache, add, Add, new RRectBlurRec(key, mask, data));
}
//////////////////////////////////////////////////////////////////////////////////////////
namespace {
static unsigned gRectsBlurKeyNamespaceLabel;
struct RectsBlurKey : public SkResourceCache::Key {
public:
RectsBlurKey(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
const SkRect rects[], int count)
: fSigma(sigma)
, fStyle(style)
, fQuality(quality)
{
SkASSERT(1 == count || 2 == count);
SkIRect ir;
rects[0].roundOut(&ir);
fSizes[0] = SkSize{rects[0].width(), rects[0].height()};
if (2 == count) {
fSizes[1] = SkSize{rects[1].width(), rects[1].height()};
fSizes[2] = SkSize{rects[0].x() - rects[1].x(), rects[0].y() - rects[1].y()};
} else {
fSizes[1] = SkSize{0, 0};
fSizes[2] = SkSize{0, 0};
}
fSizes[3] = SkSize{rects[0].x() - ir.x(), rects[0].y() - ir.y()};
this->init(&gRectsBlurKeyNamespaceLabel, 0,
sizeof(fSigma) + sizeof(fStyle) + sizeof(fQuality) + sizeof(fSizes));
}
SkScalar fSigma;
int32_t fStyle;
int32_t fQuality;
SkSize fSizes[4];
};
struct RectsBlurRec : public SkResourceCache::Rec {
RectsBlurRec(RectsBlurKey key, const SkMask& mask, SkCachedData* data)
: fKey(key)
{
fValue.fMask = mask;
fValue.fData = data;
fValue.fData->attachToCacheAndRef();
}
~RectsBlurRec() override {
fValue.fData->detachFromCacheAndUnref();
}
RectsBlurKey fKey;
MaskValue fValue;
const Key& getKey() const override { return fKey; }
size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); }
const char* getCategory() const override { return "rects-blur"; }
SkDiscardableMemory* diagnostic_only_getDiscardable() const override {
return fValue.fData->diagnostic_only_getDiscardable();
}
static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextData) {
const RectsBlurRec& rec = static_cast<const RectsBlurRec&>(baseRec);
MaskValue* result = static_cast<MaskValue*>(contextData);
SkCachedData* tmpData = rec.fValue.fData;
tmpData->ref();
if (nullptr == tmpData->data()) {
tmpData->unref();
return false;
}
*result = rec.fValue;
return true;
}
};
} // namespace
SkCachedData* SkMaskCache::FindAndRef(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
const SkRect rects[], int count, SkMask* mask,
SkResourceCache* localCache) {
MaskValue result;
RectsBlurKey key(sigma, style, quality, rects, count);
if (!CHECK_LOCAL(localCache, find, Find, key, RectsBlurRec::Visitor, &result)) {
return nullptr;
}
*mask = result.fMask;
mask->fImage = (uint8_t*)(result.fData->data());
return result.fData;
}
void SkMaskCache::Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
const SkRect rects[], int count, const SkMask& mask, SkCachedData* data,
SkResourceCache* localCache) {
RectsBlurKey key(sigma, style, quality, rects, count);
return CHECK_LOCAL(localCache, add, Add, new RectsBlurRec(key, mask, data));
}
|