forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpaint_image.cc
426 lines (365 loc) · 14.2 KB
/
paint_image.cc
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/paint/paint_image.h"
#include <memory>
#include <sstream>
#include <utility>
#include "base/atomic_sequence_num.h"
#include "base/hash/hash.h"
#include "base/logging.h"
#include "cc/paint/paint_image_builder.h"
#include "cc/paint/paint_image_generator.h"
#include "cc/paint/paint_record.h"
#include "cc/paint/paint_worklet_input.h"
#include "cc/paint/skia_paint_image_generator.h"
#include "third_party/skia/include/gpu/GrBackendSurface.h"
#include "ui/gfx/skia_util.h"
namespace cc {
namespace {
base::AtomicSequenceNumber g_next_image_id;
base::AtomicSequenceNumber g_next_image_content_id;
base::AtomicSequenceNumber g_next_generator_client_id;
} // namespace
const PaintImage::Id PaintImage::kNonLazyStableId = -1;
const size_t PaintImage::kDefaultFrameIndex = 0u;
const PaintImage::Id PaintImage::kInvalidId = -2;
const PaintImage::ContentId PaintImage::kInvalidContentId = -1;
const PaintImage::GeneratorClientId PaintImage::kDefaultGeneratorClientId = 0;
ImageHeaderMetadata::ImageHeaderMetadata() = default;
ImageHeaderMetadata::ImageHeaderMetadata(const ImageHeaderMetadata& other) =
default;
ImageHeaderMetadata& ImageHeaderMetadata::operator=(
const ImageHeaderMetadata& other) = default;
ImageHeaderMetadata::ImageHeaderMetadata::~ImageHeaderMetadata() = default;
PaintImage::PaintImage() = default;
PaintImage::PaintImage(const PaintImage& other) = default;
PaintImage::PaintImage(PaintImage&& other) = default;
PaintImage::~PaintImage() = default;
PaintImage& PaintImage::operator=(const PaintImage& other) = default;
PaintImage& PaintImage::operator=(PaintImage&& other) = default;
bool PaintImage::operator==(const PaintImage& other) const {
if (sk_image_ != other.sk_image_)
return false;
if (paint_record_ != other.paint_record_)
return false;
if (paint_record_rect_ != other.paint_record_rect_)
return false;
if (content_id_ != other.content_id_)
return false;
if (paint_image_generator_ != other.paint_image_generator_)
return false;
if (id_ != other.id_)
return false;
if (animation_type_ != other.animation_type_)
return false;
if (completion_state_ != other.completion_state_)
return false;
if (is_multipart_ != other.is_multipart_)
return false;
if (texture_backing_ != other.texture_backing_)
return false;
if (paint_worklet_input_ != other.paint_worklet_input_)
return false;
return true;
}
// static
PaintImage::DecodingMode PaintImage::GetConservative(DecodingMode one,
DecodingMode two) {
if (one == two)
return one;
if (one == DecodingMode::kSync || two == DecodingMode::kSync)
return DecodingMode::kSync;
if (one == DecodingMode::kUnspecified || two == DecodingMode::kUnspecified)
return DecodingMode::kUnspecified;
DCHECK_EQ(one, DecodingMode::kAsync);
DCHECK_EQ(two, DecodingMode::kAsync);
return DecodingMode::kAsync;
}
// static
PaintImage::Id PaintImage::GetNextId() {
return g_next_image_id.GetNext();
}
// static
PaintImage::ContentId PaintImage::GetNextContentId() {
return g_next_image_content_id.GetNext();
}
// static
PaintImage::GeneratorClientId PaintImage::GetNextGeneratorClientId() {
// These IDs must start from 1, since 0 is the kDefaultGeneratorClientId.
return g_next_generator_client_id.GetNext() + 1;
}
// static
PaintImage PaintImage::CreateFromBitmap(SkBitmap bitmap) {
if (bitmap.drawsNothing())
return PaintImage();
return PaintImageBuilder::WithDefault()
.set_id(PaintImage::GetNextId())
.set_image(SkImage::MakeFromBitmap(bitmap),
PaintImage::GetNextContentId())
.TakePaintImage();
}
const sk_sp<SkImage>& PaintImage::GetSkImage() const {
return cached_sk_image_;
}
sk_sp<SkImage> PaintImage::GetSwSkImage() const {
if (texture_backing_) {
return texture_backing_->GetSkImageViaReadback();
} else if (cached_sk_image_ && cached_sk_image_->isTextureBacked()) {
return cached_sk_image_->makeNonTextureImage();
}
return cached_sk_image_;
}
sk_sp<SkImage> PaintImage::GetAcceleratedSkImage() const {
DCHECK(!cached_sk_image_ || cached_sk_image_->isTextureBacked());
return cached_sk_image_;
}
bool PaintImage::readPixels(const SkImageInfo& dst_info,
void* dst_pixels,
size_t dst_row_bytes,
int src_x,
int src_y) const {
if (texture_backing_) {
return texture_backing_->readPixels(dst_info, dst_pixels, dst_row_bytes,
src_x, src_y);
} else if (cached_sk_image_) {
return cached_sk_image_->readPixels(dst_info, dst_pixels, dst_row_bytes,
src_x, src_y);
}
return false;
}
SkImageInfo PaintImage::GetSkImageInfo() const {
if (paint_image_generator_) {
return paint_image_generator_->GetSkImageInfo();
} else if (texture_backing_) {
return texture_backing_->GetSkImageInfo();
} else if (cached_sk_image_) {
return cached_sk_image_->imageInfo();
} else {
return SkImageInfo::MakeUnknown();
}
}
gpu::Mailbox PaintImage::GetMailbox() const {
DCHECK(texture_backing_);
return texture_backing_->GetMailbox();
}
void PaintImage::CreateSkImage() {
DCHECK(!cached_sk_image_);
if (sk_image_) {
cached_sk_image_ = sk_image_;
} else if (paint_record_) {
cached_sk_image_ = SkImage::MakeFromPicture(
ToSkPicture(paint_record_, gfx::RectToSkRect(paint_record_rect_)),
SkISize::Make(paint_record_rect_.width(), paint_record_rect_.height()),
nullptr, nullptr, SkImage::BitDepth::kU8, SkColorSpace::MakeSRGB());
} else if (paint_image_generator_) {
cached_sk_image_ =
SkImage::MakeFromGenerator(std::make_unique<SkiaPaintImageGenerator>(
paint_image_generator_, kDefaultFrameIndex,
kDefaultGeneratorClientId));
} else if (texture_backing_) {
cached_sk_image_ = texture_backing_->GetAcceleratedSkImage();
}
}
SkISize PaintImage::GetSupportedDecodeSize(
const SkISize& requested_size) const {
if (paint_image_generator_)
return paint_image_generator_->GetSupportedDecodeSize(requested_size);
return SkISize::Make(width(), height());
}
bool PaintImage::Decode(void* memory,
SkImageInfo* info,
sk_sp<SkColorSpace> color_space,
size_t frame_index,
GeneratorClientId client_id) const {
// We don't support SkImageInfo's with color spaces on them. Color spaces
// should always be passed via the |color_space| arg.
DCHECK(!info->colorSpace());
// We only support decode to supported decode size.
DCHECK(info->dimensions() == GetSupportedDecodeSize(info->dimensions()));
if (paint_image_generator_) {
return DecodeFromGenerator(memory, info, std::move(color_space),
frame_index, client_id);
}
return DecodeFromSkImage(memory, info, std::move(color_space), frame_index,
client_id);
}
bool PaintImage::DecodeYuv(const SkYUVAPixmaps& pixmaps,
size_t frame_index,
GeneratorClientId client_id) const {
DCHECK(pixmaps.isValid());
DCHECK(paint_image_generator_);
const uint32_t lazy_pixel_ref = stable_id();
return paint_image_generator_->GetYUVAPlanes(pixmaps, frame_index,
lazy_pixel_ref);
}
bool PaintImage::DecodeFromGenerator(void* memory,
SkImageInfo* info,
sk_sp<SkColorSpace> color_space,
size_t frame_index,
GeneratorClientId client_id) const {
DCHECK(paint_image_generator_);
// First convert the info to have the requested color space, since the decoder
// will convert this for us.
*info = info->makeColorSpace(std::move(color_space));
const uint32_t lazy_pixel_ref = stable_id();
return paint_image_generator_->GetPixels(*info, memory, info->minRowBytes(),
frame_index, client_id,
lazy_pixel_ref);
}
bool PaintImage::DecodeFromSkImage(void* memory,
SkImageInfo* info,
sk_sp<SkColorSpace> color_space,
size_t frame_index,
GeneratorClientId client_id) const {
auto image = GetSkImageForFrame(frame_index, client_id);
DCHECK(image);
if (color_space) {
image = image->makeColorSpace(color_space, nullptr);
if (!image)
return false;
}
// Note that the readPixels has to happen before converting the info to the
// given color space, since it can produce incorrect results.
bool result = image->readPixels(*info, memory, info->minRowBytes(), 0, 0,
SkImage::kDisallow_CachingHint);
*info = info->makeColorSpace(std::move(color_space));
return result;
}
bool PaintImage::ShouldAnimate() const {
return animation_type_ == AnimationType::ANIMATED &&
repetition_count_ != kAnimationNone && FrameCount() > 1;
}
PaintImage::FrameKey PaintImage::GetKeyForFrame(size_t frame_index) const {
DCHECK_LT(frame_index, FrameCount());
return FrameKey(GetContentIdForFrame(frame_index), frame_index);
}
PaintImage::ContentId PaintImage::GetContentIdForFrame(
size_t frame_index) const {
if (paint_image_generator_)
return paint_image_generator_->GetContentIdForFrame(frame_index);
DCHECK_NE(content_id_, kInvalidContentId);
return content_id_;
}
SkColorType PaintImage::GetColorType() const {
return GetSkImageInfo().colorType();
}
SkAlphaType PaintImage::GetAlphaType() const {
return GetSkImageInfo().alphaType();
}
bool PaintImage::IsTextureBacked() const {
if (texture_backing_)
return true;
if (cached_sk_image_)
return cached_sk_image_->isTextureBacked();
return false;
}
void PaintImage::FlushPendingSkiaOps() {
if (texture_backing_)
texture_backing_->FlushPendingSkiaOps();
}
int PaintImage::width() const {
return paint_worklet_input_
? static_cast<int>(paint_worklet_input_->GetSize().width())
: GetSkImageInfo().width();
}
int PaintImage::height() const {
return paint_worklet_input_
? static_cast<int>(paint_worklet_input_->GetSize().height())
: GetSkImageInfo().height();
}
gfx::ContentColorUsage PaintImage::GetContentColorUsage() const {
// Right now, JS paint worklets can only be in sRGB
if (paint_worklet_input_)
return gfx::ContentColorUsage::kSRGB;
const auto* color_space = GetSkImageInfo().colorSpace();
// Assume the image will be sRGB if we don't know yet.
if (!color_space || color_space->isSRGB())
return gfx::ContentColorUsage::kSRGB;
skcms_TransferFunction fn;
if (!color_space->isNumericalTransferFn(&fn) &&
(skcms_TransferFunction_isPQish(&fn) ||
skcms_TransferFunction_isHLGish(&fn))) {
return gfx::ContentColorUsage::kHDR;
}
// If it's not HDR and not SRGB, report it as WCG.
return gfx::ContentColorUsage::kWideColorGamut;
}
const ImageHeaderMetadata* PaintImage::GetImageHeaderMetadata() const {
if (paint_image_generator_)
return paint_image_generator_->GetMetadataForDecodeAcceleration();
return nullptr;
}
bool PaintImage::IsYuv(
const SkYUVAPixmapInfo::SupportedDataTypes& supported_data_types,
SkYUVAPixmapInfo* info) const {
SkYUVAPixmapInfo temp_info;
if (!info)
info = &temp_info;
// ImageDecoder will fill out the SkYUVColorSpace in |info| depending on the
// codec's specification.
return paint_image_generator_ &&
paint_image_generator_->QueryYUVA(supported_data_types, info);
}
const std::vector<FrameMetadata>& PaintImage::GetFrameMetadata() const {
DCHECK_EQ(animation_type_, AnimationType::ANIMATED);
DCHECK(paint_image_generator_);
return paint_image_generator_->GetFrameMetadata();
}
size_t PaintImage::FrameCount() const {
if (!*this)
return 0u;
return paint_image_generator_
? paint_image_generator_->GetFrameMetadata().size()
: 1u;
}
sk_sp<SkImage> PaintImage::GetSkImageForFrame(
size_t index,
GeneratorClientId client_id) const {
DCHECK_LT(index, FrameCount());
DCHECK(!IsTextureBacked());
// |client_id| and |index| are only relevant for generator backed images which
// perform lazy decoding and can be multi-frame.
if (!paint_image_generator_) {
DCHECK_EQ(index, kDefaultFrameIndex);
return GetSwSkImage();
}
// The internally cached SkImage is constructed using the default frame index
// and GeneratorClientId. Avoid creating a new SkImage.
if (index == kDefaultFrameIndex && client_id == kDefaultGeneratorClientId)
return GetSwSkImage();
sk_sp<SkImage> image =
SkImage::MakeFromGenerator(std::make_unique<SkiaPaintImageGenerator>(
paint_image_generator_, index, client_id));
return image;
}
std::string PaintImage::ToString() const {
std::ostringstream str;
str << "sk_image_: " << sk_image_ << " paint_record_: " << paint_record_
<< " paint_record_rect_: " << paint_record_rect_.ToString()
<< " paint_image_generator_: " << paint_image_generator_
<< " id_: " << id_
<< " animation_type_: " << static_cast<int>(animation_type_)
<< " completion_state_: " << static_cast<int>(completion_state_)
<< " is_multipart_: " << is_multipart_
<< " is YUV: " << IsYuv(SkYUVAPixmapInfo::SupportedDataTypes::All());
return str.str();
}
PaintImage::FrameKey::FrameKey(ContentId content_id, size_t frame_index)
: content_id_(content_id), frame_index_(frame_index) {
hash_ = base::HashInts(static_cast<uint64_t>(content_id_),
static_cast<uint64_t>(frame_index_));
}
bool PaintImage::FrameKey::operator==(const FrameKey& other) const {
return content_id_ == other.content_id_ && frame_index_ == other.frame_index_;
}
bool PaintImage::FrameKey::operator!=(const FrameKey& other) const {
return !(*this == other);
}
std::string PaintImage::FrameKey::ToString() const {
std::ostringstream str;
str << "content_id: " << content_id_ << ","
<< "frame_index: " << frame_index_;
return str.str();
}
} // namespace cc