blob: 08d36780733afa4ee9ce2f0771bcd2878a9c6b98 [file] [log] [blame]
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001/*
2 * Copyright 2013 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
bsalomon3f324322015-04-08 11:01:54 -07008// Include here to ensure SK_SUPPORT_GPU is set correctly before it is examined.
9#include "SkTypes.h"
10
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000011#if SK_SUPPORT_GPU
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000012
bsalomonbcf0a522014-10-08 08:40:09 -070013#include "GrContext.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000014#include "GrContextFactory.h"
bsalomonbcf0a522014-10-08 08:40:09 -070015#include "GrGpu.h"
bsalomon3582d3e2015-02-13 14:20:05 -080016#include "GrGpuResourceCacheAccess.h"
17#include "GrGpuResourcePriv.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080018#include "GrRenderTarget.h"
19#include "GrRenderTargetPriv.h"
bsalomon0ea80f42015-02-11 10:49:59 -080020#include "GrResourceCache.h"
bsalomon473addf2015-10-02 07:49:05 -070021#include "GrResourceProvider.h"
bsalomon6dc6f5f2015-06-18 09:12:16 -070022#include "GrTest.h"
bsalomonbcf0a522014-10-08 08:40:09 -070023#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080024#include "SkGr.h"
25#include "SkMessageBus.h"
reed69f6f002014-09-18 06:09:44 -070026#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000027#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000028
29static const int gWidth = 640;
30static const int gHeight = 480;
31
32////////////////////////////////////////////////////////////////////////////////
bsalomon33435572014-11-05 14:47:41 -080033static void test_cache(skiatest::Reporter* reporter, GrContext* context, SkCanvas* canvas) {
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000034 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
35
36 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000037 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000038 src.eraseColor(SK_ColorBLACK);
39 size_t srcSize = src.getSize();
40
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000041 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070042 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000043
44 int oldMaxNum;
45 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000046 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000047
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000048 // Set the cache limits so we can fit 10 "src" images and the
49 // max number of textures doesn't matter
50 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000051 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000052
53 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000054 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000055
56 for (int i = 0; i < 100; ++i) {
57 canvas->drawBitmap(src, 0, 0);
58 canvas->readPixels(size, &readback);
59
60 // "modify" the src texture
61 src.notifyPixelsChanged();
62
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000063 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070064 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000065
66 // we should never go over the size limit
67 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
68 }
69
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000070 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000071}
72
bsalomon02a44a42015-02-19 09:09:00 -080073static void test_stencil_buffers(skiatest::Reporter* reporter, GrContext* context) {
74 GrSurfaceDesc smallDesc;
75 smallDesc.fFlags = kRenderTarget_GrSurfaceFlag;
76 smallDesc.fConfig = kSkia8888_GrPixelConfig;
77 smallDesc.fWidth = 4;
78 smallDesc.fHeight = 4;
79 smallDesc.fSampleCnt = 0;
80
bsalomond309e7a2015-04-30 14:18:54 -070081 GrTextureProvider* cache = context->textureProvider();
egdanielec00d942015-09-14 12:56:10 -070082 GrResourceProvider* resourceProvider = context->resourceProvider();
bsalomon02a44a42015-02-19 09:09:00 -080083 // Test that two budgeted RTs with the same desc share a stencil buffer.
bsalomond309e7a2015-04-30 14:18:54 -070084 SkAutoTUnref<GrTexture> smallRT0(cache->createTexture(smallDesc, true));
bsalomon6bc1b5f2015-02-23 09:06:38 -080085 if (smallRT0 && smallRT0->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -070086 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -080087 }
88
bsalomond309e7a2015-04-30 14:18:54 -070089 SkAutoTUnref<GrTexture> smallRT1(cache->createTexture(smallDesc, true));
bsalomon6bc1b5f2015-02-23 09:06:38 -080090 if (smallRT1 && smallRT1->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -070091 resourceProvider->attachStencilAttachment(smallRT1->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -080092 }
93
egdaniel8dc7c3a2015-04-16 11:22:42 -070094 REPORTER_ASSERT(reporter,
95 smallRT0 && smallRT1 &&
96 smallRT0->asRenderTarget() && smallRT1->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -070097 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) ==
98 resourceProvider->attachStencilAttachment(smallRT1->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -080099
100 // An unbudgeted RT with the same desc should also share.
bsalomond309e7a2015-04-30 14:18:54 -0700101 SkAutoTUnref<GrTexture> smallRT2(cache->createTexture(smallDesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800102 if (smallRT2 && smallRT2->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700103 resourceProvider->attachStencilAttachment(smallRT2->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800104 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700105 REPORTER_ASSERT(reporter,
106 smallRT0 && smallRT2 &&
107 smallRT0->asRenderTarget() && smallRT2->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700108 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) ==
109 resourceProvider->attachStencilAttachment(smallRT2->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800110
111 // An RT with a much larger size should not share.
112 GrSurfaceDesc bigDesc;
113 bigDesc.fFlags = kRenderTarget_GrSurfaceFlag;
114 bigDesc.fConfig = kSkia8888_GrPixelConfig;
115 bigDesc.fWidth = 400;
116 bigDesc.fHeight = 200;
117 bigDesc.fSampleCnt = 0;
bsalomond309e7a2015-04-30 14:18:54 -0700118 SkAutoTUnref<GrTexture> bigRT(cache->createTexture(bigDesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800119 if (bigRT && bigRT->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700120 resourceProvider->attachStencilAttachment(bigRT->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800121 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700122 REPORTER_ASSERT(reporter,
123 smallRT0 && bigRT &&
124 smallRT0->asRenderTarget() && bigRT->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700125 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) !=
126 resourceProvider->attachStencilAttachment(bigRT->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800127
bsalomon76228632015-05-29 08:02:10 -0700128 if (context->caps()->maxSampleCount() >= 4) {
bsalomon02a44a42015-02-19 09:09:00 -0800129 // An RT with a different sample count should not share.
130 GrSurfaceDesc smallMSAADesc = smallDesc;
131 smallMSAADesc.fSampleCnt = 4;
bsalomond309e7a2015-04-30 14:18:54 -0700132 SkAutoTUnref<GrTexture> smallMSAART0(cache->createTexture(smallMSAADesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800133 if (smallMSAART0 && smallMSAART0->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700134 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800135 }
bsalomonb602d4d2015-02-19 12:05:58 -0800136#ifdef SK_BUILD_FOR_ANDROID
137 if (!smallMSAART0) {
138 // The nexus player seems to fail to create MSAA textures.
139 return;
140 }
141#endif
bsalomon6bc1b5f2015-02-23 09:06:38 -0800142 REPORTER_ASSERT(reporter,
143 smallRT0 && smallMSAART0 &&
144 smallRT0->asRenderTarget() && smallMSAART0->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700145 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) !=
146 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800147 // A second MSAA RT should share with the first MSAA RT.
bsalomond309e7a2015-04-30 14:18:54 -0700148 SkAutoTUnref<GrTexture> smallMSAART1(cache->createTexture(smallMSAADesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800149 if (smallMSAART1 && smallMSAART1->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700150 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800151 }
152 REPORTER_ASSERT(reporter,
153 smallMSAART0 && smallMSAART1 &&
154 smallMSAART0->asRenderTarget() &&
155 smallMSAART1->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700156 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget()) ==
157 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800158 // But not one with a larger sample count should not. (Also check that the request for 4
159 // samples didn't get rounded up to >= 8 or else they could share.).
bsalomon76228632015-05-29 08:02:10 -0700160 if (context->caps()->maxSampleCount() >= 8 &&
161 smallMSAART0 && smallMSAART0->asRenderTarget() &&
vbuzinovdded6962015-06-12 08:59:45 -0700162 smallMSAART0->asRenderTarget()->numColorSamples() < 8) {
bsalomon02a44a42015-02-19 09:09:00 -0800163 smallMSAADesc.fSampleCnt = 8;
bsalomond309e7a2015-04-30 14:18:54 -0700164 smallMSAART1.reset(cache->createTexture(smallMSAADesc, false));
165 SkAutoTUnref<GrTexture> smallMSAART1(cache->createTexture(smallMSAADesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800166 if (smallMSAART1 && smallMSAART1->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700167 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800168 }
169 REPORTER_ASSERT(reporter,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700170 smallMSAART0 && smallMSAART1 &&
171 smallMSAART0->asRenderTarget() &&
172 smallMSAART1->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700173 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget()) !=
174 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800175 }
176 }
177}
178
bsalomon6dc6f5f2015-06-18 09:12:16 -0700179static void test_wrapped_resources(skiatest::Reporter* reporter, GrContext* context) {
jvanverth672bb7f2015-07-13 07:19:57 -0700180 const GrGpu* gpu = context->getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700181 // this test is only valid for GL
182 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700183 return;
184 }
185
bsalomon091f60c2015-11-10 11:54:56 -0800186 GrBackendObject texHandles[2];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700187 static const int kW = 100;
188 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700189
bsalomon091f60c2015-11-10 11:54:56 -0800190 texHandles[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
191 texHandles[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
jvanverth672bb7f2015-07-13 07:19:57 -0700192
bsalomon6dc6f5f2015-06-18 09:12:16 -0700193 context->resetContext();
194
195 GrBackendTextureDesc desc;
196 desc.fConfig = kBGRA_8888_GrPixelConfig;
197 desc.fWidth = kW;
198 desc.fHeight = kH;
199
bsalomon091f60c2015-11-10 11:54:56 -0800200 desc.fTextureHandle = texHandles[0];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700201 SkAutoTUnref<GrTexture> borrowed(context->textureProvider()->wrapBackendTexture(
jvanverth3e5f5552015-07-16 07:46:07 -0700202 desc, kBorrow_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700203
bsalomon091f60c2015-11-10 11:54:56 -0800204 desc.fTextureHandle = texHandles[1];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700205 SkAutoTUnref<GrTexture> adopted(context->textureProvider()->wrapBackendTexture(
jvanverth3e5f5552015-07-16 07:46:07 -0700206 desc, kAdopt_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700207
208 REPORTER_ASSERT(reporter, SkToBool(borrowed) && SkToBool(adopted));
209 if (!SkToBool(borrowed) || !SkToBool(adopted)) {
210 return;
211 }
212
halcanary96fcdcc2015-08-27 07:41:13 -0700213 borrowed.reset(nullptr);
214 adopted.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700215
216 context->flush();
217
bsalomon091f60c2015-11-10 11:54:56 -0800218 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(texHandles[0]);
219 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(texHandles[1]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700220
221 REPORTER_ASSERT(reporter, borrowedIsAlive);
222 REPORTER_ASSERT(reporter, !adoptedIsAlive);
223
bsalomon67d76202015-11-11 12:40:42 -0800224 gpu->deleteTestingOnlyBackendTexture(texHandles[0], !borrowedIsAlive);
225 gpu->deleteTestingOnlyBackendTexture(texHandles[1], !adoptedIsAlive);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700226
227 context->resetContext();
228}
229
bsalomon6d3fe022014-07-25 08:35:45 -0700230class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800231 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000232public:
robertphillips6e83ac72015-08-13 05:19:14 -0700233 static const size_t kDefaultSize = 100;
mtklein2766c002015-06-26 11:45:03 -0700234
bsalomon1c60dfe2015-01-21 09:32:40 -0800235 /** Property that distinctly categorizes the resource.
236 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800237 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800238
bsalomon5236cf42015-01-14 10:42:08 -0800239 TestResource(GrGpu* gpu, size_t size, GrGpuResource::LifeCycle lifeCycle)
240 : INHERITED(gpu, lifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700241 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800242 , fSize(size)
bsalomon23e619c2015-02-06 11:54:28 -0800243 , fProperty(kA_SimulatedProperty) {
bsalomon5236cf42015-01-14 10:42:08 -0800244 ++fNumAlive;
245 this->registerWithCache();
246 }
247
248 TestResource(GrGpu* gpu, GrGpuResource::LifeCycle lifeCycle)
249 : INHERITED(gpu, lifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700250 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800251 , fSize(kDefaultSize)
bsalomon23e619c2015-02-06 11:54:28 -0800252 , fProperty(kA_SimulatedProperty) {
bsalomondace19e2014-11-17 07:34:06 -0800253 ++fNumAlive;
254 this->registerWithCache();
255 }
256
bsalomon8b79d232014-11-10 10:19:06 -0800257 TestResource(GrGpu* gpu)
bsalomon5236cf42015-01-14 10:42:08 -0800258 : INHERITED(gpu, kCached_LifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700259 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800260 , fSize(kDefaultSize)
bsalomon23e619c2015-02-06 11:54:28 -0800261 , fProperty(kA_SimulatedProperty) {
bsalomon8b79d232014-11-10 10:19:06 -0800262 ++fNumAlive;
263 this->registerWithCache();
264 }
265
bsalomon23e619c2015-02-06 11:54:28 -0800266 static TestResource* CreateScratch(GrGpu* gpu, SimulatedProperty property, bool cached = true) {
halcanary385fe4d2015-08-26 13:07:48 -0700267 return new TestResource(gpu, property, cached, kScratchConstructor);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000268 }
269
270 ~TestResource() {
bsalomon33435572014-11-05 14:47:41 -0800271 --fNumAlive;
bsalomon71cb0c22014-11-14 12:10:14 -0800272 SkSafeUnref(fToDelete);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000273 }
274
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000275 void setSize(size_t size) {
276 fSize = size;
277 this->didChangeGpuMemorySize();
278 }
279
bsalomon33435572014-11-05 14:47:41 -0800280 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000281
bsalomon71cb0c22014-11-14 12:10:14 -0800282 void setUnrefWhenDestroyed(TestResource* resource) {
283 SkRefCnt_SafeAssign(fToDelete, resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000284 }
285
bsalomon1c60dfe2015-01-21 09:32:40 -0800286 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
287 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
288 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800289 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
290 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800291 }
292 }
293
294 static size_t ExpectedScratchKeySize() {
295 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
296 }
297
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000298private:
bsalomon24db3b12015-01-23 04:24:04 -0800299 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800300
bsalomonc2f35b72015-01-23 07:19:22 -0800301 TestResource(GrGpu* gpu, SimulatedProperty property, bool cached, ScratchConstructor)
302 : INHERITED(gpu, cached ? kCached_LifeCycle : kUncached_LifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700303 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800304 , fSize(kDefaultSize)
305 , fProperty(property) {
306 GrScratchKey scratchKey;
307 ComputeScratchKey(fProperty, &scratchKey);
308 this->setScratchKey(scratchKey);
309 ++fNumAlive;
310 this->registerWithCache();
311 }
312
mtklein36352bf2015-03-25 18:17:31 -0700313 size_t onGpuMemorySize() const override { return fSize; }
bsalomon69ed47f2014-11-12 11:13:39 -0800314
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000315 TestResource* fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000316 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800317 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800318 SimulatedProperty fProperty;
bsalomon6d3fe022014-07-25 08:35:45 -0700319 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000320};
bsalomon33435572014-11-05 14:47:41 -0800321int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000322
bsalomonc2f35b72015-01-23 07:19:22 -0800323class Mock {
324public:
325 Mock(int maxCnt, size_t maxBytes) {
326 fContext.reset(GrContext::CreateMockContext());
327 SkASSERT(fContext);
328 fContext->setResourceCacheLimits(maxCnt, maxBytes);
bsalomon0ea80f42015-02-11 10:49:59 -0800329 GrResourceCache* cache = fContext->getResourceCache();
330 cache->purgeAllUnlocked();
331 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800332 }
bsalomonc2f35b72015-01-23 07:19:22 -0800333
bsalomon0ea80f42015-02-11 10:49:59 -0800334 GrResourceCache* cache() { return fContext->getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800335
336 GrContext* context() { return fContext; }
337
338private:
339 SkAutoTUnref<GrContext> fContext;
340};
341
342static void test_no_key(skiatest::Reporter* reporter) {
343 Mock mock(10, 30000);
344 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800345 GrResourceCache* cache = mock.cache();
bsalomon71cb0c22014-11-14 12:10:14 -0800346
347 // Create a bunch of resources with no keys
halcanary385fe4d2015-08-26 13:07:48 -0700348 TestResource* a = new TestResource(context->getGpu());
349 TestResource* b = new TestResource(context->getGpu());
350 TestResource* c = new TestResource(context->getGpu());
351 TestResource* d = new TestResource(context->getGpu());
bsalomon71cb0c22014-11-14 12:10:14 -0800352 a->setSize(11);
353 b->setSize(12);
354 c->setSize(13);
355 d->setSize(14);
356
357 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800358 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800359 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800360 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800361
362 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800363 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800364 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
365
bsalomon8718aaf2015-02-19 07:24:21 -0800366 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800367
368 a->unref();
369 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800370 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800371 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800372 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800373
374 c->unref();
375 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800376 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800377 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800378 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800379
380 d->unref();
381 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800382 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
383 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800384
385 b->unref();
386 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800387 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
388 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800389}
390
bsalomon24db3b12015-01-23 04:24:04 -0800391// Each integer passed as a template param creates a new domain.
bsalomon8718aaf2015-02-19 07:24:21 -0800392template <int> static void make_unique_key(GrUniqueKey* key, int data) {
393 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
394 GrUniqueKey::Builder builder(key, d, 1);
bsalomon24db3b12015-01-23 04:24:04 -0800395 builder[0] = data;
396}
397
bsalomon84c8e622014-11-17 09:33:27 -0800398static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800399 Mock mock(10, 300);
400 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800401 GrResourceCache* cache = mock.cache();
bsalomondace19e2014-11-17 07:34:06 -0800402
bsalomon8718aaf2015-02-19 07:24:21 -0800403 GrUniqueKey uniqueKey;
404 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800405
bsalomon8718aaf2015-02-19 07:24:21 -0800406 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800407 TestResource* scratch =
bsalomon23e619c2015-02-06 11:54:28 -0800408 TestResource::CreateScratch(context->getGpu(), TestResource::kB_SimulatedProperty);
bsalomondace19e2014-11-17 07:34:06 -0800409 scratch->setSize(10);
halcanary385fe4d2015-08-26 13:07:48 -0700410 TestResource* unique = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800411 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800412 unique->resourcePriv().setUniqueKey(uniqueKey);
halcanary385fe4d2015-08-26 13:07:48 -0700413 TestResource* wrapped = new TestResource(context->getGpu(), GrGpuResource::kBorrowed_LifeCycle);
bsalomon5236cf42015-01-14 10:42:08 -0800414 wrapped->setSize(12);
halcanary385fe4d2015-08-26 13:07:48 -0700415 TestResource* unbudgeted =
416 new TestResource(context->getGpu(), GrGpuResource::kUncached_LifeCycle);
bsalomon84c8e622014-11-17 09:33:27 -0800417 unbudgeted->setSize(13);
bsalomondace19e2014-11-17 07:34:06 -0800418
bsalomon8718aaf2015-02-19 07:24:21 -0800419 // Make sure we can't add a unique key to the wrapped resource
420 GrUniqueKey uniqueKey2;
421 make_unique_key<0>(&uniqueKey2, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800422 wrapped->resourcePriv().setUniqueKey(uniqueKey2);
halcanary96fcdcc2015-08-27 07:41:13 -0700423 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefUniqueResource(uniqueKey2));
bsalomondace19e2014-11-17 07:34:06 -0800424
425 // Make sure sizes are as we expect
bsalomon0ea80f42015-02-11 10:49:59 -0800426 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800427 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800428 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800429 cache->getResourceBytes());
430 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800431 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800432 cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800433
bsalomon63c992f2015-01-23 12:47:59 -0800434 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800435 cache->purgeAllUnlocked();
436 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800437 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800438 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800439 cache->getResourceBytes());
440 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800441 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800442 cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800443
444 // Unreffing the wrapped resource should free it right away.
445 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800446 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800447 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800448 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800449
bsalomon84c8e622014-11-17 09:33:27 -0800450 // Now try freeing the budgeted resources first
halcanary385fe4d2015-08-26 13:07:48 -0700451 wrapped = new TestResource(context->getGpu(), GrGpuResource::kBorrowed_LifeCycle);
bsalomondace19e2014-11-17 07:34:06 -0800452 scratch->setSize(12);
bsalomon8718aaf2015-02-19 07:24:21 -0800453 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800454 cache->purgeAllUnlocked();
455 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800456 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrapped->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800457 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
458 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
459 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800460
461 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800462 cache->purgeAllUnlocked();
463 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800464 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrapped->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800465 cache->getResourceBytes());
466 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
467 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800468
469 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800470 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
471 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
472 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
473 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800474
475 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800476 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
477 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
478 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
479 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800480}
481
bsalomon5236cf42015-01-14 10:42:08 -0800482static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800483 Mock mock(10, 30000);
484 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800485 GrResourceCache* cache = mock.cache();
bsalomon5236cf42015-01-14 10:42:08 -0800486
bsalomon8718aaf2015-02-19 07:24:21 -0800487 GrUniqueKey uniqueKey;
488 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800489
490 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800491 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800492 TestResource* wrapped;
493 TestResource* unbudgeted;
494
495 // A large uncached or wrapped resource shouldn't evict anything.
bsalomon23e619c2015-02-06 11:54:28 -0800496 scratch = TestResource::CreateScratch(context->getGpu(), TestResource::kB_SimulatedProperty);
bsalomon5236cf42015-01-14 10:42:08 -0800497 scratch->setSize(10);
498 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800499 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
500 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
501 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
502 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800503
halcanary385fe4d2015-08-26 13:07:48 -0700504 unique = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800505 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800506 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800507 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800508 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
509 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
510 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
511 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800512
bsalomon0ea80f42015-02-11 10:49:59 -0800513 size_t large = 2 * cache->getResourceBytes();
halcanary385fe4d2015-08-26 13:07:48 -0700514 unbudgeted = new TestResource(context->getGpu(), large, GrGpuResource::kUncached_LifeCycle);
bsalomon0ea80f42015-02-11 10:49:59 -0800515 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
516 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
517 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
518 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800519
520 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800521 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
522 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
523 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
524 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800525
halcanary385fe4d2015-08-26 13:07:48 -0700526 wrapped = new TestResource(context->getGpu(), large, GrGpuResource::kBorrowed_LifeCycle);
bsalomon0ea80f42015-02-11 10:49:59 -0800527 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
528 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
529 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
530 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800531
532 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800533 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
534 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
535 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
536 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800537
bsalomon0ea80f42015-02-11 10:49:59 -0800538 cache->purgeAllUnlocked();
539 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
540 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
541 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
542 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800543}
544
bsalomon3582d3e2015-02-13 14:20:05 -0800545// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
546void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
547/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800548 Mock mock(10, 300);
549 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800550 GrResourceCache* cache = mock.cache();
bsalomonc2f35b72015-01-23 07:19:22 -0800551
552 TestResource* resource =
bsalomon23e619c2015-02-06 11:54:28 -0800553 TestResource::CreateScratch(context->getGpu(), TestResource::kA_SimulatedProperty, false);
bsalomonc2f35b72015-01-23 07:19:22 -0800554 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800555 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800556
557 size_t size = resource->gpuMemorySize();
558 for (int i = 0; i < 2; ++i) {
559 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800560 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800561 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon3582d3e2015-02-13 14:20:05 -0800562 REPORTER_ASSERT(reporter, !resource->resourcePriv().isBudgeted());
halcanary96fcdcc2015-08-27 07:41:13 -0700563 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomon0ea80f42015-02-11 10:49:59 -0800564 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
565 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
566 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
567 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800568
569 // Once it is unrefed, it should become available as scratch.
570 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800571 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
572 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
573 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
574 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
robertphillips6e83ac72015-08-13 05:19:14 -0700575 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomonc2f35b72015-01-23 07:19:22 -0800576 REPORTER_ASSERT(reporter, resource);
bsalomon3582d3e2015-02-13 14:20:05 -0800577 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800578 REPORTER_ASSERT(reporter, resource->cacheAccess().isScratch());
bsalomon3582d3e2015-02-13 14:20:05 -0800579 REPORTER_ASSERT(reporter, resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800580
581 if (0 == i) {
582 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
583 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800584 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800585 } else {
586 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800587 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800588 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
589 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
590 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
591 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800592 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800593 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon3582d3e2015-02-13 14:20:05 -0800594 REPORTER_ASSERT(reporter, resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800595
596 // now when it is unrefed it should die since it has no key.
597 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800598 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
599 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
600 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
601 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800602 }
bsalomon8b79d232014-11-10 10:19:06 -0800603 }
bsalomonc2f35b72015-01-23 07:19:22 -0800604}
605
606static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
607 Mock mock(5, 30000);
608 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800609 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800610
bsalomon8b79d232014-11-10 10:19:06 -0800611 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800612 TestResource* a = TestResource::CreateScratch(context->getGpu(),
613 TestResource::kB_SimulatedProperty);
614 TestResource* b = TestResource::CreateScratch(context->getGpu(),
615 TestResource::kB_SimulatedProperty);
bsalomon8b79d232014-11-10 10:19:06 -0800616 a->setSize(11);
617 b->setSize(12);
bsalomon1c60dfe2015-01-21 09:32:40 -0800618 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800619 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800620 // Check for negative case consistency. (leaks upon test failure.)
halcanary96fcdcc2015-08-27 07:41:13 -0700621 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(scratchKey1, TestResource::kDefaultSize, 0));
bsalomon1c60dfe2015-01-21 09:32:40 -0800622
623 GrScratchKey scratchKey;
bsalomon23e619c2015-02-06 11:54:28 -0800624 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800625
bsalomon0ea80f42015-02-11 10:49:59 -0800626 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon8b79d232014-11-10 10:19:06 -0800627 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800628 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
629 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800630 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800631 cache->getResourceBytes());
bsalomon8b79d232014-11-10 10:19:06 -0800632
bsalomon63c992f2015-01-23 12:47:59 -0800633 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800634 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800635 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800636 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800637
638 // Unref but don't purge
639 a->unref();
640 b->unref();
641 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800642 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800643
bsalomon63c992f2015-01-23 12:47:59 -0800644 // Purge again. This time resources should be purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800645 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800646 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800647 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
648 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800649}
650
bsalomon10e23ca2014-11-25 05:52:06 -0800651static void test_remove_scratch_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800652 Mock mock(5, 30000);
653 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800654 GrResourceCache* cache = mock.cache();
bsalomon10e23ca2014-11-25 05:52:06 -0800655
bsalomon10e23ca2014-11-25 05:52:06 -0800656 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800657 TestResource* a = TestResource::CreateScratch(context->getGpu(),
658 TestResource::kB_SimulatedProperty);
659 TestResource* b = TestResource::CreateScratch(context->getGpu(),
660 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800661 a->unref();
662 b->unref();
663
bsalomon1c60dfe2015-01-21 09:32:40 -0800664 GrScratchKey scratchKey;
665 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800666 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800667 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700668 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800669
bsalomon0ea80f42015-02-11 10:49:59 -0800670 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800671 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800672 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800673 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
674 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800675
676 // Find the first resource and remove its scratch key
677 GrGpuResource* find;
robertphillips6e83ac72015-08-13 05:19:14 -0700678 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800679 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800680 // It's still alive, but not cached by scratch key anymore
681 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800682 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
683 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800684
685 // The cache should immediately delete it when it's unrefed since it isn't accessible.
686 find->unref();
687 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800688 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
689 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800690
691 // Repeat for the second resource.
robertphillips6e83ac72015-08-13 05:19:14 -0700692 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800693 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800694 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800695 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
696 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800697
698 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800699 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800700 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800701 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
702 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800703
704 find->unref();
705 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800706 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
707 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800708}
709
bsalomon1c60dfe2015-01-21 09:32:40 -0800710static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800711 Mock mock(5, 30000);
712 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800713 GrResourceCache* cache = mock.cache();
bsalomon1c60dfe2015-01-21 09:32:40 -0800714
715 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800716 TestResource* a = TestResource::CreateScratch(context->getGpu(),
717 TestResource::kB_SimulatedProperty);
718 TestResource* b = TestResource::CreateScratch(context->getGpu(),
719 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800720 a->unref();
721 b->unref();
722
723 GrScratchKey scratchKey;
724 // Ensure that scratch key comparison and assignment is consistent.
725 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800726 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800727 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800728 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800729 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
730 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
731 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
732 scratchKey = scratchKey1;
733 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
734 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
735 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
736 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
737 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
738 scratchKey = scratchKey2;
739 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
740 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
741 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
742 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
743 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
744
745 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800746 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800747 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700748 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800749
750 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800751 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700752 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700753 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800754 find->unref();
755
756 scratchKey2 = scratchKey;
robertphillips6e83ac72015-08-13 05:19:14 -0700757 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700758 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800759 REPORTER_ASSERT(reporter, find == a || find == b);
760
robertphillips6e83ac72015-08-13 05:19:14 -0700761 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700762 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800763 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
764 REPORTER_ASSERT(reporter, find2 != find);
765 find2->unref();
766 find->unref();
767}
768
bsalomon8718aaf2015-02-19 07:24:21 -0800769static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800770 Mock mock(5, 30000);
771 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800772 GrResourceCache* cache = mock.cache();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000773
bsalomon8718aaf2015-02-19 07:24:21 -0800774 GrUniqueKey key;
775 make_unique_key<0>(&key, 0);
bsalomon8b79d232014-11-10 10:19:06 -0800776
bsalomon8718aaf2015-02-19 07:24:21 -0800777 // Create two resources that we will attempt to register with the same unique key.
halcanary385fe4d2015-08-26 13:07:48 -0700778 TestResource* a = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -0800779 a->setSize(11);
bsalomon71cb0c22014-11-14 12:10:14 -0800780
bsalomonf99e9612015-02-19 08:24:16 -0800781 // Set key on resource a.
782 a->resourcePriv().setUniqueKey(key);
783 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
784 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800785
bsalomonf99e9612015-02-19 08:24:16 -0800786 // Make sure that redundantly setting a's key works.
787 a->resourcePriv().setUniqueKey(key);
788 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800789 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800790 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
791 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800792 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
793
bsalomonf99e9612015-02-19 08:24:16 -0800794 // Create resource b and set the same key. It should replace a's unique key cache entry.
halcanary385fe4d2015-08-26 13:07:48 -0700795 TestResource* b = new TestResource(context->getGpu());
bsalomonf99e9612015-02-19 08:24:16 -0800796 b->setSize(12);
797 b->resourcePriv().setUniqueKey(key);
798 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
799 b->unref();
800
801 // Still have two resources because a is still reffed.
802 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
803 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
804 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
805
806 a->unref();
807 // Now a should be gone.
808 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
809 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
810 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
811
812 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
813 // Also make b be unreffed when replacement occurs.
814 b->unref();
halcanary385fe4d2015-08-26 13:07:48 -0700815 TestResource* c = new TestResource(context->getGpu());
bsalomonf99e9612015-02-19 08:24:16 -0800816 GrUniqueKey differentKey;
817 make_unique_key<0>(&differentKey, 1);
818 c->setSize(13);
819 c->resourcePriv().setUniqueKey(differentKey);
820 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
821 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
822 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
823 // c replaces b and b should be immediately purged.
824 c->resourcePriv().setUniqueKey(key);
825 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
826 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
827 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
828
829 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800830 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800831 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
832 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
833 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
834
835 // Drop the ref on c, it should be kept alive because it has a unique key.
836 c->unref();
837 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
838 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
839 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
840
841 // Verify that we can find c, then remove its unique key. It should get purged immediately.
842 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
843 c->resourcePriv().removeUniqueKey();
844 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800845 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
846 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -0800847 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -0700848
849 {
850 GrUniqueKey key2;
851 make_unique_key<0>(&key2, 0);
halcanary385fe4d2015-08-26 13:07:48 -0700852 SkAutoTUnref<TestResource> d(new TestResource(context->getGpu()));
senorblanco84cd6212015-08-04 10:01:58 -0700853 int foo = 4132;
854 SkAutoTUnref<SkData> data(SkData::NewWithCopy(&foo, sizeof(foo)));
855 key2.setCustomData(data.get());
856 d->resourcePriv().setUniqueKey(key2);
857 }
858
859 GrUniqueKey key3;
860 make_unique_key<0>(&key3, 0);
861 SkAutoTUnref<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
862 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000863}
864
bsalomon8b79d232014-11-10 10:19:06 -0800865static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800866 Mock mock(5, 30000);
867 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800868 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800869
bsalomon8718aaf2015-02-19 07:24:21 -0800870 GrUniqueKey key1, key2, key3;
871 make_unique_key<0>(&key1, 1);
872 make_unique_key<0>(&key2, 2);
873 make_unique_key<0>(&key3, 3);
bsalomon8b79d232014-11-10 10:19:06 -0800874
bsalomon23e619c2015-02-06 11:54:28 -0800875 // Add three resources to the cache. Only c is usable as scratch.
halcanary385fe4d2015-08-26 13:07:48 -0700876 TestResource* a = new TestResource(context->getGpu());
877 TestResource* b = new TestResource(context->getGpu());
bsalomon23e619c2015-02-06 11:54:28 -0800878 TestResource* c = TestResource::CreateScratch(context->getGpu(),
879 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -0800880 a->resourcePriv().setUniqueKey(key1);
881 b->resourcePriv().setUniqueKey(key2);
882 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -0800883 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -0800884 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -0800885 c->unref();
886
bsalomon8718aaf2015-02-19 07:24:21 -0800887 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
888 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
889 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800890 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -0800891
bsalomon8718aaf2015-02-19 07:24:21 -0800892 typedef GrUniqueKeyInvalidatedMessage Msg;
893 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -0800894
895 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
896 Bus::Post(Msg(key1));
897 Bus::Post(Msg(key2));
bsalomon0ea80f42015-02-11 10:49:59 -0800898 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800899 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -0800900 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
901 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -0800902 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800903 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800904
905 // Invalidate the third.
bsalomon23e619c2015-02-06 11:54:28 -0800906 Bus::Post(Msg(key3));
bsalomon0ea80f42015-02-11 10:49:59 -0800907 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800908 // we still have a ref on b, c should be recycled as scratch.
909 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800910 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -0800911
bsalomon23e619c2015-02-06 11:54:28 -0800912 // make b purgeable. It should be immediately deleted since it has no key.
913 b->unref();
914 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
915
916 // Make sure we actually get to c via it's scratch key, before we say goodbye.
917 GrScratchKey scratchKey;
918 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700919 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon23e619c2015-02-06 11:54:28 -0800920 REPORTER_ASSERT(reporter, scratch == c);
921 SkSafeUnref(scratch);
922
923 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -0800924 cache->purgeAllUnlocked();
robertphillips6e83ac72015-08-13 05:19:14 -0700925 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon71cb0c22014-11-14 12:10:14 -0800926 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800927 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
928 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -0800929 REPORTER_ASSERT(reporter, !scratch);
930 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -0800931}
932
bsalomon71cb0c22014-11-14 12:10:14 -0800933static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800934 Mock mock(3, 30000);
935 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800936 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800937
bsalomon8718aaf2015-02-19 07:24:21 -0800938 GrUniqueKey key1, key2;
939 make_unique_key<0>(&key1, 1);
940 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +0000941
halcanary385fe4d2015-08-26 13:07:48 -0700942 TestResource* a = new TestResource(context->getGpu());
943 TestResource* b = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800944 a->resourcePriv().setUniqueKey(key1);
945 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -0800946
bsalomonc2f35b72015-01-23 07:19:22 -0800947 // Make a cycle
948 a->setUnrefWhenDestroyed(b);
949 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -0800950
bsalomonc2f35b72015-01-23 07:19:22 -0800951 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -0800952
bsalomonc2f35b72015-01-23 07:19:22 -0800953 a->unref();
954 b->unref();
bsalomon8b79d232014-11-10 10:19:06 -0800955
bsalomonc2f35b72015-01-23 07:19:22 -0800956 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -0800957
bsalomon0ea80f42015-02-11 10:49:59 -0800958 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -0800959 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -0800960
bsalomonc2f35b72015-01-23 07:19:22 -0800961 // Break the cycle
halcanary96fcdcc2015-08-27 07:41:13 -0700962 a->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -0800963 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -0800964
bsalomon0ea80f42015-02-11 10:49:59 -0800965 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -0800966 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +0000967}
968
bsalomon8b79d232014-11-10 10:19:06 -0800969static void test_resource_size_changed(skiatest::Reporter* reporter) {
bsalomon8718aaf2015-02-19 07:24:21 -0800970 GrUniqueKey key1, key2;
971 make_unique_key<0>(&key1, 1);
972 make_unique_key<0>(&key2, 2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000973
974 // Test changing resources sizes (both increase & decrease).
975 {
bsalomonc2f35b72015-01-23 07:19:22 -0800976 Mock mock(3, 30000);
977 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800978 GrResourceCache* cache = mock.cache();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000979
halcanary385fe4d2015-08-26 13:07:48 -0700980 TestResource* a = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800981 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000982 a->unref();
983
halcanary385fe4d2015-08-26 13:07:48 -0700984 TestResource* b = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800985 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000986 b->unref();
987
bsalomon0ea80f42015-02-11 10:49:59 -0800988 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
989 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800990 {
bsalomon8718aaf2015-02-19 07:24:21 -0800991 SkAutoTUnref<TestResource> find2(
992 static_cast<TestResource*>(cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -0800993 find2->setSize(200);
bsalomon8718aaf2015-02-19 07:24:21 -0800994 SkAutoTUnref<TestResource> find1(
995 static_cast<TestResource*>(cache->findAndRefUniqueResource(key1)));
bsalomon8b79d232014-11-10 10:19:06 -0800996 find1->setSize(50);
997 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000998
bsalomon0ea80f42015-02-11 10:49:59 -0800999 REPORTER_ASSERT(reporter, 250 == cache->getResourceBytes());
1000 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001001 }
1002
1003 // Test increasing a resources size beyond the cache budget.
1004 {
bsalomonc2f35b72015-01-23 07:19:22 -08001005 Mock mock(2, 300);
1006 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001007 GrResourceCache* cache = mock.cache();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001008
halcanary385fe4d2015-08-26 13:07:48 -07001009 TestResource* a = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -08001010 a->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001011 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001012 a->unref();
1013
halcanary385fe4d2015-08-26 13:07:48 -07001014 TestResource* b = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -08001015 b->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001016 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001017 b->unref();
1018
bsalomon0ea80f42015-02-11 10:49:59 -08001019 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1020 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001021
bsalomon8b79d232014-11-10 10:19:06 -08001022 {
bsalomon8718aaf2015-02-19 07:24:21 -08001023 SkAutoTUnref<TestResource> find2(static_cast<TestResource*>(
1024 cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001025 find2->setSize(201);
1026 }
bsalomon8718aaf2015-02-19 07:24:21 -08001027 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001028
bsalomon0ea80f42015-02-11 10:49:59 -08001029 REPORTER_ASSERT(reporter, 201 == cache->getResourceBytes());
1030 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001031 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001032}
1033
bsalomonddf30e62015-02-19 11:38:44 -08001034static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1035 static const int kCount = 50;
1036 static const int kBudgetCnt = kCount / 2;
1037 static const int kLockedFreq = 8;
1038 static const int kBudgetSize = 0x80000000;
1039
1040 SkRandom random;
1041
1042 // Run the test 2*kCount times;
1043 for (int i = 0; i < 2 * kCount; ++i ) {
1044 Mock mock(kBudgetCnt, kBudgetSize);
1045 GrContext* context = mock.context();
1046 GrResourceCache* cache = mock.cache();
1047
1048 // Pick a random number of resources to add before the timestamp will wrap.
1049 cache->changeTimestamp(SK_MaxU32 - random.nextULessThan(kCount + 1));
1050
1051 static const int kNumToPurge = kCount - kBudgetCnt;
1052
1053 SkTDArray<int> shouldPurgeIdxs;
1054 int purgeableCnt = 0;
1055 SkTDArray<GrGpuResource*> resourcesToUnref;
1056
1057 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1058 // unpurgeable resources.
1059 for (int j = 0; j < kCount; ++j) {
1060 GrUniqueKey key;
1061 make_unique_key<0>(&key, j);
1062
halcanary385fe4d2015-08-26 13:07:48 -07001063 TestResource* r = new TestResource(context->getGpu());
bsalomonddf30e62015-02-19 11:38:44 -08001064 r->resourcePriv().setUniqueKey(key);
1065 if (random.nextU() % kLockedFreq) {
1066 // Make this is purgeable.
1067 r->unref();
1068 ++purgeableCnt;
1069 if (purgeableCnt <= kNumToPurge) {
1070 *shouldPurgeIdxs.append() = j;
1071 }
1072 } else {
1073 *resourcesToUnref.append() = r;
1074 }
1075 }
1076
1077 // Verify that the correct resources were purged.
1078 int currShouldPurgeIdx = 0;
1079 for (int j = 0; j < kCount; ++j) {
1080 GrUniqueKey key;
1081 make_unique_key<0>(&key, j);
1082 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1083 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1084 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1085 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001086 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001087 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001088 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001089 }
1090 SkSafeUnref(res);
1091 }
1092
1093 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1094 resourcesToUnref[j]->unref();
1095 }
1096 }
1097}
1098
bsalomon3f324322015-04-08 11:01:54 -07001099static void test_flush(skiatest::Reporter* reporter) {
1100 Mock mock(1000000, 1000000);
1101 GrContext* context = mock.context();
1102 GrResourceCache* cache = mock.cache();
1103
1104 // The current cache impl will round the max flush count to the next power of 2. So we choose a
1105 // power of two here to keep things simpler.
1106 static const int kFlushCount = 16;
1107 cache->setLimits(1000000, 1000000, kFlushCount);
1108
1109 {
1110 // Insert a resource and send a flush notification kFlushCount times.
1111 for (int i = 0; i < kFlushCount; ++i) {
halcanary385fe4d2015-08-26 13:07:48 -07001112 TestResource* r = new TestResource(context->getGpu());
bsalomon3f324322015-04-08 11:01:54 -07001113 GrUniqueKey k;
1114 make_unique_key<1>(&k, i);
1115 r->resourcePriv().setUniqueKey(k);
1116 r->unref();
1117 cache->notifyFlushOccurred();
1118 }
1119
1120 // Send flush notifications to the cache. Each flush should purge the oldest resource.
1121 for (int i = 0; i < kFlushCount - 1; ++i) {
1122 // The first resource was purged after the last flush in the initial loop, hence the -1.
1123 REPORTER_ASSERT(reporter, kFlushCount - i - 1 == cache->getResourceCount());
1124 for (int j = 0; j < i; ++j) {
1125 GrUniqueKey k;
1126 make_unique_key<1>(&k, j);
1127 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1128 REPORTER_ASSERT(reporter, !SkToBool(r));
1129 SkSafeUnref(r);
1130 }
1131 cache->notifyFlushOccurred();
1132 }
1133
1134 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1135 cache->purgeAllUnlocked();
1136 }
1137
1138 // Do a similar test but where we leave refs on some resources to prevent them from being
1139 // purged.
1140 {
1141 GrGpuResource* refedResources[kFlushCount >> 1];
1142 for (int i = 0; i < kFlushCount; ++i) {
halcanary385fe4d2015-08-26 13:07:48 -07001143 TestResource* r = new TestResource(context->getGpu());
bsalomon3f324322015-04-08 11:01:54 -07001144 GrUniqueKey k;
1145 make_unique_key<1>(&k, i);
1146 r->resourcePriv().setUniqueKey(k);
1147 // Leave a ref on every other resource, beginning with the first.
1148 if (SkToBool(i & 0x1)) {
1149 refedResources[i/2] = r;
1150 } else {
1151 r->unref();
1152 }
1153 cache->notifyFlushOccurred();
1154 }
1155
1156 for (int i = 0; i < kFlushCount; ++i) {
1157 // Should get a resource purged every other flush.
1158 REPORTER_ASSERT(reporter, kFlushCount - i/2 - 1 == cache->getResourceCount());
1159 cache->notifyFlushOccurred();
1160 }
1161
1162 // Unref all the resources that we kept refs on in the first loop.
1163 for (int i = 0; i < kFlushCount >> 1; ++i) {
1164 refedResources[i]->unref();
1165 }
1166
1167 // When we unref'ed them their timestamps got updated. So nothing should be purged until we
1168 // get kFlushCount additional flushes. Then everything should be purged.
1169 for (int i = 0; i < kFlushCount; ++i) {
1170 REPORTER_ASSERT(reporter, kFlushCount >> 1 == cache->getResourceCount());
1171 cache->notifyFlushOccurred();
1172 }
1173 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1174
1175 cache->purgeAllUnlocked();
1176 }
1177
1178 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1179}
1180
bsalomon10e23ca2014-11-25 05:52:06 -08001181static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001182 // Set the cache size to double the resource count because we're going to create 2x that number
1183 // resources, using two different key domains. Add a little slop to the bytes because we resize
1184 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001185 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001186
bsalomonc2f35b72015-01-23 07:19:22 -08001187 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1188 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001189 GrResourceCache* cache = mock.cache();
bsalomon10e23ca2014-11-25 05:52:06 -08001190
1191 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001192 GrUniqueKey key1, key2;
1193 make_unique_key<1>(&key1, i);
1194 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001195
bsalomon24db3b12015-01-23 04:24:04 -08001196 TestResource* resource;
1197
halcanary385fe4d2015-08-26 13:07:48 -07001198 resource = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001199 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001200 resource->setSize(1);
1201 resource->unref();
1202
halcanary385fe4d2015-08-26 13:07:48 -07001203 resource = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001204 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001205 resource->setSize(1);
1206 resource->unref();
1207 }
1208
1209 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001210 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1211 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1212 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1213 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001214 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001215 GrUniqueKey key1, key2;
1216 make_unique_key<1>(&key1, i);
1217 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001218
bsalomon8718aaf2015-02-19 07:24:21 -08001219 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1220 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001221 }
1222
bsalomon0ea80f42015-02-11 10:49:59 -08001223 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001224 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001225 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1226 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1227 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1228 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001229
1230 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001231 GrUniqueKey key1, key2;
1232 make_unique_key<1>(&key1, i);
1233 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001234
bsalomon8718aaf2015-02-19 07:24:21 -08001235 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1236 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001237 }
1238}
1239
senorblanco84cd6212015-08-04 10:01:58 -07001240static void test_custom_data(skiatest::Reporter* reporter) {
1241 GrUniqueKey key1, key2;
1242 make_unique_key<0>(&key1, 1);
1243 make_unique_key<0>(&key2, 2);
1244 int foo = 4132;
1245 SkAutoTUnref<SkData> data(SkData::NewWithCopy(&foo, sizeof(foo)));
1246 key1.setCustomData(data.get());
1247 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1248 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1249
1250 // Test that copying a key also takes a ref on its custom data.
1251 GrUniqueKey key3 = key1;
1252 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1253}
1254
bsalomonc6363ef2015-09-24 07:07:40 -07001255static void test_abandoned(skiatest::Reporter* reporter) {
1256 Mock mock(10, 300);
1257 GrContext* context = mock.context();
Brian Salomon89438a12015-09-24 13:22:45 -04001258 SkAutoTUnref<GrGpuResource> resource(new TestResource(context->getGpu()));
bsalomonc6363ef2015-09-24 07:07:40 -07001259 context->abandonContext();
1260
1261 REPORTER_ASSERT(reporter, resource->wasDestroyed());
1262
1263 // Call all the public methods on resource in the abandoned state. They shouldn't crash.
1264
1265 int foo = 4132;
1266 SkAutoTUnref<SkData> data(SkData::NewWithCopy(&foo, sizeof(foo)));
1267 resource->setCustomData(data.get());
1268 resource->getCustomData();
1269 resource->getUniqueID();
1270 resource->getUniqueKey();
1271 resource->wasDestroyed();
1272 resource->gpuMemorySize();
1273 resource->getContext();
1274
1275 resource->abandon();
1276 resource->resourcePriv().getScratchKey();
1277 resource->resourcePriv().isBudgeted();
1278 resource->resourcePriv().makeBudgeted();
1279 resource->resourcePriv().makeUnbudgeted();
1280 resource->resourcePriv().removeScratchKey();
1281 GrUniqueKey key;
1282 make_unique_key<0>(&key, 1);
1283 resource->resourcePriv().setUniqueKey(key);
1284 resource->resourcePriv().removeUniqueKey();
1285}
1286
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +00001287////////////////////////////////////////////////////////////////////////////////
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +00001288DEF_GPUTEST(ResourceCache, reporter, factory) {
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001289 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
1290 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
1291 if (!GrContextFactory::IsRenderingGLContext(glType)) {
1292 continue;
1293 }
1294 GrContext* context = factory->get(glType);
halcanary96fcdcc2015-08-27 07:41:13 -07001295 if (nullptr == context) {
bsalomonfdcf2c02014-11-05 12:30:32 -08001296 continue;
1297 }
bsalomonf2703d82014-10-28 14:33:06 -07001298 GrSurfaceDesc desc;
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001299 desc.fConfig = kSkia8888_GrPixelConfig;
bsalomonf2703d82014-10-28 14:33:06 -07001300 desc.fFlags = kRenderTarget_GrSurfaceFlag;
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001301 desc.fWidth = gWidth;
1302 desc.fHeight = gHeight;
reed69f6f002014-09-18 06:09:44 -07001303 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
bsalomonafe30052015-01-16 07:32:33 -08001304 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget(context,
1305 SkSurface::kNo_Budgeted, info));
reed69f6f002014-09-18 06:09:44 -07001306 test_cache(reporter, context, surface->getCanvas());
bsalomon02a44a42015-02-19 09:09:00 -08001307 test_stencil_buffers(reporter, context);
bsalomon6dc6f5f2015-06-18 09:12:16 -07001308 test_wrapped_resources(reporter, context);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001309 }
bsalomon33435572014-11-05 14:47:41 -08001310
bsalomon8b79d232014-11-10 10:19:06 -08001311 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001312 test_no_key(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001313 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001314 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001315 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001316 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001317 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001318 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001319 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001320 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001321 test_cache_chained_purge(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001322 test_resource_size_changed(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001323 test_timestamp_wrap(reporter);
bsalomon3f324322015-04-08 11:01:54 -07001324 test_flush(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001325 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001326 test_custom_data(reporter);
bsalomonc6363ef2015-09-24 07:07:40 -07001327 test_abandoned(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001328}
1329
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001330#endif