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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
cc / tiles / software_image_decode_cache_unittest_combinations.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/tiles/software_image_decode_cache.h"
#include "base/strings/stringprintf.h"
#include "cc/paint/draw_image.h"
#include "cc/paint/paint_image_builder.h"
#include "cc/test/fake_paint_image_generator.h"
#include "cc/test/skia_common.h"
#include "cc/test/test_tile_task_runner.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/core/SkRefCnt.h"
namespace cc {
namespace {
size_t kLockedMemoryLimitBytes = 128 * 1024 * 1024;
SkM44 CreateMatrix(const SkSize& scale, bool is_decomposable) {
SkM44 matrix = SkM44::Scale(scale.width(), scale.height());
if (!is_decomposable) {
// Perspective is not decomposable, add it.
matrix.setRC(3, 0, 0.1f);
}
return matrix;
}
class BaseTest : public testing::Test {
public:
void SetUp() override {
cache_ = CreateCache();
*const_cast<ImageDecodeCache::ClientId*>(&image_cache_client_id_) =
cache_->GenerateClientId();
ASSERT_GT(image_cache_client_id_, 0u);
paint_image_ = CreatePaintImage(gfx::Size(512, 512));
}
void TearDown() override {
paint_image_ = PaintImage();
cache_.reset();
}
DrawImage CreateDrawImageForScale(
float scale,
const SkIRect src_rect = SkIRect::MakeEmpty()) {
return DrawImage(
paint_image(), false,
src_rect.isEmpty()
? SkIRect::MakeWH(paint_image().width(), paint_image().height())
: src_rect,
PaintFlags::FilterQuality::kMedium,
CreateMatrix(SkSize::Make(scale, scale), true),
PaintImage::kDefaultFrameIndex, GetTargetColorParams());
}
SoftwareImageDecodeCache& cache() { return *cache_; }
ImageDecodeCache::ClientId cache_client_id() const {
return image_cache_client_id_;
}
PaintImage& paint_image() { return paint_image_; }
protected:
struct CacheEntryResult {
bool has_task = false;
bool needs_unref = false;
};
virtual std::unique_ptr<SoftwareImageDecodeCache> CreateCache() = 0;
virtual CacheEntryResult GenerateCacheEntry(const DrawImage& image) = 0;
virtual PaintImage CreatePaintImage(const gfx::Size& size) = 0;
virtual TargetColorParams GetTargetColorParams() const = 0;
gfx::ColorSpace GetColorSpace() const {
return GetTargetColorParams().color_space;
}
virtual void VerifyEntryExists(int line,
const DrawImage& draw_image,
const gfx::Size& expected_size) = 0;
private:
std::unique_ptr<SoftwareImageDecodeCache> cache_;
// The id generated by ImageDecodeCache instance to identify this client
// instance when requesting image tasks.
const ImageDecodeCache::ClientId image_cache_client_id_ = 0;
PaintImage paint_image_;
};
class N32Cache : public virtual BaseTest {
protected:
std::unique_ptr<SoftwareImageDecodeCache> CreateCache() override {
return std::make_unique<SoftwareImageDecodeCache>(kN32_SkColorType,
kLockedMemoryLimitBytes);
}
};
class RGBA4444Cache : public virtual BaseTest {
protected:
std::unique_ptr<SoftwareImageDecodeCache> CreateCache() override {
return std::make_unique<SoftwareImageDecodeCache>(kARGB_4444_SkColorType,
kLockedMemoryLimitBytes);
}
};
class RGBA_F16Cache : public virtual BaseTest {
protected:
std::unique_ptr<SoftwareImageDecodeCache> CreateCache() override {
return std::make_unique<SoftwareImageDecodeCache>(kRGBA_F16_SkColorType,
kLockedMemoryLimitBytes);
}
};
class AtRaster : public virtual BaseTest {
protected:
CacheEntryResult GenerateCacheEntry(const DrawImage& image) override {
// At raster doesn't generate cache entries.
return {false, false};
}
void VerifyEntryExists(int line,
const DrawImage& draw_image,
const gfx::Size& expected_size) override {
auto decoded = cache().GetDecodedImageForDraw(draw_image);
SCOPED_TRACE(base::StringPrintf("Failure from line %d", line));
EXPECT_EQ(decoded.image()->width(), expected_size.width());
EXPECT_EQ(decoded.image()->height(), expected_size.height());
cache().DrawWithImageFinished(draw_image, decoded);
}
};
class Predecode : public virtual BaseTest {
protected:
CacheEntryResult GenerateCacheEntry(const DrawImage& image) override {
auto task_result = cache().GetTaskForImageAndRef(
cache_client_id(), image, ImageDecodeCache::TracingInfo());
CacheEntryResult result = {!!task_result.task, task_result.need_unref};
if (task_result.task)
TestTileTaskRunner::ProcessTask(task_result.task.get());
return result;
}
void VerifyEntryExists(int line,
const DrawImage& draw_image,
const gfx::Size& expected_size) override {
auto decoded = cache().GetDecodedImageForDraw(draw_image);
EXPECT_TRUE(SkColorSpace::Equals(
decoded.image()->colorSpace(),
draw_image.target_color_space().ToSkColorSpace().get()));
SCOPED_TRACE(base::StringPrintf("Failure from line %d", line));
EXPECT_EQ(decoded.image()->width(), expected_size.width());
EXPECT_EQ(decoded.image()->height(), expected_size.height());
cache().DrawWithImageFinished(draw_image, decoded);
}
};
class NoDecodeToScaleSupport : public virtual BaseTest {
protected:
PaintImage CreatePaintImage(const gfx::Size& size) override {
return CreateDiscardablePaintImage(size, GetColorSpace().ToSkColorSpace());
}
};
class NoDecodeToScaleSupportF16 : public virtual BaseTest {
protected:
PaintImage CreatePaintImage(const gfx::Size& size) override {
PaintImage paint_image = CreateDiscardablePaintImage(
size, GetColorSpace().ToSkColorSpace(),
true /*allocate_encoded_memory*/, PaintImage::kInvalidId,
kRGBA_F16_SkColorType);
return paint_image;
}
};
class DefaultColorSpace : public virtual BaseTest {
protected:
TargetColorParams GetTargetColorParams() const override {
return TargetColorParams();
}
};
class ExoticColorSpace : public virtual BaseTest {
protected:
TargetColorParams GetTargetColorParams() const override {
return TargetColorParams(
gfx::ColorSpace(gfx::ColorSpace::PrimaryID::XYZ_D50,
gfx::ColorSpace::TransferID::SRGB));
}
};
class WideGamutCanvasColorSpace : public virtual BaseTest {
protected:
TargetColorParams GetTargetColorParams() const override {
return TargetColorParams(gfx::ColorSpace(
gfx::ColorSpace::PrimaryID::P3, gfx::ColorSpace::TransferID::LINEAR));
}
};
class HdrCanvasColorSpace : public virtual BaseTest {
protected:
TargetColorParams GetTargetColorParams() const override {
TargetColorParams result(gfx::ColorSpace(
gfx::ColorSpace::PrimaryID::P3, gfx::ColorSpace::TransferID::SRGB_HDR));
result.hdr_max_luminance_relative = 4.f;
return result;
}
};
class SoftwareImageDecodeCacheTest_Typical : public N32Cache,
public Predecode,
public NoDecodeToScaleSupport,
public DefaultColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_Typical, UseClosestAvailableDecode) {
auto draw_image_50 = CreateDrawImageForScale(0.5f);
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 0.5 scale and 0.125 scale.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
TEST_F(SoftwareImageDecodeCacheTest_Typical,
UseClosestAvailableDecodeNotSmaller) {
auto draw_image_25 = CreateDrawImageForScale(0.25f);
auto result = GenerateCacheEntry(draw_image_25);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_25, gfx::Size(128, 128));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_50 = CreateDrawImageForScale(0.5f);
result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 1.0 scale, 0.5 scale and 0.25 scale.
EXPECT_EQ(3u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_25);
}
TEST_F(SoftwareImageDecodeCacheTest_Typical,
UseClosestAvailableDecodeFirstImageSubrected) {
auto draw_image_50 = CreateDrawImageForScale(0.5f, SkIRect::MakeWH(500, 500));
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(250, 250));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 1.0 scale, 0.5 scale subrected and 0.125 scale.
EXPECT_EQ(3u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
TEST_F(SoftwareImageDecodeCacheTest_Typical,
UseClosestAvailableDecodeSecondImageSubrected) {
auto draw_image_50 = CreateDrawImageForScale(0.5f);
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 =
CreateDrawImageForScale(0.125f, SkIRect::MakeWH(400, 400));
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(50, 50));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 1.0 scale, 0.5 scale and 0.125 scale subrected.
EXPECT_EQ(3u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
TEST_F(SoftwareImageDecodeCacheTest_Typical,
UseClosestAvailableDecodeBothSubrected) {
auto draw_image_50 = CreateDrawImageForScale(0.5f, SkIRect::MakeWH(400, 400));
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(200, 200));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 =
CreateDrawImageForScale(0.125f, SkIRect::MakeWH(400, 400));
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(50, 50));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 0.5 scale subrected and 0.125 scale subrected.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
TEST_F(SoftwareImageDecodeCacheTest_Typical,
UseClosestAvailableDecodeBothPastPostScaleSize) {
auto draw_image_50 =
CreateDrawImageForScale(0.5f, SkIRect::MakeXYWH(300, 300, 52, 52));
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(26, 26));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_25 =
CreateDrawImageForScale(0.25, SkIRect::MakeXYWH(300, 300, 52, 52));
result = GenerateCacheEntry(draw_image_25);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_25, gfx::Size(13, 13));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 0.5 scale subrected and 0.25 scale subrected.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_25);
}
class SoftwareImageDecodeCacheTest_AtRaster : public N32Cache,
public AtRaster,
public NoDecodeToScaleSupport,
public DefaultColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_AtRaster, UseClosestAvailableDecode) {
auto draw_image_50 = CreateDrawImageForScale(0.5f);
auto decoded = cache().GetDecodedImageForDraw(draw_image_50);
{
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
cache().ClearCache();
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
}
cache().DrawWithImageFinished(draw_image_50, decoded);
// We should only expect to find these entries: 0.5 scale and 0.125 scale.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
}
TEST_F(SoftwareImageDecodeCacheTest_AtRaster,
UseClosestAvailableDecodeSubrected) {
auto draw_image_50 = CreateDrawImageForScale(0.5f, SkIRect::MakeWH(500, 500));
auto decoded = cache().GetDecodedImageForDraw(draw_image_50);
{
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(250, 250));
cache().ClearCache();
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
}
cache().DrawWithImageFinished(draw_image_50, decoded);
// We should only expect to find these entries: 1.0 scale, 0.5 scale subrected
// and 0.125 scale.
EXPECT_EQ(3u, cache().GetNumCacheEntriesForTesting());
}
class SoftwareImageDecodeCacheTest_ExoticColorSpace
: public N32Cache,
public Predecode,
public NoDecodeToScaleSupport,
public ExoticColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_ExoticColorSpace,
UseClosestAvailableDecode) {
auto draw_image_50 = CreateDrawImageForScale(0.5f);
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
// We didn't clear the cache the second time, and should only expect to find
// these entries: 0.5 scale and 0.125 scale.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
class SoftwareImageDecodeCacheTest_F16_ExoticColorSpace
: public RGBA_F16Cache,
public Predecode,
public NoDecodeToScaleSupportF16,
public ExoticColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_F16_ExoticColorSpace,
UseClosestAvailableDecode_F16_ExoticColorSpace) {
auto draw_image_50 = CreateDrawImageForScale(0.5f);
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
EXPECT_EQ(kRGBA_F16_SkColorType, draw_image_50.paint_image().GetColorType());
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
EXPECT_EQ(kRGBA_F16_SkColorType, draw_image_125.paint_image().GetColorType());
// We didn't clear the cache the second time, and should only expect to find
// these entries: 0.5 scale and 0.125 scale.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
class SoftwareImageDecodeCacheTest_F16_WideGamutCanvasColorSpace
: public RGBA_F16Cache,
public Predecode,
public NoDecodeToScaleSupportF16,
public WideGamutCanvasColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_F16_WideGamutCanvasColorSpace,
UseClosestAvailableDecode_F16_WideGamutCanvasColorSpace) {
auto draw_image_50 = CreateDrawImageForScale(0.5f);
auto result = GenerateCacheEntry(draw_image_50);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
// Clear the cache to eliminate the transient 1.f scale from the cache.
cache().ClearCache();
VerifyEntryExists(__LINE__, draw_image_50, gfx::Size(256, 256));
EXPECT_EQ(kRGBA_F16_SkColorType, draw_image_50.paint_image().GetColorType());
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
auto draw_image_125 = CreateDrawImageForScale(0.125f);
result = GenerateCacheEntry(draw_image_125);
EXPECT_TRUE(result.has_task);
EXPECT_TRUE(result.needs_unref);
VerifyEntryExists(__LINE__, draw_image_125, gfx::Size(64, 64));
EXPECT_EQ(kRGBA_F16_SkColorType, draw_image_125.paint_image().GetColorType());
// We didn't clear the cache the second time, and should only expect to find
// these entries: 0.5 scale and 0.125 scale.
EXPECT_EQ(2u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image_50);
cache().UnrefImage(draw_image_125);
}
class PaintImageN32HDR : public virtual BaseTest {
protected:
PaintImage CreatePaintImage(const gfx::Size& size) override {
PaintImage paint_image = CreateDiscardablePaintImage(
size, gfx::ColorSpace::CreateHDR10().ToSkColorSpace(),
true /*allocate_encoded_memory*/, PaintImage::kInvalidId,
kN32_SkColorType);
return paint_image;
}
};
class SoftwareImageDecodeCacheTest_N32HDR : public N32Cache,
public Predecode,
public PaintImageN32HDR,
public HdrCanvasColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_N32HDR, DontForceF16Decode) {
auto draw_image = CreateDrawImageForScale(1.f);
GenerateCacheEntry(draw_image);
VerifyEntryExists(__LINE__, draw_image, gfx::Size(512, 512));
EXPECT_EQ(kN32_SkColorType, draw_image.paint_image().GetColorType());
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image);
}
class PaintImageF16HDR : public virtual BaseTest {
protected:
PaintImage CreatePaintImage(const gfx::Size& size) override {
PaintImage paint_image = CreateDiscardablePaintImage(
size, gfx::ColorSpace::CreateHDR10().ToSkColorSpace(),
true /*allocate_encoded_memory*/, PaintImage::kInvalidId,
kRGBA_F16_SkColorType);
return paint_image;
}
};
class SoftwareImageDecodeCacheTest_F16HDR : public N32Cache,
public Predecode,
public PaintImageF16HDR,
public HdrCanvasColorSpace {};
TEST_F(SoftwareImageDecodeCacheTest_F16HDR, AllowF16Decode) {
auto draw_image = CreateDrawImageForScale(1.f);
GenerateCacheEntry(draw_image);
VerifyEntryExists(__LINE__, draw_image, gfx::Size(512, 512));
EXPECT_EQ(kRGBA_F16_SkColorType, draw_image.paint_image().GetColorType());
EXPECT_EQ(1u, cache().GetNumCacheEntriesForTesting());
cache().UnrefImage(draw_image);
}
} // namespace
} // namespace cc