blob: c7b2170c0ff699c2dccf117cd90bb42cc0549eb8 [file] [log] [blame]
robertphillipsdf7bb472016-02-19 08:19:40 -08001 /*
2 * Copyright 2016 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 "Test.h"
9
10#include "SkBitmap.h"
11#include "SkImage.h"
12#include "SkImageFilter.h"
13#include "SkImageFilterCacheKey.h"
14#include "SkMatrix.h"
15#include "SkSpecialImage.h"
16
17static const int kSmallerSize = 10;
18static const int kPad = 3;
19static const int kFullSize = kSmallerSize + 2 * kPad;
20
21static SkBitmap create_bm() {
22 SkBitmap bm;
23 bm.allocN32Pixels(kFullSize, kFullSize, true);
24 bm.eraseColor(SK_ColorTRANSPARENT);
25 return bm;
26}
27
28// Ensure the cache can return a cached image
29static void test_find_existing(skiatest::Reporter* reporter,
30 SkSpecialImage* image,
31 SkSpecialImage* subset) {
32 static const size_t kCacheSize = 1000000;
33 SkAutoTUnref<SkImageFilter::Cache> cache(SkImageFilter::Cache::Create(kCacheSize));
34
35 SkIRect clip = SkIRect::MakeWH(100, 100);
36 SkImageFilter::Cache::Key key1(0, SkMatrix::I(), clip, image->uniqueID(), image->subset());
37 SkImageFilter::Cache::Key key2(0, SkMatrix::I(), clip, subset->uniqueID(), subset->subset());
38
39 SkIPoint offset = SkIPoint::Make(3, 4);
40 cache->set(key1, image, offset);
41
42 SkIPoint foundOffset;
43
44 SkSpecialImage* foundImage = cache->get(key1, &foundOffset);
45 REPORTER_ASSERT(reporter, foundImage);
46 REPORTER_ASSERT(reporter, offset == foundOffset);
47
48 REPORTER_ASSERT(reporter, !cache->get(key2, &foundOffset));
49}
50
51// If either id is different or the clip or the matrix are different the
52// cached image won't be found. Even if it is caching the same bitmap.
53static void test_dont_find_if_diff_key(skiatest::Reporter* reporter,
54 SkSpecialImage* image,
55 SkSpecialImage* subset) {
56 static const size_t kCacheSize = 1000000;
57 SkAutoTUnref<SkImageFilter::Cache> cache(SkImageFilter::Cache::Create(kCacheSize));
58
59 SkIRect clip1 = SkIRect::MakeWH(100, 100);
60 SkIRect clip2 = SkIRect::MakeWH(200, 200);
61 SkImageFilter::Cache::Key key0(0, SkMatrix::I(), clip1, image->uniqueID(), image->subset());
62 SkImageFilter::Cache::Key key1(1, SkMatrix::I(), clip1, image->uniqueID(), image->subset());
63 SkImageFilter::Cache::Key key2(0, SkMatrix::MakeTrans(5, 5), clip1,
64 image->uniqueID(), image->subset());
65 SkImageFilter::Cache::Key key3(0, SkMatrix::I(), clip2, image->uniqueID(), image->subset());
66 SkImageFilter::Cache::Key key4(0, SkMatrix::I(), clip1, subset->uniqueID(), subset->subset());
67
68 SkIPoint offset = SkIPoint::Make(3, 4);
69 cache->set(key0, image, offset);
70
71 SkIPoint foundOffset;
72 REPORTER_ASSERT(reporter, !cache->get(key1, &foundOffset));
73 REPORTER_ASSERT(reporter, !cache->get(key2, &foundOffset));
74 REPORTER_ASSERT(reporter, !cache->get(key3, &foundOffset));
75 REPORTER_ASSERT(reporter, !cache->get(key4, &foundOffset));
76}
77
78// Test purging when the max cache size is exceeded
79static void test_internal_purge(skiatest::Reporter* reporter, SkSpecialImage* image) {
80 SkASSERT(image->getSize());
mtklein03762fe2016-02-21 13:36:50 -080081 const size_t kCacheSize = image->getSize() + 10;
robertphillipsdf7bb472016-02-19 08:19:40 -080082 SkAutoTUnref<SkImageFilter::Cache> cache(SkImageFilter::Cache::Create(kCacheSize));
83
84 SkIRect clip = SkIRect::MakeWH(100, 100);
85 SkImageFilter::Cache::Key key1(0, SkMatrix::I(), clip, image->uniqueID(), image->subset());
86 SkImageFilter::Cache::Key key2(1, SkMatrix::I(), clip, image->uniqueID(), image->subset());
87
88 SkIPoint offset = SkIPoint::Make(3, 4);
89 cache->set(key1, image, offset);
90
91 SkIPoint foundOffset;
92
93 REPORTER_ASSERT(reporter, cache->get(key1, &foundOffset));
94
95 // This should knock the first one out of the cache
96 cache->set(key2, image, offset);
97
98 REPORTER_ASSERT(reporter, cache->get(key2, &foundOffset));
99 REPORTER_ASSERT(reporter, !cache->get(key1, &foundOffset));
100}
101
102// Exercise the purgeByKeys and purge methods
103static void test_explicit_purging(skiatest::Reporter* reporter,
104 SkSpecialImage* image,
105 SkSpecialImage* subset) {
106 static const size_t kCacheSize = 1000000;
107 SkAutoTUnref<SkImageFilter::Cache> cache(SkImageFilter::Cache::Create(kCacheSize));
108
109 SkIRect clip = SkIRect::MakeWH(100, 100);
110 SkImageFilter::Cache::Key key1(0, SkMatrix::I(), clip, image->uniqueID(), image->subset());
111 SkImageFilter::Cache::Key key2(1, SkMatrix::I(), clip, subset->uniqueID(), image->subset());
112
113 SkIPoint offset = SkIPoint::Make(3, 4);
114 cache->set(key1, image, offset);
115 cache->set(key2, image, offset);
116
117 SkIPoint foundOffset;
118
119 REPORTER_ASSERT(reporter, cache->get(key1, &foundOffset));
120 REPORTER_ASSERT(reporter, cache->get(key2, &foundOffset));
121
122 cache->purgeByKeys(&key1, 1);
123
124 REPORTER_ASSERT(reporter, !cache->get(key1, &foundOffset));
125 REPORTER_ASSERT(reporter, cache->get(key2, &foundOffset));
126
127 cache->purge();
128
129 REPORTER_ASSERT(reporter, !cache->get(key1, &foundOffset));
130 REPORTER_ASSERT(reporter, !cache->get(key2, &foundOffset));
131}
132
133DEF_TEST(ImageFilterCache_RasterBacked, reporter) {
134 SkBitmap srcBM = create_bm();
135
136 const SkIRect& full = SkIRect::MakeWH(kFullSize, kFullSize);
137
138 SkAutoTUnref<SkSpecialImage> fullImg(SkSpecialImage::NewFromRaster(nullptr, full, srcBM));
139
140 const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
141
142 SkAutoTUnref<SkSpecialImage> subsetImg(SkSpecialImage::NewFromRaster(nullptr, subset, srcBM));
143
144 test_find_existing(reporter, fullImg, subsetImg);
145 test_dont_find_if_diff_key(reporter, fullImg, subsetImg);
146 test_internal_purge(reporter, fullImg);
147 test_explicit_purging(reporter, fullImg, subsetImg);
148}
149
robertphillipsdf7bb472016-02-19 08:19:40 -0800150
robertphillipscbc5bcc2016-02-19 10:41:12 -0800151// Shared test code for both the raster and gpu-backed image cases
152static void test_image_backed(skiatest::Reporter* reporter, SkImage* srcImage) {
robertphillipsdf7bb472016-02-19 08:19:40 -0800153 const SkIRect& full = SkIRect::MakeWH(kFullSize, kFullSize);
154
robertphillips6ac97b72016-03-09 05:17:10 -0800155 SkAutoTUnref<SkSpecialImage> fullImg(SkSpecialImage::NewFromImage(nullptr, full, srcImage));
robertphillipsdf7bb472016-02-19 08:19:40 -0800156
157 const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
158
robertphillips6ac97b72016-03-09 05:17:10 -0800159 SkAutoTUnref<SkSpecialImage> subsetImg(SkSpecialImage::NewFromImage(nullptr,
160 subset,
161 srcImage));
robertphillipsdf7bb472016-02-19 08:19:40 -0800162
163 test_find_existing(reporter, fullImg, subsetImg);
164 test_dont_find_if_diff_key(reporter, fullImg, subsetImg);
165 test_internal_purge(reporter, fullImg);
166 test_explicit_purging(reporter, fullImg, subsetImg);
167}
168
robertphillipscbc5bcc2016-02-19 10:41:12 -0800169DEF_TEST(ImageFilterCache_ImageBackedRaster, reporter) {
170 SkBitmap srcBM = create_bm();
171
reed9ce9d672016-03-17 10:51:11 -0700172 sk_sp<SkImage> srcImage(SkImage::MakeFromBitmap(srcBM));
robertphillipscbc5bcc2016-02-19 10:41:12 -0800173
reed9ce9d672016-03-17 10:51:11 -0700174 test_image_backed(reporter, srcImage.get());
robertphillipscbc5bcc2016-02-19 10:41:12 -0800175}
176
robertphillipsdf7bb472016-02-19 08:19:40 -0800177#if SK_SUPPORT_GPU
178#include "GrContext.h"
179
robertphillipscbc5bcc2016-02-19 10:41:12 -0800180static GrTexture* create_texture(GrContext* context) {
robertphillipsdf7bb472016-02-19 08:19:40 -0800181 SkBitmap srcBM = create_bm();
182
183 GrSurfaceDesc desc;
184 desc.fConfig = kSkia8888_GrPixelConfig;
185 desc.fFlags = kNone_GrSurfaceFlags;
186 desc.fWidth = kFullSize;
187 desc.fHeight = kFullSize;
188
bsalomon5ec26ae2016-02-25 08:33:02 -0800189 return context->textureProvider()->createTexture(desc, SkBudgeted::kNo, srcBM.getPixels(), 0);
robertphillipscbc5bcc2016-02-19 10:41:12 -0800190}
191
192DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ImageFilterCache_ImageBackedGPU, reporter, context) {
193 SkAutoTUnref<GrTexture> srcTexture(create_texture(context));
194 if (!srcTexture) {
195 return;
196 }
197
198 GrBackendTextureDesc backendDesc;
199 backendDesc.fConfig = kSkia8888_GrPixelConfig;
200 backendDesc.fFlags = kNone_GrBackendTextureFlag;
201 backendDesc.fWidth = kFullSize;
202 backendDesc.fHeight = kFullSize;
203 backendDesc.fSampleCnt = 0;
204 backendDesc.fTextureHandle = srcTexture->getTextureHandle();
reed9ce9d672016-03-17 10:51:11 -0700205 sk_sp<SkImage> srcImage(SkImage::MakeFromTexture(context, backendDesc, kPremul_SkAlphaType));
robertphillipscbc5bcc2016-02-19 10:41:12 -0800206 if (!srcImage) {
207 return;
208 }
209
reed9ce9d672016-03-17 10:51:11 -0700210 test_image_backed(reporter, srcImage.get());
robertphillipscbc5bcc2016-02-19 10:41:12 -0800211}
212
213DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ImageFilterCache_GPUBacked, reporter, context) {
214
215 SkAutoTUnref<GrTexture> srcTexture(create_texture(context));
robertphillipsdf7bb472016-02-19 08:19:40 -0800216 if (!srcTexture) {
217 return;
218 }
219
220 const SkIRect& full = SkIRect::MakeWH(kFullSize, kFullSize);
221
222 SkAutoTUnref<SkSpecialImage> fullImg(SkSpecialImage::NewFromGpu(
mtklein03762fe2016-02-21 13:36:50 -0800223 nullptr, full,
robertphillipsdf7bb472016-02-19 08:19:40 -0800224 kNeedNewImageUniqueID_SpecialImage,
225 srcTexture));
226
227 const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
228
229 SkAutoTUnref<SkSpecialImage> subsetImg(SkSpecialImage::NewFromGpu(
mtklein03762fe2016-02-21 13:36:50 -0800230 nullptr, subset,
robertphillipsdf7bb472016-02-19 08:19:40 -0800231 kNeedNewImageUniqueID_SpecialImage,
232 srcTexture));
233
234 test_find_existing(reporter, fullImg, subsetImg);
235 test_dont_find_if_diff_key(reporter, fullImg, subsetImg);
236 test_internal_purge(reporter, fullImg);
237 test_explicit_purging(reporter, fullImg, subsetImg);
238}
239#endif
240