Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: tests/MaskCacheTest.cpp

Issue 670063004: Add SkMaskCache (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add namespace for key in MaskCache Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/core/SkMaskCache.cpp ('K') | « src/core/SkResourceCache.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkCachedData.h"
9 #include "SkMaskCache.h"
10 #include "SkResourceCache.h"
11 #include "Test.h"
12
13 enum LockedState {
14 kUnlocked,
15 kLocked,
16 };
17
18 enum CachedState {
19 kNotInCache,
20 kInCache,
21 };
22
23 static void check_data(skiatest::Reporter* reporter, SkCachedData* data,
24 int refcnt, CachedState cacheState, LockedState lockedSta te) {
25 REPORTER_ASSERT(reporter, data->testing_only_getRefCnt() == refcnt);
26 REPORTER_ASSERT(reporter, data->testing_only_isInCache() == (kInCache == cac heState));
27 bool isLocked = (data->data() != NULL);
28 REPORTER_ASSERT(reporter, isLocked == (lockedState == kLocked));
29 }
30
31 DEF_TEST(RRectMaskCache, reporter) {
32 SkResourceCache cache(1024);
33
34 SkScalar sigma = 0.8f;
35 SkRect rect = SkRect::MakeWH(100, 100);
36 SkRRect rrect;
37 rrect.setRectXY(rect, 30, 30);
38 SkBlurStyle style = kNormal_SkBlurStyle;
39 SkBlurQuality quality = kLow_SkBlurQuality;
40 SkMask mask;
41
42 SkCachedData* data = SkMaskCache::FindAndRef(sigma, rrect, style, quality, & mask, &cache);
43 REPORTER_ASSERT(reporter, NULL == data);
44
45 size_t size = 256;
46 data = cache.newCachedData(size);
47 memset(data->writable_data(), 0xff, size);
48 mask.fBounds.setXYWH(0, 0, 100, 100);
49 mask.fRowBytes = 100;
50 mask.fFormat = SkMask::kBW_Format;
51 SkMaskCache::Add(sigma, rrect, style, quality, mask, data, &cache);
52 check_data(reporter, data, 2, kInCache, kLocked);
53
54 data->unref();
55 check_data(reporter, data, 1, kInCache, kUnlocked);
56
57 sk_bzero(&mask, sizeof(mask));
58 data = SkMaskCache::FindAndRef(sigma, rrect, style, quality, &mask, &cache);
59 REPORTER_ASSERT(reporter, data);
60 REPORTER_ASSERT(reporter, data->size() == size);
61 REPORTER_ASSERT(reporter, mask.fBounds.top() == 0 && mask.fBounds.bottom() = = 100);
62 REPORTER_ASSERT(reporter, data->data() == (const void*)mask.fImage);
63 check_data(reporter, data, 2, kInCache, kLocked);
64
65 cache.purgeAll();
66 check_data(reporter, data, 1, kNotInCache, kLocked);
67 data->unref();
68 }
69
70 DEF_TEST(RectsMaskCache, reporter) {
71 SkResourceCache cache(1024);
72
73 SkScalar sigma = 0.8f;
74 SkRect rect = SkRect::MakeWH(100, 100);
75 SkRect rects[2] = {rect};
76 SkBlurStyle style = kNormal_SkBlurStyle;
77 SkMask mask;
78
79 SkCachedData* data = SkMaskCache::FindAndRef(sigma, rects, 1, style, &mask, &cache);
80 REPORTER_ASSERT(reporter, NULL == data);
81
82 size_t size = 256;
83 data = cache.newCachedData(size);
84 memset(data->writable_data(), 0xff, size);
85 mask.fBounds.setXYWH(0, 0, 100, 100);
86 mask.fRowBytes = 100;
87 mask.fFormat = SkMask::kBW_Format;
88 SkMaskCache::Add(sigma, rects, 1, style, mask, data, &cache);
89 check_data(reporter, data, 2, kInCache, kLocked);
90
91 data->unref();
92 check_data(reporter, data, 1, kInCache, kUnlocked);
93
94 sk_bzero(&mask, sizeof(mask));
95 data = SkMaskCache::FindAndRef(sigma, rects, 1, style, &mask, &cache);
96 REPORTER_ASSERT(reporter, data);
97 REPORTER_ASSERT(reporter, data->size() == size);
98 REPORTER_ASSERT(reporter, mask.fBounds.top() == 0 && mask.fBounds.bottom() = = 100);
99 REPORTER_ASSERT(reporter, data->data() == (const void*)mask.fImage);
100 check_data(reporter, data, 2, kInCache, kLocked);
101
102 cache.purgeAll();
103 check_data(reporter, data, 1, kNotInCache, kLocked);
104 data->unref();
105 }
OLDNEW
« src/core/SkMaskCache.cpp ('K') | « src/core/SkResourceCache.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698