blob: d76da319202b5225884ea2758c3ec85d5ccea343 [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"
bsalomon6dc6f5f2015-06-18 09:12:16 -070021#include "GrTest.h"
bsalomonbcf0a522014-10-08 08:40:09 -070022#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080023#include "SkGr.h"
24#include "SkMessageBus.h"
reed69f6f002014-09-18 06:09:44 -070025#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000026#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000027
28static const int gWidth = 640;
29static const int gHeight = 480;
30
31////////////////////////////////////////////////////////////////////////////////
bsalomon33435572014-11-05 14:47:41 -080032static void test_cache(skiatest::Reporter* reporter, GrContext* context, SkCanvas* canvas) {
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000033 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
34
35 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000036 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000037 src.eraseColor(SK_ColorBLACK);
38 size_t srcSize = src.getSize();
39
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000040 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070041 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000042
43 int oldMaxNum;
44 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000045 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000046
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000047 // Set the cache limits so we can fit 10 "src" images and the
48 // max number of textures doesn't matter
49 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000050 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000051
52 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000053 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000054
55 for (int i = 0; i < 100; ++i) {
56 canvas->drawBitmap(src, 0, 0);
57 canvas->readPixels(size, &readback);
58
59 // "modify" the src texture
60 src.notifyPixelsChanged();
61
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000062 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070063 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000064
65 // we should never go over the size limit
66 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
67 }
68
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000069 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000070}
71
bsalomon02a44a42015-02-19 09:09:00 -080072static void test_stencil_buffers(skiatest::Reporter* reporter, GrContext* context) {
73 GrSurfaceDesc smallDesc;
74 smallDesc.fFlags = kRenderTarget_GrSurfaceFlag;
75 smallDesc.fConfig = kSkia8888_GrPixelConfig;
76 smallDesc.fWidth = 4;
77 smallDesc.fHeight = 4;
78 smallDesc.fSampleCnt = 0;
79
bsalomond309e7a2015-04-30 14:18:54 -070080 GrTextureProvider* cache = context->textureProvider();
bsalomon02a44a42015-02-19 09:09:00 -080081 // Test that two budgeted RTs with the same desc share a stencil buffer.
bsalomond309e7a2015-04-30 14:18:54 -070082 SkAutoTUnref<GrTexture> smallRT0(cache->createTexture(smallDesc, true));
bsalomon6bc1b5f2015-02-23 09:06:38 -080083 if (smallRT0 && smallRT0->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -070084 smallRT0->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -080085 }
86
bsalomond309e7a2015-04-30 14:18:54 -070087 SkAutoTUnref<GrTexture> smallRT1(cache->createTexture(smallDesc, true));
bsalomon6bc1b5f2015-02-23 09:06:38 -080088 if (smallRT1 && smallRT1->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -070089 smallRT1->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -080090 }
91
egdaniel8dc7c3a2015-04-16 11:22:42 -070092 REPORTER_ASSERT(reporter,
93 smallRT0 && smallRT1 &&
94 smallRT0->asRenderTarget() && smallRT1->asRenderTarget() &&
95 smallRT0->asRenderTarget()->renderTargetPriv().getStencilAttachment() ==
96 smallRT1->asRenderTarget()->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -080097
98 // An unbudgeted RT with the same desc should also share.
bsalomond309e7a2015-04-30 14:18:54 -070099 SkAutoTUnref<GrTexture> smallRT2(cache->createTexture(smallDesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800100 if (smallRT2 && smallRT2->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700101 smallRT2->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800102 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700103 REPORTER_ASSERT(reporter,
104 smallRT0 && smallRT2 &&
105 smallRT0->asRenderTarget() && smallRT2->asRenderTarget() &&
106 smallRT0->asRenderTarget()->renderTargetPriv().getStencilAttachment() ==
107 smallRT2->asRenderTarget()->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800108
109 // An RT with a much larger size should not share.
110 GrSurfaceDesc bigDesc;
111 bigDesc.fFlags = kRenderTarget_GrSurfaceFlag;
112 bigDesc.fConfig = kSkia8888_GrPixelConfig;
113 bigDesc.fWidth = 400;
114 bigDesc.fHeight = 200;
115 bigDesc.fSampleCnt = 0;
bsalomond309e7a2015-04-30 14:18:54 -0700116 SkAutoTUnref<GrTexture> bigRT(cache->createTexture(bigDesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800117 if (bigRT && bigRT->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700118 bigRT->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800119 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700120 REPORTER_ASSERT(reporter,
121 smallRT0 && bigRT &&
122 smallRT0->asRenderTarget() && bigRT->asRenderTarget() &&
123 smallRT0->asRenderTarget()->renderTargetPriv().getStencilAttachment() !=
124 bigRT->asRenderTarget()->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800125
bsalomon76228632015-05-29 08:02:10 -0700126 if (context->caps()->maxSampleCount() >= 4) {
bsalomon02a44a42015-02-19 09:09:00 -0800127 // An RT with a different sample count should not share.
128 GrSurfaceDesc smallMSAADesc = smallDesc;
129 smallMSAADesc.fSampleCnt = 4;
bsalomond309e7a2015-04-30 14:18:54 -0700130 SkAutoTUnref<GrTexture> smallMSAART0(cache->createTexture(smallMSAADesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800131 if (smallMSAART0 && smallMSAART0->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700132 smallMSAART0->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800133 }
bsalomonb602d4d2015-02-19 12:05:58 -0800134#ifdef SK_BUILD_FOR_ANDROID
135 if (!smallMSAART0) {
136 // The nexus player seems to fail to create MSAA textures.
137 return;
138 }
139#endif
bsalomon6bc1b5f2015-02-23 09:06:38 -0800140 REPORTER_ASSERT(reporter,
141 smallRT0 && smallMSAART0 &&
142 smallRT0->asRenderTarget() && smallMSAART0->asRenderTarget() &&
egdaniel8dc7c3a2015-04-16 11:22:42 -0700143 smallRT0->asRenderTarget()->renderTargetPriv().getStencilAttachment() !=
144 smallMSAART0->asRenderTarget()->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800145 // A second MSAA RT should share with the first MSAA RT.
bsalomond309e7a2015-04-30 14:18:54 -0700146 SkAutoTUnref<GrTexture> smallMSAART1(cache->createTexture(smallMSAADesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800147 if (smallMSAART1 && smallMSAART1->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700148 smallMSAART1->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800149 }
150 REPORTER_ASSERT(reporter,
151 smallMSAART0 && smallMSAART1 &&
152 smallMSAART0->asRenderTarget() &&
153 smallMSAART1->asRenderTarget() &&
egdaniel8dc7c3a2015-04-16 11:22:42 -0700154 smallMSAART0->asRenderTarget()->renderTargetPriv().getStencilAttachment() ==
155 smallMSAART1->asRenderTarget()->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800156 // But not one with a larger sample count should not. (Also check that the request for 4
157 // samples didn't get rounded up to >= 8 or else they could share.).
bsalomon76228632015-05-29 08:02:10 -0700158 if (context->caps()->maxSampleCount() >= 8 &&
159 smallMSAART0 && smallMSAART0->asRenderTarget() &&
vbuzinovdded6962015-06-12 08:59:45 -0700160 smallMSAART0->asRenderTarget()->numColorSamples() < 8) {
bsalomon02a44a42015-02-19 09:09:00 -0800161 smallMSAADesc.fSampleCnt = 8;
bsalomond309e7a2015-04-30 14:18:54 -0700162 smallMSAART1.reset(cache->createTexture(smallMSAADesc, false));
163 SkAutoTUnref<GrTexture> smallMSAART1(cache->createTexture(smallMSAADesc, false));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800164 if (smallMSAART1 && smallMSAART1->asRenderTarget()) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700165 smallMSAART1->asRenderTarget()->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800166 }
167 REPORTER_ASSERT(reporter,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700168 smallMSAART0 && smallMSAART1 &&
169 smallMSAART0->asRenderTarget() &&
170 smallMSAART1->asRenderTarget() &&
171 smallMSAART0->asRenderTarget()->renderTargetPriv().getStencilAttachment() !=
172 smallMSAART1->asRenderTarget()->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800173 }
174 }
175}
176
bsalomon6dc6f5f2015-06-18 09:12:16 -0700177static void test_wrapped_resources(skiatest::Reporter* reporter, GrContext* context) {
jvanverth672bb7f2015-07-13 07:19:57 -0700178 const GrGpu* gpu = context->getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700179 // this test is only valid for GL
180 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700181 return;
182 }
183
jvanverth672bb7f2015-07-13 07:19:57 -0700184 GrBackendObject texIDs[2];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700185 static const int kW = 100;
186 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700187
halcanary96fcdcc2015-08-27 07:41:13 -0700188 texIDs[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
189 texIDs[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
jvanverth672bb7f2015-07-13 07:19:57 -0700190
bsalomon6dc6f5f2015-06-18 09:12:16 -0700191 context->resetContext();
192
193 GrBackendTextureDesc desc;
194 desc.fConfig = kBGRA_8888_GrPixelConfig;
195 desc.fWidth = kW;
196 desc.fHeight = kH;
197
198 desc.fTextureHandle = texIDs[0];
199 SkAutoTUnref<GrTexture> borrowed(context->textureProvider()->wrapBackendTexture(
jvanverth3e5f5552015-07-16 07:46:07 -0700200 desc, kBorrow_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700201
202 desc.fTextureHandle = texIDs[1];
203 SkAutoTUnref<GrTexture> adopted(context->textureProvider()->wrapBackendTexture(
jvanverth3e5f5552015-07-16 07:46:07 -0700204 desc, kAdopt_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700205
206 REPORTER_ASSERT(reporter, SkToBool(borrowed) && SkToBool(adopted));
207 if (!SkToBool(borrowed) || !SkToBool(adopted)) {
208 return;
209 }
210
halcanary96fcdcc2015-08-27 07:41:13 -0700211 borrowed.reset(nullptr);
212 adopted.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700213
214 context->flush();
215
jvanverth88957922015-07-14 11:02:52 -0700216 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(texIDs[0]);
217 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(texIDs[1]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700218
219 REPORTER_ASSERT(reporter, borrowedIsAlive);
220 REPORTER_ASSERT(reporter, !adoptedIsAlive);
221
jvanverth88957922015-07-14 11:02:52 -0700222 gpu->deleteTestingOnlyBackendTexture(texIDs[0]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700223
224 context->resetContext();
225}
226
bsalomon6d3fe022014-07-25 08:35:45 -0700227class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800228 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000229public:
robertphillips6e83ac72015-08-13 05:19:14 -0700230 static const size_t kDefaultSize = 100;
mtklein2766c002015-06-26 11:45:03 -0700231
bsalomon1c60dfe2015-01-21 09:32:40 -0800232 /** Property that distinctly categorizes the resource.
233 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800234 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800235
bsalomon5236cf42015-01-14 10:42:08 -0800236 TestResource(GrGpu* gpu, size_t size, GrGpuResource::LifeCycle lifeCycle)
237 : INHERITED(gpu, lifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700238 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800239 , fSize(size)
bsalomon23e619c2015-02-06 11:54:28 -0800240 , fProperty(kA_SimulatedProperty) {
bsalomon5236cf42015-01-14 10:42:08 -0800241 ++fNumAlive;
242 this->registerWithCache();
243 }
244
245 TestResource(GrGpu* gpu, GrGpuResource::LifeCycle lifeCycle)
246 : INHERITED(gpu, lifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700247 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800248 , fSize(kDefaultSize)
bsalomon23e619c2015-02-06 11:54:28 -0800249 , fProperty(kA_SimulatedProperty) {
bsalomondace19e2014-11-17 07:34:06 -0800250 ++fNumAlive;
251 this->registerWithCache();
252 }
253
bsalomon8b79d232014-11-10 10:19:06 -0800254 TestResource(GrGpu* gpu)
bsalomon5236cf42015-01-14 10:42:08 -0800255 : INHERITED(gpu, kCached_LifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700256 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800257 , fSize(kDefaultSize)
bsalomon23e619c2015-02-06 11:54:28 -0800258 , fProperty(kA_SimulatedProperty) {
bsalomon8b79d232014-11-10 10:19:06 -0800259 ++fNumAlive;
260 this->registerWithCache();
261 }
262
bsalomon23e619c2015-02-06 11:54:28 -0800263 static TestResource* CreateScratch(GrGpu* gpu, SimulatedProperty property, bool cached = true) {
halcanary385fe4d2015-08-26 13:07:48 -0700264 return new TestResource(gpu, property, cached, kScratchConstructor);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000265 }
266
267 ~TestResource() {
bsalomon33435572014-11-05 14:47:41 -0800268 --fNumAlive;
bsalomon71cb0c22014-11-14 12:10:14 -0800269 SkSafeUnref(fToDelete);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000270 }
271
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000272 void setSize(size_t size) {
273 fSize = size;
274 this->didChangeGpuMemorySize();
275 }
276
bsalomon33435572014-11-05 14:47:41 -0800277 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000278
bsalomon71cb0c22014-11-14 12:10:14 -0800279 void setUnrefWhenDestroyed(TestResource* resource) {
280 SkRefCnt_SafeAssign(fToDelete, resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000281 }
282
bsalomon1c60dfe2015-01-21 09:32:40 -0800283 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
284 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
285 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800286 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
287 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800288 }
289 }
290
291 static size_t ExpectedScratchKeySize() {
292 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
293 }
294
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000295private:
bsalomon24db3b12015-01-23 04:24:04 -0800296 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800297
bsalomonc2f35b72015-01-23 07:19:22 -0800298 TestResource(GrGpu* gpu, SimulatedProperty property, bool cached, ScratchConstructor)
299 : INHERITED(gpu, cached ? kCached_LifeCycle : kUncached_LifeCycle)
halcanary96fcdcc2015-08-27 07:41:13 -0700300 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800301 , fSize(kDefaultSize)
302 , fProperty(property) {
303 GrScratchKey scratchKey;
304 ComputeScratchKey(fProperty, &scratchKey);
305 this->setScratchKey(scratchKey);
306 ++fNumAlive;
307 this->registerWithCache();
308 }
309
mtklein36352bf2015-03-25 18:17:31 -0700310 size_t onGpuMemorySize() const override { return fSize; }
bsalomon69ed47f2014-11-12 11:13:39 -0800311
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000312 TestResource* fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000313 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800314 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800315 SimulatedProperty fProperty;
bsalomon6d3fe022014-07-25 08:35:45 -0700316 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000317};
bsalomon33435572014-11-05 14:47:41 -0800318int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000319
bsalomonc2f35b72015-01-23 07:19:22 -0800320class Mock {
321public:
322 Mock(int maxCnt, size_t maxBytes) {
323 fContext.reset(GrContext::CreateMockContext());
324 SkASSERT(fContext);
325 fContext->setResourceCacheLimits(maxCnt, maxBytes);
bsalomon0ea80f42015-02-11 10:49:59 -0800326 GrResourceCache* cache = fContext->getResourceCache();
327 cache->purgeAllUnlocked();
328 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800329 }
bsalomonc2f35b72015-01-23 07:19:22 -0800330
bsalomon0ea80f42015-02-11 10:49:59 -0800331 GrResourceCache* cache() { return fContext->getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800332
333 GrContext* context() { return fContext; }
334
335private:
336 SkAutoTUnref<GrContext> fContext;
337};
338
339static void test_no_key(skiatest::Reporter* reporter) {
340 Mock mock(10, 30000);
341 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800342 GrResourceCache* cache = mock.cache();
bsalomon71cb0c22014-11-14 12:10:14 -0800343
344 // Create a bunch of resources with no keys
halcanary385fe4d2015-08-26 13:07:48 -0700345 TestResource* a = new TestResource(context->getGpu());
346 TestResource* b = new TestResource(context->getGpu());
347 TestResource* c = new TestResource(context->getGpu());
348 TestResource* d = new TestResource(context->getGpu());
bsalomon71cb0c22014-11-14 12:10:14 -0800349 a->setSize(11);
350 b->setSize(12);
351 c->setSize(13);
352 d->setSize(14);
353
354 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800355 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800356 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800357 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800358
359 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800360 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800361 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
362
bsalomon8718aaf2015-02-19 07:24:21 -0800363 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800364
365 a->unref();
366 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800367 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800368 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800369 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800370
371 c->unref();
372 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800373 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800374 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800375 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800376
377 d->unref();
378 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800379 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
380 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800381
382 b->unref();
383 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800384 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
385 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800386}
387
bsalomon24db3b12015-01-23 04:24:04 -0800388// Each integer passed as a template param creates a new domain.
bsalomon8718aaf2015-02-19 07:24:21 -0800389template <int> static void make_unique_key(GrUniqueKey* key, int data) {
390 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
391 GrUniqueKey::Builder builder(key, d, 1);
bsalomon24db3b12015-01-23 04:24:04 -0800392 builder[0] = data;
393}
394
bsalomon84c8e622014-11-17 09:33:27 -0800395static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800396 Mock mock(10, 300);
397 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800398 GrResourceCache* cache = mock.cache();
bsalomondace19e2014-11-17 07:34:06 -0800399
bsalomon8718aaf2015-02-19 07:24:21 -0800400 GrUniqueKey uniqueKey;
401 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800402
bsalomon8718aaf2015-02-19 07:24:21 -0800403 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800404 TestResource* scratch =
bsalomon23e619c2015-02-06 11:54:28 -0800405 TestResource::CreateScratch(context->getGpu(), TestResource::kB_SimulatedProperty);
bsalomondace19e2014-11-17 07:34:06 -0800406 scratch->setSize(10);
halcanary385fe4d2015-08-26 13:07:48 -0700407 TestResource* unique = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800408 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800409 unique->resourcePriv().setUniqueKey(uniqueKey);
halcanary385fe4d2015-08-26 13:07:48 -0700410 TestResource* wrapped = new TestResource(context->getGpu(), GrGpuResource::kBorrowed_LifeCycle);
bsalomon5236cf42015-01-14 10:42:08 -0800411 wrapped->setSize(12);
halcanary385fe4d2015-08-26 13:07:48 -0700412 TestResource* unbudgeted =
413 new TestResource(context->getGpu(), GrGpuResource::kUncached_LifeCycle);
bsalomon84c8e622014-11-17 09:33:27 -0800414 unbudgeted->setSize(13);
bsalomondace19e2014-11-17 07:34:06 -0800415
bsalomon8718aaf2015-02-19 07:24:21 -0800416 // Make sure we can't add a unique key to the wrapped resource
417 GrUniqueKey uniqueKey2;
418 make_unique_key<0>(&uniqueKey2, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800419 wrapped->resourcePriv().setUniqueKey(uniqueKey2);
halcanary96fcdcc2015-08-27 07:41:13 -0700420 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefUniqueResource(uniqueKey2));
bsalomondace19e2014-11-17 07:34:06 -0800421
422 // Make sure sizes are as we expect
bsalomon0ea80f42015-02-11 10:49:59 -0800423 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800424 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800425 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800426 cache->getResourceBytes());
427 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800428 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800429 cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800430
bsalomon63c992f2015-01-23 12:47:59 -0800431 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800432 cache->purgeAllUnlocked();
433 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800434 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800435 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800436 cache->getResourceBytes());
437 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800438 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800439 cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800440
441 // Unreffing the wrapped resource should free it right away.
442 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800443 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800444 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800445 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800446
bsalomon84c8e622014-11-17 09:33:27 -0800447 // Now try freeing the budgeted resources first
halcanary385fe4d2015-08-26 13:07:48 -0700448 wrapped = new TestResource(context->getGpu(), GrGpuResource::kBorrowed_LifeCycle);
bsalomondace19e2014-11-17 07:34:06 -0800449 scratch->setSize(12);
bsalomon8718aaf2015-02-19 07:24:21 -0800450 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800451 cache->purgeAllUnlocked();
452 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800453 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrapped->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800454 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
455 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
456 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800457
458 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800459 cache->purgeAllUnlocked();
460 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800461 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrapped->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800462 cache->getResourceBytes());
463 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
464 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800465
466 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800467 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
468 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
469 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
470 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800471
472 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800473 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
474 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
475 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
476 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800477}
478
bsalomon5236cf42015-01-14 10:42:08 -0800479static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800480 Mock mock(10, 30000);
481 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800482 GrResourceCache* cache = mock.cache();
bsalomon5236cf42015-01-14 10:42:08 -0800483
bsalomon8718aaf2015-02-19 07:24:21 -0800484 GrUniqueKey uniqueKey;
485 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800486
487 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800488 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800489 TestResource* wrapped;
490 TestResource* unbudgeted;
491
492 // A large uncached or wrapped resource shouldn't evict anything.
bsalomon23e619c2015-02-06 11:54:28 -0800493 scratch = TestResource::CreateScratch(context->getGpu(), TestResource::kB_SimulatedProperty);
bsalomon5236cf42015-01-14 10:42:08 -0800494 scratch->setSize(10);
495 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800496 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
497 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
498 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
499 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800500
halcanary385fe4d2015-08-26 13:07:48 -0700501 unique = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800502 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800503 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800504 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800505 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
506 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
507 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
508 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800509
bsalomon0ea80f42015-02-11 10:49:59 -0800510 size_t large = 2 * cache->getResourceBytes();
halcanary385fe4d2015-08-26 13:07:48 -0700511 unbudgeted = new TestResource(context->getGpu(), large, GrGpuResource::kUncached_LifeCycle);
bsalomon0ea80f42015-02-11 10:49:59 -0800512 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
513 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
514 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
515 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800516
517 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800518 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
519 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
520 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
521 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800522
halcanary385fe4d2015-08-26 13:07:48 -0700523 wrapped = new TestResource(context->getGpu(), large, GrGpuResource::kBorrowed_LifeCycle);
bsalomon0ea80f42015-02-11 10:49:59 -0800524 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
525 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
526 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
527 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800528
529 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800530 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
531 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
532 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
533 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800534
bsalomon0ea80f42015-02-11 10:49:59 -0800535 cache->purgeAllUnlocked();
536 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
537 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
538 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
539 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800540}
541
bsalomon3582d3e2015-02-13 14:20:05 -0800542// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
543void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
544/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800545 Mock mock(10, 300);
546 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800547 GrResourceCache* cache = mock.cache();
bsalomonc2f35b72015-01-23 07:19:22 -0800548
549 TestResource* resource =
bsalomon23e619c2015-02-06 11:54:28 -0800550 TestResource::CreateScratch(context->getGpu(), TestResource::kA_SimulatedProperty, false);
bsalomonc2f35b72015-01-23 07:19:22 -0800551 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800552 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800553
554 size_t size = resource->gpuMemorySize();
555 for (int i = 0; i < 2; ++i) {
556 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800557 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800558 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon3582d3e2015-02-13 14:20:05 -0800559 REPORTER_ASSERT(reporter, !resource->resourcePriv().isBudgeted());
halcanary96fcdcc2015-08-27 07:41:13 -0700560 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomon0ea80f42015-02-11 10:49:59 -0800561 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
562 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
563 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
564 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800565
566 // Once it is unrefed, it should become available as scratch.
567 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800568 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
569 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
570 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
571 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
robertphillips6e83ac72015-08-13 05:19:14 -0700572 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomonc2f35b72015-01-23 07:19:22 -0800573 REPORTER_ASSERT(reporter, resource);
bsalomon3582d3e2015-02-13 14:20:05 -0800574 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800575 REPORTER_ASSERT(reporter, resource->cacheAccess().isScratch());
bsalomon3582d3e2015-02-13 14:20:05 -0800576 REPORTER_ASSERT(reporter, resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800577
578 if (0 == i) {
579 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
580 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800581 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800582 } else {
583 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800584 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800585 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
586 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
587 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
588 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800589 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800590 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon3582d3e2015-02-13 14:20:05 -0800591 REPORTER_ASSERT(reporter, resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800592
593 // now when it is unrefed it should die since it has no key.
594 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800595 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
596 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
597 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
598 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800599 }
bsalomon8b79d232014-11-10 10:19:06 -0800600 }
bsalomonc2f35b72015-01-23 07:19:22 -0800601}
602
603static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
604 Mock mock(5, 30000);
605 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800606 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800607
bsalomon8b79d232014-11-10 10:19:06 -0800608 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800609 TestResource* a = TestResource::CreateScratch(context->getGpu(),
610 TestResource::kB_SimulatedProperty);
611 TestResource* b = TestResource::CreateScratch(context->getGpu(),
612 TestResource::kB_SimulatedProperty);
bsalomon8b79d232014-11-10 10:19:06 -0800613 a->setSize(11);
614 b->setSize(12);
bsalomon1c60dfe2015-01-21 09:32:40 -0800615 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800616 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800617 // Check for negative case consistency. (leaks upon test failure.)
halcanary96fcdcc2015-08-27 07:41:13 -0700618 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(scratchKey1, TestResource::kDefaultSize, 0));
bsalomon1c60dfe2015-01-21 09:32:40 -0800619
620 GrScratchKey scratchKey;
bsalomon23e619c2015-02-06 11:54:28 -0800621 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800622
bsalomon0ea80f42015-02-11 10:49:59 -0800623 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon8b79d232014-11-10 10:19:06 -0800624 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800625 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
626 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800627 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800628 cache->getResourceBytes());
bsalomon8b79d232014-11-10 10:19:06 -0800629
bsalomon63c992f2015-01-23 12:47:59 -0800630 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800631 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800632 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800633 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800634
635 // Unref but don't purge
636 a->unref();
637 b->unref();
638 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800639 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800640
bsalomon63c992f2015-01-23 12:47:59 -0800641 // Purge again. This time resources should be purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800642 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800643 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800644 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
645 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800646}
647
bsalomon10e23ca2014-11-25 05:52:06 -0800648static void test_remove_scratch_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800649 Mock mock(5, 30000);
650 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800651 GrResourceCache* cache = mock.cache();
bsalomon10e23ca2014-11-25 05:52:06 -0800652
bsalomon10e23ca2014-11-25 05:52:06 -0800653 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800654 TestResource* a = TestResource::CreateScratch(context->getGpu(),
655 TestResource::kB_SimulatedProperty);
656 TestResource* b = TestResource::CreateScratch(context->getGpu(),
657 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800658 a->unref();
659 b->unref();
660
bsalomon1c60dfe2015-01-21 09:32:40 -0800661 GrScratchKey scratchKey;
662 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800663 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800664 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700665 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800666
bsalomon0ea80f42015-02-11 10:49:59 -0800667 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800668 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800669 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800670 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
671 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800672
673 // Find the first resource and remove its scratch key
674 GrGpuResource* find;
robertphillips6e83ac72015-08-13 05:19:14 -0700675 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800676 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800677 // It's still alive, but not cached by scratch key anymore
678 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800679 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
680 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800681
682 // The cache should immediately delete it when it's unrefed since it isn't accessible.
683 find->unref();
684 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800685 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
686 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800687
688 // Repeat for the second resource.
robertphillips6e83ac72015-08-13 05:19:14 -0700689 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800690 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800691 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800692 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
693 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800694
695 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800696 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800697 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800698 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
699 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800700
701 find->unref();
702 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800703 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
704 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800705}
706
bsalomon1c60dfe2015-01-21 09:32:40 -0800707static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800708 Mock mock(5, 30000);
709 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800710 GrResourceCache* cache = mock.cache();
bsalomon1c60dfe2015-01-21 09:32:40 -0800711
712 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800713 TestResource* a = TestResource::CreateScratch(context->getGpu(),
714 TestResource::kB_SimulatedProperty);
715 TestResource* b = TestResource::CreateScratch(context->getGpu(),
716 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800717 a->unref();
718 b->unref();
719
720 GrScratchKey scratchKey;
721 // Ensure that scratch key comparison and assignment is consistent.
722 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800723 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800724 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800725 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800726 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
727 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
728 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
729 scratchKey = scratchKey1;
730 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
731 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
732 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
733 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
734 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
735 scratchKey = scratchKey2;
736 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
737 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
738 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
739 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
740 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
741
742 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800743 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800744 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700745 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800746
747 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800748 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700749 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700750 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800751 find->unref();
752
753 scratchKey2 = scratchKey;
robertphillips6e83ac72015-08-13 05:19:14 -0700754 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700755 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800756 REPORTER_ASSERT(reporter, find == a || find == b);
757
robertphillips6e83ac72015-08-13 05:19:14 -0700758 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700759 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800760 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
761 REPORTER_ASSERT(reporter, find2 != find);
762 find2->unref();
763 find->unref();
764}
765
bsalomon8718aaf2015-02-19 07:24:21 -0800766static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800767 Mock mock(5, 30000);
768 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800769 GrResourceCache* cache = mock.cache();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000770
bsalomon8718aaf2015-02-19 07:24:21 -0800771 GrUniqueKey key;
772 make_unique_key<0>(&key, 0);
bsalomon8b79d232014-11-10 10:19:06 -0800773
bsalomon8718aaf2015-02-19 07:24:21 -0800774 // Create two resources that we will attempt to register with the same unique key.
halcanary385fe4d2015-08-26 13:07:48 -0700775 TestResource* a = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -0800776 a->setSize(11);
bsalomon71cb0c22014-11-14 12:10:14 -0800777
bsalomonf99e9612015-02-19 08:24:16 -0800778 // Set key on resource a.
779 a->resourcePriv().setUniqueKey(key);
780 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
781 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800782
bsalomonf99e9612015-02-19 08:24:16 -0800783 // Make sure that redundantly setting a's key works.
784 a->resourcePriv().setUniqueKey(key);
785 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800786 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800787 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
788 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800789 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
790
bsalomonf99e9612015-02-19 08:24:16 -0800791 // Create resource b and set the same key. It should replace a's unique key cache entry.
halcanary385fe4d2015-08-26 13:07:48 -0700792 TestResource* b = new TestResource(context->getGpu());
bsalomonf99e9612015-02-19 08:24:16 -0800793 b->setSize(12);
794 b->resourcePriv().setUniqueKey(key);
795 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
796 b->unref();
797
798 // Still have two resources because a is still reffed.
799 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
800 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
801 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
802
803 a->unref();
804 // Now a should be gone.
805 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
806 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
807 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
808
809 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
810 // Also make b be unreffed when replacement occurs.
811 b->unref();
halcanary385fe4d2015-08-26 13:07:48 -0700812 TestResource* c = new TestResource(context->getGpu());
bsalomonf99e9612015-02-19 08:24:16 -0800813 GrUniqueKey differentKey;
814 make_unique_key<0>(&differentKey, 1);
815 c->setSize(13);
816 c->resourcePriv().setUniqueKey(differentKey);
817 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
818 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
819 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
820 // c replaces b and b should be immediately purged.
821 c->resourcePriv().setUniqueKey(key);
822 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
823 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
824 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
825
826 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800827 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800828 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
829 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
830 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
831
832 // Drop the ref on c, it should be kept alive because it has a unique key.
833 c->unref();
834 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
835 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
836 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
837
838 // Verify that we can find c, then remove its unique key. It should get purged immediately.
839 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
840 c->resourcePriv().removeUniqueKey();
841 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800842 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
843 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -0800844 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -0700845
846 {
847 GrUniqueKey key2;
848 make_unique_key<0>(&key2, 0);
halcanary385fe4d2015-08-26 13:07:48 -0700849 SkAutoTUnref<TestResource> d(new TestResource(context->getGpu()));
senorblanco84cd6212015-08-04 10:01:58 -0700850 int foo = 4132;
851 SkAutoTUnref<SkData> data(SkData::NewWithCopy(&foo, sizeof(foo)));
852 key2.setCustomData(data.get());
853 d->resourcePriv().setUniqueKey(key2);
854 }
855
856 GrUniqueKey key3;
857 make_unique_key<0>(&key3, 0);
858 SkAutoTUnref<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
859 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000860}
861
bsalomon8b79d232014-11-10 10:19:06 -0800862static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800863 Mock mock(5, 30000);
864 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800865 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800866
bsalomon8718aaf2015-02-19 07:24:21 -0800867 GrUniqueKey key1, key2, key3;
868 make_unique_key<0>(&key1, 1);
869 make_unique_key<0>(&key2, 2);
870 make_unique_key<0>(&key3, 3);
bsalomon8b79d232014-11-10 10:19:06 -0800871
bsalomon23e619c2015-02-06 11:54:28 -0800872 // Add three resources to the cache. Only c is usable as scratch.
halcanary385fe4d2015-08-26 13:07:48 -0700873 TestResource* a = new TestResource(context->getGpu());
874 TestResource* b = new TestResource(context->getGpu());
bsalomon23e619c2015-02-06 11:54:28 -0800875 TestResource* c = TestResource::CreateScratch(context->getGpu(),
876 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -0800877 a->resourcePriv().setUniqueKey(key1);
878 b->resourcePriv().setUniqueKey(key2);
879 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -0800880 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -0800881 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -0800882 c->unref();
883
bsalomon8718aaf2015-02-19 07:24:21 -0800884 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
885 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
886 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800887 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -0800888
bsalomon8718aaf2015-02-19 07:24:21 -0800889 typedef GrUniqueKeyInvalidatedMessage Msg;
890 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -0800891
892 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
893 Bus::Post(Msg(key1));
894 Bus::Post(Msg(key2));
bsalomon0ea80f42015-02-11 10:49:59 -0800895 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800896 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -0800897 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
898 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -0800899 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800900 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800901
902 // Invalidate the third.
bsalomon23e619c2015-02-06 11:54:28 -0800903 Bus::Post(Msg(key3));
bsalomon0ea80f42015-02-11 10:49:59 -0800904 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800905 // we still have a ref on b, c should be recycled as scratch.
906 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800907 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -0800908
bsalomon23e619c2015-02-06 11:54:28 -0800909 // make b purgeable. It should be immediately deleted since it has no key.
910 b->unref();
911 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
912
913 // Make sure we actually get to c via it's scratch key, before we say goodbye.
914 GrScratchKey scratchKey;
915 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700916 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon23e619c2015-02-06 11:54:28 -0800917 REPORTER_ASSERT(reporter, scratch == c);
918 SkSafeUnref(scratch);
919
920 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -0800921 cache->purgeAllUnlocked();
robertphillips6e83ac72015-08-13 05:19:14 -0700922 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon71cb0c22014-11-14 12:10:14 -0800923 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800924 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
925 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -0800926 REPORTER_ASSERT(reporter, !scratch);
927 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -0800928}
929
bsalomon71cb0c22014-11-14 12:10:14 -0800930static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800931 Mock mock(3, 30000);
932 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800933 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800934
bsalomon8718aaf2015-02-19 07:24:21 -0800935 GrUniqueKey key1, key2;
936 make_unique_key<0>(&key1, 1);
937 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +0000938
halcanary385fe4d2015-08-26 13:07:48 -0700939 TestResource* a = new TestResource(context->getGpu());
940 TestResource* b = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800941 a->resourcePriv().setUniqueKey(key1);
942 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -0800943
bsalomonc2f35b72015-01-23 07:19:22 -0800944 // Make a cycle
945 a->setUnrefWhenDestroyed(b);
946 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -0800947
bsalomonc2f35b72015-01-23 07:19:22 -0800948 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -0800949
bsalomonc2f35b72015-01-23 07:19:22 -0800950 a->unref();
951 b->unref();
bsalomon8b79d232014-11-10 10:19:06 -0800952
bsalomonc2f35b72015-01-23 07:19:22 -0800953 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -0800954
bsalomon0ea80f42015-02-11 10:49:59 -0800955 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -0800956 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -0800957
bsalomonc2f35b72015-01-23 07:19:22 -0800958 // Break the cycle
halcanary96fcdcc2015-08-27 07:41:13 -0700959 a->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -0800960 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -0800961
bsalomon0ea80f42015-02-11 10:49:59 -0800962 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -0800963 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +0000964}
965
bsalomon8b79d232014-11-10 10:19:06 -0800966static void test_resource_size_changed(skiatest::Reporter* reporter) {
bsalomon8718aaf2015-02-19 07:24:21 -0800967 GrUniqueKey key1, key2;
968 make_unique_key<0>(&key1, 1);
969 make_unique_key<0>(&key2, 2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000970
971 // Test changing resources sizes (both increase & decrease).
972 {
bsalomonc2f35b72015-01-23 07:19:22 -0800973 Mock mock(3, 30000);
974 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800975 GrResourceCache* cache = mock.cache();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000976
halcanary385fe4d2015-08-26 13:07:48 -0700977 TestResource* a = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800978 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000979 a->unref();
980
halcanary385fe4d2015-08-26 13:07:48 -0700981 TestResource* b = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800982 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000983 b->unref();
984
bsalomon0ea80f42015-02-11 10:49:59 -0800985 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
986 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800987 {
bsalomon8718aaf2015-02-19 07:24:21 -0800988 SkAutoTUnref<TestResource> find2(
989 static_cast<TestResource*>(cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -0800990 find2->setSize(200);
bsalomon8718aaf2015-02-19 07:24:21 -0800991 SkAutoTUnref<TestResource> find1(
992 static_cast<TestResource*>(cache->findAndRefUniqueResource(key1)));
bsalomon8b79d232014-11-10 10:19:06 -0800993 find1->setSize(50);
994 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000995
bsalomon0ea80f42015-02-11 10:49:59 -0800996 REPORTER_ASSERT(reporter, 250 == cache->getResourceBytes());
997 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000998 }
999
1000 // Test increasing a resources size beyond the cache budget.
1001 {
bsalomonc2f35b72015-01-23 07:19:22 -08001002 Mock mock(2, 300);
1003 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001004 GrResourceCache* cache = mock.cache();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001005
halcanary385fe4d2015-08-26 13:07:48 -07001006 TestResource* a = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -08001007 a->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001008 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001009 a->unref();
1010
halcanary385fe4d2015-08-26 13:07:48 -07001011 TestResource* b = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -08001012 b->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001013 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001014 b->unref();
1015
bsalomon0ea80f42015-02-11 10:49:59 -08001016 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1017 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001018
bsalomon8b79d232014-11-10 10:19:06 -08001019 {
bsalomon8718aaf2015-02-19 07:24:21 -08001020 SkAutoTUnref<TestResource> find2(static_cast<TestResource*>(
1021 cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001022 find2->setSize(201);
1023 }
bsalomon8718aaf2015-02-19 07:24:21 -08001024 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001025
bsalomon0ea80f42015-02-11 10:49:59 -08001026 REPORTER_ASSERT(reporter, 201 == cache->getResourceBytes());
1027 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001028 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001029}
1030
bsalomonddf30e62015-02-19 11:38:44 -08001031static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1032 static const int kCount = 50;
1033 static const int kBudgetCnt = kCount / 2;
1034 static const int kLockedFreq = 8;
1035 static const int kBudgetSize = 0x80000000;
1036
1037 SkRandom random;
1038
1039 // Run the test 2*kCount times;
1040 for (int i = 0; i < 2 * kCount; ++i ) {
1041 Mock mock(kBudgetCnt, kBudgetSize);
1042 GrContext* context = mock.context();
1043 GrResourceCache* cache = mock.cache();
1044
1045 // Pick a random number of resources to add before the timestamp will wrap.
1046 cache->changeTimestamp(SK_MaxU32 - random.nextULessThan(kCount + 1));
1047
1048 static const int kNumToPurge = kCount - kBudgetCnt;
1049
1050 SkTDArray<int> shouldPurgeIdxs;
1051 int purgeableCnt = 0;
1052 SkTDArray<GrGpuResource*> resourcesToUnref;
1053
1054 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1055 // unpurgeable resources.
1056 for (int j = 0; j < kCount; ++j) {
1057 GrUniqueKey key;
1058 make_unique_key<0>(&key, j);
1059
halcanary385fe4d2015-08-26 13:07:48 -07001060 TestResource* r = new TestResource(context->getGpu());
bsalomonddf30e62015-02-19 11:38:44 -08001061 r->resourcePriv().setUniqueKey(key);
1062 if (random.nextU() % kLockedFreq) {
1063 // Make this is purgeable.
1064 r->unref();
1065 ++purgeableCnt;
1066 if (purgeableCnt <= kNumToPurge) {
1067 *shouldPurgeIdxs.append() = j;
1068 }
1069 } else {
1070 *resourcesToUnref.append() = r;
1071 }
1072 }
1073
1074 // Verify that the correct resources were purged.
1075 int currShouldPurgeIdx = 0;
1076 for (int j = 0; j < kCount; ++j) {
1077 GrUniqueKey key;
1078 make_unique_key<0>(&key, j);
1079 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1080 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1081 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1082 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001083 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001084 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001085 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001086 }
1087 SkSafeUnref(res);
1088 }
1089
1090 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1091 resourcesToUnref[j]->unref();
1092 }
1093 }
1094}
1095
bsalomon3f324322015-04-08 11:01:54 -07001096static void test_flush(skiatest::Reporter* reporter) {
1097 Mock mock(1000000, 1000000);
1098 GrContext* context = mock.context();
1099 GrResourceCache* cache = mock.cache();
1100
1101 // The current cache impl will round the max flush count to the next power of 2. So we choose a
1102 // power of two here to keep things simpler.
1103 static const int kFlushCount = 16;
1104 cache->setLimits(1000000, 1000000, kFlushCount);
1105
1106 {
1107 // Insert a resource and send a flush notification kFlushCount times.
1108 for (int i = 0; i < kFlushCount; ++i) {
halcanary385fe4d2015-08-26 13:07:48 -07001109 TestResource* r = new TestResource(context->getGpu());
bsalomon3f324322015-04-08 11:01:54 -07001110 GrUniqueKey k;
1111 make_unique_key<1>(&k, i);
1112 r->resourcePriv().setUniqueKey(k);
1113 r->unref();
1114 cache->notifyFlushOccurred();
1115 }
1116
1117 // Send flush notifications to the cache. Each flush should purge the oldest resource.
1118 for (int i = 0; i < kFlushCount - 1; ++i) {
1119 // The first resource was purged after the last flush in the initial loop, hence the -1.
1120 REPORTER_ASSERT(reporter, kFlushCount - i - 1 == cache->getResourceCount());
1121 for (int j = 0; j < i; ++j) {
1122 GrUniqueKey k;
1123 make_unique_key<1>(&k, j);
1124 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1125 REPORTER_ASSERT(reporter, !SkToBool(r));
1126 SkSafeUnref(r);
1127 }
1128 cache->notifyFlushOccurred();
1129 }
1130
1131 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1132 cache->purgeAllUnlocked();
1133 }
1134
1135 // Do a similar test but where we leave refs on some resources to prevent them from being
1136 // purged.
1137 {
1138 GrGpuResource* refedResources[kFlushCount >> 1];
1139 for (int i = 0; i < kFlushCount; ++i) {
halcanary385fe4d2015-08-26 13:07:48 -07001140 TestResource* r = new TestResource(context->getGpu());
bsalomon3f324322015-04-08 11:01:54 -07001141 GrUniqueKey k;
1142 make_unique_key<1>(&k, i);
1143 r->resourcePriv().setUniqueKey(k);
1144 // Leave a ref on every other resource, beginning with the first.
1145 if (SkToBool(i & 0x1)) {
1146 refedResources[i/2] = r;
1147 } else {
1148 r->unref();
1149 }
1150 cache->notifyFlushOccurred();
1151 }
1152
1153 for (int i = 0; i < kFlushCount; ++i) {
1154 // Should get a resource purged every other flush.
1155 REPORTER_ASSERT(reporter, kFlushCount - i/2 - 1 == cache->getResourceCount());
1156 cache->notifyFlushOccurred();
1157 }
1158
1159 // Unref all the resources that we kept refs on in the first loop.
1160 for (int i = 0; i < kFlushCount >> 1; ++i) {
1161 refedResources[i]->unref();
1162 }
1163
1164 // When we unref'ed them their timestamps got updated. So nothing should be purged until we
1165 // get kFlushCount additional flushes. Then everything should be purged.
1166 for (int i = 0; i < kFlushCount; ++i) {
1167 REPORTER_ASSERT(reporter, kFlushCount >> 1 == cache->getResourceCount());
1168 cache->notifyFlushOccurred();
1169 }
1170 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1171
1172 cache->purgeAllUnlocked();
1173 }
1174
1175 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1176}
1177
bsalomon10e23ca2014-11-25 05:52:06 -08001178static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001179 // Set the cache size to double the resource count because we're going to create 2x that number
1180 // resources, using two different key domains. Add a little slop to the bytes because we resize
1181 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001182 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001183
bsalomonc2f35b72015-01-23 07:19:22 -08001184 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1185 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001186 GrResourceCache* cache = mock.cache();
bsalomon10e23ca2014-11-25 05:52:06 -08001187
1188 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001189 GrUniqueKey key1, key2;
1190 make_unique_key<1>(&key1, i);
1191 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001192
bsalomon24db3b12015-01-23 04:24:04 -08001193 TestResource* resource;
1194
halcanary385fe4d2015-08-26 13:07:48 -07001195 resource = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001196 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001197 resource->setSize(1);
1198 resource->unref();
1199
halcanary385fe4d2015-08-26 13:07:48 -07001200 resource = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001201 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001202 resource->setSize(1);
1203 resource->unref();
1204 }
1205
1206 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001207 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1208 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1209 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1210 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001211 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001212 GrUniqueKey key1, key2;
1213 make_unique_key<1>(&key1, i);
1214 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001215
bsalomon8718aaf2015-02-19 07:24:21 -08001216 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1217 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001218 }
1219
bsalomon0ea80f42015-02-11 10:49:59 -08001220 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001221 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001222 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1223 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1224 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1225 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001226
1227 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001228 GrUniqueKey key1, key2;
1229 make_unique_key<1>(&key1, i);
1230 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001231
bsalomon8718aaf2015-02-19 07:24:21 -08001232 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1233 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001234 }
1235}
1236
senorblanco84cd6212015-08-04 10:01:58 -07001237static void test_custom_data(skiatest::Reporter* reporter) {
1238 GrUniqueKey key1, key2;
1239 make_unique_key<0>(&key1, 1);
1240 make_unique_key<0>(&key2, 2);
1241 int foo = 4132;
1242 SkAutoTUnref<SkData> data(SkData::NewWithCopy(&foo, sizeof(foo)));
1243 key1.setCustomData(data.get());
1244 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1245 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1246
1247 // Test that copying a key also takes a ref on its custom data.
1248 GrUniqueKey key3 = key1;
1249 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1250}
1251
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +00001252////////////////////////////////////////////////////////////////////////////////
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +00001253DEF_GPUTEST(ResourceCache, reporter, factory) {
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001254 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
1255 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
1256 if (!GrContextFactory::IsRenderingGLContext(glType)) {
1257 continue;
1258 }
1259 GrContext* context = factory->get(glType);
halcanary96fcdcc2015-08-27 07:41:13 -07001260 if (nullptr == context) {
bsalomonfdcf2c02014-11-05 12:30:32 -08001261 continue;
1262 }
bsalomonf2703d82014-10-28 14:33:06 -07001263 GrSurfaceDesc desc;
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001264 desc.fConfig = kSkia8888_GrPixelConfig;
bsalomonf2703d82014-10-28 14:33:06 -07001265 desc.fFlags = kRenderTarget_GrSurfaceFlag;
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001266 desc.fWidth = gWidth;
1267 desc.fHeight = gHeight;
reed69f6f002014-09-18 06:09:44 -07001268 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
bsalomonafe30052015-01-16 07:32:33 -08001269 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget(context,
1270 SkSurface::kNo_Budgeted, info));
reed69f6f002014-09-18 06:09:44 -07001271 test_cache(reporter, context, surface->getCanvas());
bsalomon02a44a42015-02-19 09:09:00 -08001272 test_stencil_buffers(reporter, context);
bsalomon6dc6f5f2015-06-18 09:12:16 -07001273 test_wrapped_resources(reporter, context);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001274 }
bsalomon33435572014-11-05 14:47:41 -08001275
bsalomon8b79d232014-11-10 10:19:06 -08001276 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001277 test_no_key(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001278 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001279 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001280 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001281 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001282 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001283 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001284 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001285 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001286 test_cache_chained_purge(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001287 test_resource_size_changed(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001288 test_timestamp_wrap(reporter);
bsalomon3f324322015-04-08 11:01:54 -07001289 test_flush(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001290 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001291 test_custom_data(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001292}
1293
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001294#endif