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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
cc / paint / paint_flags.cc [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/paint/paint_flags.h"
#include <algorithm>
#include <utility>
#include "base/memory/values_equivalent.h"
#include "base/notreached.h"
#include "cc/paint/paint_filter.h"
#include "cc/paint/paint_op.h"
#include "cc/paint/paint_op_buffer.h"
#include "cc/paint/paint_shader.h"
#include "third_party/skia/include/core/SkColorFilter.h"
#include "third_party/skia/include/core/SkPathEffect.h"
#include "third_party/skia/include/core/SkPathUtils.h"
namespace {
template <typename T>
bool AreValuesEqualForTesting(const sk_sp<T>& a, const sk_sp<T>& b) {
return base::ValuesEquivalent(a, b, [](const T& x, const T& y) {
return x.EqualsForTesting(y); // IN-TEST
});
}
} // namespace
namespace cc {
CorePaintFlags::CorePaintFlags() {
// Match SkPaint defaults.
bitfields_uint_ = 0u;
bitfields_.cap_type_ = SkPaint::kDefault_Cap;
bitfields_.join_type_ = SkPaint::kDefault_Join;
bitfields_.style_ = SkPaint::kFill_Style;
bitfields_.blend_mode_ = static_cast<int>(SkBlendMode::kSrcOver);
bitfields_.filter_quality_ =
static_cast<int>(PaintFlags::FilterQuality::kNone);
bitfields_.dynamic_range_limit_standard_mix_ = 0;
bitfields_.dynamic_range_limit_constrained_high_mix_ = 0;
static_assert(sizeof(bitfields_) <= sizeof(bitfields_uint_),
"Too many bitfields");
}
bool CorePaintFlags::operator==(const CorePaintFlags& other) const {
return color_ == other.color_ && width_ == other.width_ &&
miter_limit_ == other.miter_limit_ &&
bitfields_uint_ == other.bitfields_uint_;
}
PaintFlags::PaintFlags() = default;
PaintFlags::PaintFlags(const PaintFlags& flags) = default;
PaintFlags::PaintFlags(const CorePaintFlags& flags) : CorePaintFlags(flags) {}
PaintFlags::PaintFlags(PaintFlags&& other) = default;
PaintFlags& PaintFlags::operator=(const PaintFlags& other) = default;
PaintFlags& PaintFlags::operator=(PaintFlags&& other) = default;
PaintFlags::~PaintFlags() = default;
bool PaintFlags::CanConvertToCorePaintFlags() const {
return IsValid() && !path_effect_ && !shader_ && !color_filter_ &&
!draw_looper_ && !image_filter_;
}
CorePaintFlags PaintFlags::ToCorePaintFlags() const {
DCHECK(CanConvertToCorePaintFlags());
return CorePaintFlags(*this);
}
void PaintFlags::setImageFilter(sk_sp<PaintFilter> filter) {
image_filter_ = std::move(filter);
}
bool PaintFlags::ShaderIsOpaque() const {
return shader_->IsOpaque();
}
void PaintFlags::setShader(sk_sp<PaintShader> shader) {
shader_ = std::move(shader);
}
bool PaintFlags::nothingToDraw() const {
// Duplicated from SkPaint to avoid having to construct an SkPaint to
// answer this question.
if (getLooper())
return false;
switch (getBlendMode()) {
case SkBlendMode::kSrcOver:
case SkBlendMode::kSrcATop:
case SkBlendMode::kDstOut:
case SkBlendMode::kDstOver:
case SkBlendMode::kPlus:
if (isFullyTransparent()) {
return !color_filter_ && !image_filter_;
}
break;
case SkBlendMode::kDst:
return true;
default:
break;
}
return false;
}
bool PaintFlags::getFillPath(const SkPath& src,
SkPath* dst,
const SkRect* cull_rect,
SkScalar res_scale) const {
SkPaint paint = ToSkPaint();
return skpathutils::FillPathWithPaint(src, paint, dst, cull_rect, res_scale);
}
bool PaintFlags::SupportsFoldingAlpha() const {
if (getBlendMode() != SkBlendMode::kSrcOver) {
return false;
}
if (getColorFilter()) {
return false;
}
if (getImageFilter()) {
return false;
}
if (getLooper()) {
return false;
}
return true;
}
SkPaint PaintFlags::ToSkPaint() const {
SkPaint paint;
if (path_effect_) {
paint.setPathEffect(path_effect_->GetSkPathEffect());
}
if (shader_) {
paint.setShader(shader_->GetSkShader(getFilterQuality()));
}
if (color_filter_) {
paint.setColorFilter(color_filter_->sk_color_filter_);
}
if (image_filter_) {
paint.setImageFilter(image_filter_->cached_sk_filter_);
}
paint.setColor(getColor4f());
paint.setStrokeWidth(getStrokeWidth());
paint.setStrokeMiter(getStrokeMiter());
paint.setBlendMode(getBlendMode());
paint.setAntiAlias(isAntiAlias());
paint.setDither(isDither());
paint.setStrokeCap(static_cast<SkPaint::Cap>(getStrokeCap()));
paint.setStrokeJoin(static_cast<SkPaint::Join>(getStrokeJoin()));
paint.setStyle(static_cast<SkPaint::Style>(getStyle()));
return paint;
}
SkSamplingOptions PaintFlags::FilterQualityToSkSamplingOptions(
PaintFlags::FilterQuality filter_quality) {
return FilterQualityToSkSamplingOptions(filter_quality,
ScalingOperation::kDefault);
}
SkSamplingOptions PaintFlags::FilterQualityToSkSamplingOptions(
PaintFlags::FilterQuality filter_quality,
PaintFlags::ScalingOperation scaling_op) {
switch (filter_quality) {
case PaintFlags::FilterQuality::kHigh:
switch (scaling_op) {
case PaintFlags::ScalingOperation::kDefault:
return SkSamplingOptions(SkCubicResampler::CatmullRom());
case PaintFlags::ScalingOperation::kUnknown:
return SkSamplingOptions(SkFilterMode::kLinear,
SkMipmapMode::kLinear);
case PaintFlags::ScalingOperation::kUpscale:
return SkSamplingOptions(SkCubicResampler::Mitchell());
}
case PaintFlags::FilterQuality::kMedium:
switch (scaling_op) {
case PaintFlags::ScalingOperation::kDefault:
return SkSamplingOptions(SkFilterMode::kLinear,
SkMipmapMode::kNearest);
case PaintFlags::ScalingOperation::kUnknown:
case PaintFlags::ScalingOperation::kUpscale:
return SkSamplingOptions(SkFilterMode::kLinear,
SkMipmapMode::kLinear);
}
case PaintFlags::FilterQuality::kLow:
return SkSamplingOptions(SkFilterMode::kLinear, SkMipmapMode::kNone);
case PaintFlags::FilterQuality::kNone:
return SkSamplingOptions(SkFilterMode::kNearest, SkMipmapMode::kNone);
}
}
bool CorePaintFlags::IsValid() const {
return PaintOp::IsValidPaintFlagsSkBlendMode(getBlendMode());
}
bool PaintFlags::EqualsForTesting(const PaintFlags& other) const {
// Can't just ToSkPaint and operator== here as SkPaint does pointer
// comparisons on all the ref'd skia objects on the SkPaint, which
// is not true after serialization.
return getColor() == other.getColor() &&
getStrokeWidth() == other.getStrokeWidth() &&
getStrokeMiter() == other.getStrokeMiter() &&
getBlendMode() == other.getBlendMode() &&
getStrokeCap() == other.getStrokeCap() &&
getStrokeJoin() == other.getStrokeJoin() &&
getStyle() == other.getStyle() &&
getFilterQuality() == other.getFilterQuality() &&
getDynamicRangeLimit() == other.getDynamicRangeLimit() &&
isArcClosed() == other.isArcClosed() &&
AreValuesEqualForTesting(path_effect_, // IN-TEST
other.path_effect_) &&
AreValuesEqualForTesting(color_filter_, // IN-TEST
other.color_filter_) &&
AreValuesEqualForTesting(draw_looper_, // IN-TEST
other.draw_looper_) &&
AreValuesEqualForTesting(image_filter_, // IN-TEST
other.image_filter_) &&
AreValuesEqualForTesting(shader_, other.shader_); // IN-TEST
}
bool PaintFlags::HasDiscardableImages(
gfx::ContentColorUsage* content_color_usage) const {
bool has_discardable_images = false;
if (shader_) {
has_discardable_images = shader_->HasDiscardableImages(content_color_usage);
}
if (image_filter_ && image_filter_->has_discardable_images()) {
if (content_color_usage) {
*content_color_usage =
std::max(*content_color_usage, image_filter_->GetContentColorUsage());
}
has_discardable_images = true;
}
return has_discardable_images;
}
float PaintFlags::DynamicRangeLimitMixture::ComputeHdrHeadroom(
float target_hdr_headroom) const {
if (constrained_high_mix == 0.f && standard_mix == 0.f) {
return target_hdr_headroom;
}
const float high_mix = 1.f - constrained_high_mix - standard_mix;
// Average the headrooms in log-space.
const float log2_standard_headroom = 0.f;
const float log2_constrained_high_headroom = 1.f;
const float log2_high_headroom = std::log2(target_hdr_headroom);
return std::exp2(standard_mix * log2_standard_headroom +
constrained_high_mix * log2_constrained_high_headroom +
high_mix * log2_high_headroom);
}
} // namespace cc