blob: 11dcdd43b6920f1fac107551383e6f3b29f7f753 [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
Brian Salomon5e150852017-03-22 14:53:13 -040012#include <thread>
bsalomonbcf0a522014-10-08 08:40:09 -070013#include "GrContext.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000014#include "GrContextPriv.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000015#include "GrContextFactory.h"
bsalomonbcf0a522014-10-08 08:40:09 -070016#include "GrGpu.h"
bsalomon3582d3e2015-02-13 14:20:05 -080017#include "GrGpuResourceCacheAccess.h"
18#include "GrGpuResourcePriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050019#include "GrProxyProvider.h"
Robert Phillipsc0192e32017-09-21 12:00:26 -040020#include "GrRenderTargetPriv.h"
bsalomon0ea80f42015-02-11 10:49:59 -080021#include "GrResourceCache.h"
bsalomon473addf2015-10-02 07:49:05 -070022#include "GrResourceProvider.h"
bsalomon6dc6f5f2015-06-18 09:12:16 -070023#include "GrTest.h"
Robert Phillips646e4292017-06-13 12:44:56 -040024#include "GrTexture.h"
25
bsalomonbcf0a522014-10-08 08:40:09 -070026#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080027#include "SkGr.h"
28#include "SkMessageBus.h"
Robert Phillipsd6214d42016-11-07 08:23:48 -050029#include "SkMipMap.h"
reed69f6f002014-09-18 06:09:44 -070030#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000031#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000032
33static const int gWidth = 640;
34static const int gHeight = 480;
35
36////////////////////////////////////////////////////////////////////////////////
bsalomon68d91342016-04-12 09:59:58 -070037DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070038 GrContext* context = ctxInfo.grContext();
kkinnunen15302832015-12-01 04:35:26 -080039 GrSurfaceDesc desc;
Brian Osman777b5632016-10-14 09:16:21 -040040 desc.fConfig = kRGBA_8888_GrPixelConfig;
kkinnunen15302832015-12-01 04:35:26 -080041 desc.fFlags = kRenderTarget_GrSurfaceFlag;
42 desc.fWidth = gWidth;
43 desc.fHeight = gHeight;
44 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
reede8f30622016-03-23 18:59:25 -070045 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info));
kkinnunen15302832015-12-01 04:35:26 -080046 SkCanvas* canvas = surface->getCanvas();
47
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000048 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
49
50 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000051 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000052 src.eraseColor(SK_ColorBLACK);
Mike Reedf0ffb892017-10-03 14:47:21 -040053 size_t srcSize = src.computeByteSize();
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000054
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000055 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070056 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000057
58 int oldMaxNum;
59 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000060 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000061
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000062 // Set the cache limits so we can fit 10 "src" images and the
63 // max number of textures doesn't matter
64 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000065 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000066
67 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000068 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000069
70 for (int i = 0; i < 100; ++i) {
71 canvas->drawBitmap(src, 0, 0);
Mike Reedf1942192017-07-21 14:24:29 -040072 surface->readPixels(readback, 0, 0);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000073
74 // "modify" the src texture
75 src.notifyPixelsChanged();
76
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000077 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070078 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000079
80 // we should never go over the size limit
81 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
82 }
83
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000084 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000085}
86
bsalomon11abd8d2016-10-14 08:13:48 -070087static bool is_rendering_and_not_angle_es3(sk_gpu_test::GrContextFactory::ContextType type) {
88 if (type == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES3_ContextType ||
89 type == sk_gpu_test::GrContextFactory::kANGLE_GL_ES3_ContextType) {
90 return false;
91 }
92 return sk_gpu_test::GrContextFactory::IsRenderingContext(type);
93}
94
Robert Phillipsc0192e32017-09-21 12:00:26 -040095static GrStencilAttachment* get_SB(GrRenderTarget* rt) {
96 return rt->renderTargetPriv().getStencilAttachment();
97}
98
99static sk_sp<GrRenderTarget> create_RT_with_SB(GrResourceProvider* provider,
100 int size, int sampleCount, SkBudgeted budgeted) {
101 GrSurfaceDesc desc;
102 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipsc0192e32017-09-21 12:00:26 -0400103 desc.fWidth = size;
104 desc.fHeight = size;
105 desc.fConfig = kRGBA_8888_GrPixelConfig;
106 desc.fSampleCnt = sampleCount;
107
108 sk_sp<GrTexture> tex(provider->createTexture(desc, budgeted));
109 if (!tex || !tex->asRenderTarget()) {
110 return nullptr;
111 }
112
113 if (!provider->attachStencilAttachment(tex->asRenderTarget())) {
114 return nullptr;
115 }
116 SkASSERT(get_SB(tex->asRenderTarget()));
117
118 return sk_ref_sp(tex->asRenderTarget());
119}
120
bsalomon11abd8d2016-10-14 08:13:48 -0700121// This currently fails on ES3 ANGLE contexts
122DEF_GPUTEST_FOR_CONTEXTS(ResourceCacheStencilBuffers, &is_rendering_and_not_angle_es3, reporter,
Robert Phillipsec325342017-10-30 18:02:48 +0000123 ctxInfo, nullptr) {
bsalomon8b7451a2016-05-11 06:33:06 -0700124 GrContext* context = ctxInfo.grContext();
Eric Karl5c779752017-05-08 12:02:07 -0700125 if (context->caps()->avoidStencilBuffers()) {
126 return;
127 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400128
Robert Phillips6be756b2018-01-16 15:07:54 -0500129 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsc0192e32017-09-21 12:00:26 -0400130
Brian Salomonbdecacf2018-02-02 20:32:49 -0500131 sk_sp<GrRenderTarget> smallRT0 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400132 REPORTER_ASSERT(reporter, smallRT0);
133
134 {
135 // Two budgeted RTs with the same desc should share a stencil buffer.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500136 sk_sp<GrRenderTarget> smallRT1 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
137 REPORTER_ASSERT(reporter, smallRT1);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400138
Brian Salomonbdecacf2018-02-02 20:32:49 -0500139 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800140 }
141
Robert Phillipsc0192e32017-09-21 12:00:26 -0400142 {
143 // An unbudgeted RT with the same desc should also share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500144 sk_sp<GrRenderTarget> smallRT2 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400145 REPORTER_ASSERT(reporter, smallRT2);
146
147 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT2.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800148 }
149
Robert Phillipsc0192e32017-09-21 12:00:26 -0400150 {
151 // An RT with a much larger size should not share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500152 sk_sp<GrRenderTarget> bigRT = create_RT_with_SB(resourceProvider, 400, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400153 REPORTER_ASSERT(reporter, bigRT);
bsalomon02a44a42015-02-19 09:09:00 -0800154
Robert Phillipsc0192e32017-09-21 12:00:26 -0400155 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(bigRT.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800156 }
bsalomon02a44a42015-02-19 09:09:00 -0800157
Brian Salomonbdecacf2018-02-02 20:32:49 -0500158 int smallSampleCount = context->caps()->getRenderTargetSampleCount(2, kRGBA_8888_GrPixelConfig);
159 if (smallSampleCount > 1) {
mtklein5f939ab2016-03-16 10:28:35 -0700160 // An RT with a different sample count should not share.
Robert Phillips6be756b2018-01-16 15:07:54 -0500161 sk_sp<GrRenderTarget> smallMSAART0 = create_RT_with_SB(resourceProvider, 4,
162 smallSampleCount, SkBudgeted::kNo);
bsalomonb602d4d2015-02-19 12:05:58 -0800163#ifdef SK_BUILD_FOR_ANDROID
164 if (!smallMSAART0) {
165 // The nexus player seems to fail to create MSAA textures.
166 return;
167 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400168#else
169 REPORTER_ASSERT(reporter, smallMSAART0);
bsalomonb602d4d2015-02-19 12:05:58 -0800170#endif
Robert Phillipsc0192e32017-09-21 12:00:26 -0400171
172 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(smallMSAART0.get()));
173
174 {
175 // A second MSAA RT should share with the first MSAA RT.
Robert Phillips6be756b2018-01-16 15:07:54 -0500176 sk_sp<GrRenderTarget> smallMSAART1 = create_RT_with_SB(resourceProvider, 4,
177 smallSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400178 SkBudgeted::kNo);
179 REPORTER_ASSERT(reporter, smallMSAART1);
180
181 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) == get_SB(smallMSAART1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800182 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400183
Brian Salomonbdecacf2018-02-02 20:32:49 -0500184 // But one with a larger sample count should not. (Also check that the two requests didn't
185 // rounded up to the same actual sample count or else they could share.).
186 int bigSampleCount =
187 context->caps()->getRenderTargetSampleCount(5, kRGBA_8888_GrPixelConfig);
188 if (bigSampleCount > 0 && bigSampleCount != smallSampleCount) {
Robert Phillips6be756b2018-01-16 15:07:54 -0500189 sk_sp<GrRenderTarget> smallMSAART2 = create_RT_with_SB(resourceProvider, 4,
190 bigSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400191 SkBudgeted::kNo);
192 REPORTER_ASSERT(reporter, smallMSAART2);
193
194 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) != get_SB(smallMSAART2.get()));
bsalomon02a44a42015-02-19 09:09:00 -0800195 }
196 }
197}
198
bsalomon68d91342016-04-12 09:59:58 -0700199DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheWrappedResources, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700200 GrContext* context = ctxInfo.grContext();
Robert Phillips6be756b2018-01-16 15:07:54 -0500201 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500202 GrGpu* gpu = context->contextPriv().getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700203 // this test is only valid for GL
204 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700205 return;
206 }
207
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500208 GrBackendTexture backendTextures[2];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700209 static const int kW = 100;
210 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700211
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500212 backendTextures[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
213 kRGBA_8888_GrPixelConfig,
214 false, GrMipMapped::kNo);
215 backendTextures[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
216 kRGBA_8888_GrPixelConfig,
217 false, GrMipMapped::kNo);
Greg Daniel5366e592018-01-10 09:57:53 -0500218 REPORTER_ASSERT(reporter, backendTextures[0].isValid());
219 REPORTER_ASSERT(reporter, backendTextures[1].isValid());
220 if (!backendTextures[0].isValid() || !backendTextures[1].isValid()) {
221 return;
222 }
jvanverth672bb7f2015-07-13 07:19:57 -0700223
bsalomon6dc6f5f2015-06-18 09:12:16 -0700224 context->resetContext();
225
Robert Phillips6be756b2018-01-16 15:07:54 -0500226 sk_sp<GrTexture> borrowed(resourceProvider->wrapBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500227 backendTextures[0], kBorrow_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700228
Robert Phillips6be756b2018-01-16 15:07:54 -0500229 sk_sp<GrTexture> adopted(resourceProvider->wrapBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500230 backendTextures[1], kAdopt_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700231
Brian Osman85d34b22017-05-10 12:06:26 -0400232 REPORTER_ASSERT(reporter, borrowed != nullptr && adopted != nullptr);
233 if (!borrowed || !adopted) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700234 return;
235 }
236
halcanary96fcdcc2015-08-27 07:41:13 -0700237 borrowed.reset(nullptr);
238 adopted.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700239
240 context->flush();
241
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500242 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[0]);
243 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[1]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700244
245 REPORTER_ASSERT(reporter, borrowedIsAlive);
246 REPORTER_ASSERT(reporter, !adoptedIsAlive);
247
Brian Salomone64b0642018-03-07 11:47:54 -0500248 if (borrowedIsAlive) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500249 gpu->deleteTestingOnlyBackendTexture(backendTextures[0]);
Brian Salomone64b0642018-03-07 11:47:54 -0500250 }
251 if (adoptedIsAlive) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500252 gpu->deleteTestingOnlyBackendTexture(backendTextures[1]);
Brian Salomone64b0642018-03-07 11:47:54 -0500253 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700254
255 context->resetContext();
256}
257
bsalomon6d3fe022014-07-25 08:35:45 -0700258class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800259 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000260public:
robertphillips6e83ac72015-08-13 05:19:14 -0700261 static const size_t kDefaultSize = 100;
mtklein5f939ab2016-03-16 10:28:35 -0700262
bsalomon1c60dfe2015-01-21 09:32:40 -0800263 /** Property that distinctly categorizes the resource.
264 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800265 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800266
kkinnunen2e6055b2016-04-22 01:48:29 -0700267 TestResource(GrGpu* gpu, SkBudgeted budgeted = SkBudgeted::kYes, size_t size = kDefaultSize)
268 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700269 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800270 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700271 , fProperty(kA_SimulatedProperty)
272 , fIsScratch(false) {
bsalomon5236cf42015-01-14 10:42:08 -0800273 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700274 this->registerWithCache(budgeted);
bsalomon5236cf42015-01-14 10:42:08 -0800275 }
276
kkinnunen2e6055b2016-04-22 01:48:29 -0700277 static TestResource* CreateScratch(GrGpu* gpu, SkBudgeted budgeted,
278 SimulatedProperty property) {
279 return new TestResource(gpu, budgeted, property, kScratchConstructor);
bsalomondace19e2014-11-17 07:34:06 -0800280 }
kkinnunen2e6055b2016-04-22 01:48:29 -0700281 static TestResource* CreateWrapped(GrGpu* gpu, size_t size = kDefaultSize) {
282 return new TestResource(gpu, size);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000283 }
284
Brian Salomond3b65972017-03-22 12:05:03 -0400285 ~TestResource() override {
bsalomon33435572014-11-05 14:47:41 -0800286 --fNumAlive;
bsalomon71cb0c22014-11-14 12:10:14 -0800287 SkSafeUnref(fToDelete);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000288 }
289
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000290 void setSize(size_t size) {
291 fSize = size;
292 this->didChangeGpuMemorySize();
293 }
294
bsalomon33435572014-11-05 14:47:41 -0800295 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000296
bsalomon71cb0c22014-11-14 12:10:14 -0800297 void setUnrefWhenDestroyed(TestResource* resource) {
298 SkRefCnt_SafeAssign(fToDelete, resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000299 }
300
bsalomon1c60dfe2015-01-21 09:32:40 -0800301 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
302 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
303 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800304 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
305 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800306 }
307 }
308
309 static size_t ExpectedScratchKeySize() {
310 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
311 }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000312private:
bsalomon24db3b12015-01-23 04:24:04 -0800313 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800314
kkinnunen2e6055b2016-04-22 01:48:29 -0700315 TestResource(GrGpu* gpu, SkBudgeted budgeted, SimulatedProperty property, ScratchConstructor)
316 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700317 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800318 , fSize(kDefaultSize)
kkinnunen2e6055b2016-04-22 01:48:29 -0700319 , fProperty(property)
320 , fIsScratch(true) {
bsalomon1c60dfe2015-01-21 09:32:40 -0800321 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700322 this->registerWithCache(budgeted);
323 }
324
325 // Constructor for simulating resources that wrap backend objects.
326 TestResource(GrGpu* gpu, size_t size)
327 : INHERITED(gpu)
328 , fToDelete(nullptr)
329 , fSize(size)
330 , fProperty(kA_SimulatedProperty)
331 , fIsScratch(false) {
332 ++fNumAlive;
333 this->registerWithCacheWrapped();
334 }
335
336 void computeScratchKey(GrScratchKey* key) const override {
337 if (fIsScratch) {
338 ComputeScratchKey(fProperty, key);
339 }
bsalomon1c60dfe2015-01-21 09:32:40 -0800340 }
341
mtklein36352bf2015-03-25 18:17:31 -0700342 size_t onGpuMemorySize() const override { return fSize; }
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -0400343 const char* getResourceType() const override { return "Test"; }
bsalomon69ed47f2014-11-12 11:13:39 -0800344
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000345 TestResource* fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000346 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800347 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800348 SimulatedProperty fProperty;
kkinnunen2e6055b2016-04-22 01:48:29 -0700349 bool fIsScratch;
bsalomon6d3fe022014-07-25 08:35:45 -0700350 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000351};
bsalomon33435572014-11-05 14:47:41 -0800352int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000353
bsalomonc2f35b72015-01-23 07:19:22 -0800354class Mock {
355public:
356 Mock(int maxCnt, size_t maxBytes) {
Greg Daniel02611d92017-07-25 10:05:01 -0400357 fContext = GrContext::MakeMock(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -0800358 SkASSERT(fContext);
359 fContext->setResourceCacheLimits(maxCnt, maxBytes);
Robert Phillips6be756b2018-01-16 15:07:54 -0500360 GrResourceCache* cache = fContext->contextPriv().getResourceCache();
bsalomon0ea80f42015-02-11 10:49:59 -0800361 cache->purgeAllUnlocked();
362 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800363 }
bsalomonc2f35b72015-01-23 07:19:22 -0800364
Robert Phillips6be756b2018-01-16 15:07:54 -0500365 GrResourceCache* cache() { return fContext->contextPriv().getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800366
Hal Canary342b7ac2016-11-04 11:49:42 -0400367 GrContext* context() { return fContext.get(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800368
369private:
Hal Canary342b7ac2016-11-04 11:49:42 -0400370 sk_sp<GrContext> fContext;
bsalomonc2f35b72015-01-23 07:19:22 -0800371};
372
373static void test_no_key(skiatest::Reporter* reporter) {
374 Mock mock(10, 30000);
375 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800376 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500377 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon71cb0c22014-11-14 12:10:14 -0800378
379 // Create a bunch of resources with no keys
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500380 TestResource* a = new TestResource(gpu);
381 TestResource* b = new TestResource(gpu);
382 TestResource* c = new TestResource(gpu);
383 TestResource* d = new TestResource(gpu);
bsalomon71cb0c22014-11-14 12:10:14 -0800384 a->setSize(11);
385 b->setSize(12);
386 c->setSize(13);
387 d->setSize(14);
388
389 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800390 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800391 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800392 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800393
394 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800395 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800396 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
397
bsalomon8718aaf2015-02-19 07:24:21 -0800398 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800399
400 a->unref();
401 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800402 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800403 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800404 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800405
406 c->unref();
407 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800408 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800409 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800410 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800411
412 d->unref();
413 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800414 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
415 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800416
417 b->unref();
418 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800419 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
420 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800421}
422
bsalomon24db3b12015-01-23 04:24:04 -0800423// Each integer passed as a template param creates a new domain.
Brian Salomon1090da62017-01-06 12:04:19 -0500424template <int>
425static void make_unique_key(GrUniqueKey* key, int data, const char* tag = nullptr) {
bsalomon8718aaf2015-02-19 07:24:21 -0800426 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
Brian Salomon1090da62017-01-06 12:04:19 -0500427 GrUniqueKey::Builder builder(key, d, 1, tag);
bsalomon24db3b12015-01-23 04:24:04 -0800428 builder[0] = data;
429}
430
Robert Phillips6eba0632018-03-28 12:25:42 -0400431static void test_purge_unlocked(skiatest::Reporter* reporter) {
432 Mock mock(10, 30000);
433 GrContext* context = mock.context();
434 GrResourceCache* cache = mock.cache();
435 GrGpu* gpu = context->contextPriv().getGpu();
436
437 // Create two resource w/ a unique key and two w/o but all of which have scratch keys.
438 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
439 TestResource::kA_SimulatedProperty);
440 a->setSize(11);
441
442 GrUniqueKey uniqueKey;
443 make_unique_key<0>(&uniqueKey, 0);
444
445 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
446 TestResource::kA_SimulatedProperty);
447 b->setSize(12);
448 b->resourcePriv().setUniqueKey(uniqueKey);
449
450 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
451 TestResource::kA_SimulatedProperty);
452 c->setSize(13);
453
454 GrUniqueKey uniqueKey2;
455 make_unique_key<0>(&uniqueKey2, 1);
456
457 TestResource* d = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
458 TestResource::kA_SimulatedProperty);
459 d->setSize(14);
460 d->resourcePriv().setUniqueKey(uniqueKey2);
461
462
463 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
464 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
465 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
466 d->gpuMemorySize() == cache->getResourceBytes());
467
468 // Should be safe to purge without deleting the resources since we still have refs.
469 cache->purgeUnlockedResources(false);
470 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
471
472 // Unref them all. Since they all have keys they should remain in the cache.
473
474 a->unref();
475 b->unref();
476 c->unref();
477 d->unref();
478 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
479 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
480 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
481 d->gpuMemorySize() == cache->getResourceBytes());
482
483 // Purge only the two scratch resources
484 cache->purgeUnlockedResources(true);
485
486 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
487 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
488 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
489 cache->getResourceBytes());
490
491 // Purge the uniquely keyed resources
492 cache->purgeUnlockedResources(false);
493
494 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
495 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
496 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
497}
498
bsalomon84c8e622014-11-17 09:33:27 -0800499static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800500 Mock mock(10, 300);
501 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800502 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500503 GrGpu* gpu = context->contextPriv().getGpu();
bsalomondace19e2014-11-17 07:34:06 -0800504
bsalomon8718aaf2015-02-19 07:24:21 -0800505 GrUniqueKey uniqueKey;
506 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800507
bsalomon8718aaf2015-02-19 07:24:21 -0800508 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800509 TestResource* scratch =
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500510 TestResource::CreateScratch(gpu, SkBudgeted::kYes, TestResource::kB_SimulatedProperty);
bsalomondace19e2014-11-17 07:34:06 -0800511 scratch->setSize(10);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500512 TestResource* unique = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -0800513 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800514 unique->resourcePriv().setUniqueKey(uniqueKey);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500515 TestResource* wrapped = TestResource::CreateWrapped(gpu);
bsalomon5236cf42015-01-14 10:42:08 -0800516 wrapped->setSize(12);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500517 TestResource* unbudgeted = new TestResource(gpu, SkBudgeted::kNo);
bsalomon84c8e622014-11-17 09:33:27 -0800518 unbudgeted->setSize(13);
bsalomondace19e2014-11-17 07:34:06 -0800519
Brian Osman0562eb92017-05-08 11:16:39 -0400520 // Make sure we can add a unique key to the wrapped resource
bsalomon8718aaf2015-02-19 07:24:21 -0800521 GrUniqueKey uniqueKey2;
522 make_unique_key<0>(&uniqueKey2, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800523 wrapped->resourcePriv().setUniqueKey(uniqueKey2);
Brian Osman0562eb92017-05-08 11:16:39 -0400524 GrGpuResource* wrappedViaKey = cache->findAndRefUniqueResource(uniqueKey2);
525 REPORTER_ASSERT(reporter, wrappedViaKey != nullptr);
526
527 // Remove the extra ref we just added.
528 wrappedViaKey->unref();
bsalomondace19e2014-11-17 07:34:06 -0800529
530 // Make sure sizes are as we expect
bsalomon0ea80f42015-02-11 10:49:59 -0800531 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800532 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800533 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800534 cache->getResourceBytes());
535 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800536 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800537 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400538 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800539
bsalomon63c992f2015-01-23 12:47:59 -0800540 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800541 cache->purgeAllUnlocked();
542 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800543 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800544 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800545 cache->getResourceBytes());
546 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800547 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800548 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400549 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800550
551 // Unreffing the wrapped resource should free it right away.
552 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800553 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800554 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800555 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400556 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800557
bsalomon84c8e622014-11-17 09:33:27 -0800558 // Now try freeing the budgeted resources first
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500559 wrapped = TestResource::CreateWrapped(gpu);
bsalomondace19e2014-11-17 07:34:06 -0800560 scratch->setSize(12);
bsalomon8718aaf2015-02-19 07:24:21 -0800561 unique->unref();
Derek Sollenbergeree479142017-05-24 11:41:33 -0400562 REPORTER_ASSERT(reporter, 11 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800563 cache->purgeAllUnlocked();
564 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800565 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrapped->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800566 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
567 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
568 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400569 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800570
571 scratch->unref();
Derek Sollenbergeree479142017-05-24 11:41:33 -0400572 REPORTER_ASSERT(reporter, 12 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800573 cache->purgeAllUnlocked();
574 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800575 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrapped->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800576 cache->getResourceBytes());
577 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
578 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400579 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800580
581 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800582 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
583 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
584 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
585 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400586 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800587
588 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800589 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
590 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
591 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
592 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400593 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800594}
595
bsalomon5236cf42015-01-14 10:42:08 -0800596static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800597 Mock mock(10, 30000);
598 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800599 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500600 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon5236cf42015-01-14 10:42:08 -0800601
bsalomon8718aaf2015-02-19 07:24:21 -0800602 GrUniqueKey uniqueKey;
603 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800604
605 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800606 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800607 TestResource* wrapped;
608 TestResource* unbudgeted;
609
610 // A large uncached or wrapped resource shouldn't evict anything.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500611 scratch = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
kkinnunen2e6055b2016-04-22 01:48:29 -0700612 TestResource::kB_SimulatedProperty);
613
bsalomon5236cf42015-01-14 10:42:08 -0800614 scratch->setSize(10);
615 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800616 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
617 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
618 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
619 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400620 REPORTER_ASSERT(reporter, 10 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800621
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500622 unique = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -0800623 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800624 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800625 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800626 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
627 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
628 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
629 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400630 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800631
bsalomon0ea80f42015-02-11 10:49:59 -0800632 size_t large = 2 * cache->getResourceBytes();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500633 unbudgeted = new TestResource(gpu, SkBudgeted::kNo, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800634 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
635 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
636 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
637 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400638 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800639
640 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800641 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
642 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
643 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
644 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400645 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800646
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500647 wrapped = TestResource::CreateWrapped(gpu, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800648 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
649 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
650 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
651 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400652 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800653
654 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800655 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
656 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
657 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
658 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400659 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800660
bsalomon0ea80f42015-02-11 10:49:59 -0800661 cache->purgeAllUnlocked();
662 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
663 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
664 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
665 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400666 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800667}
668
bsalomon3582d3e2015-02-13 14:20:05 -0800669// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
670void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
671/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800672 Mock mock(10, 300);
673 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800674 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500675 GrGpu* gpu = context->contextPriv().getGpu();
bsalomonc2f35b72015-01-23 07:19:22 -0800676
677 TestResource* resource =
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500678 TestResource::CreateScratch(gpu, SkBudgeted::kNo, TestResource::kA_SimulatedProperty);
bsalomonc2f35b72015-01-23 07:19:22 -0800679 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800680 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800681
682 size_t size = resource->gpuMemorySize();
683 for (int i = 0; i < 2; ++i) {
684 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800685 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800686 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800687 REPORTER_ASSERT(reporter, SkBudgeted::kNo == resource->resourcePriv().isBudgeted());
halcanary96fcdcc2015-08-27 07:41:13 -0700688 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomon0ea80f42015-02-11 10:49:59 -0800689 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
690 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
691 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
692 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400693 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800694
695 // Once it is unrefed, it should become available as scratch.
696 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800697 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
698 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
699 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
700 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400701 REPORTER_ASSERT(reporter, size == cache->getPurgeableBytes());
robertphillips6e83ac72015-08-13 05:19:14 -0700702 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomonc2f35b72015-01-23 07:19:22 -0800703 REPORTER_ASSERT(reporter, resource);
bsalomon3582d3e2015-02-13 14:20:05 -0800704 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800705 REPORTER_ASSERT(reporter, resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800706 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800707
708 if (0 == i) {
mtklein5f939ab2016-03-16 10:28:35 -0700709 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
bsalomonc2f35b72015-01-23 07:19:22 -0800710 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800711 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800712 } else {
713 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800714 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800715 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
716 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
717 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
718 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400719 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800720 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800721 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800722 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800723
724 // now when it is unrefed it should die since it has no key.
725 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800726 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
727 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
728 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
729 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400730 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800731 }
bsalomon8b79d232014-11-10 10:19:06 -0800732 }
bsalomonc2f35b72015-01-23 07:19:22 -0800733}
734
735static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
736 Mock mock(5, 30000);
737 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800738 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500739 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -0800740
bsalomon8b79d232014-11-10 10:19:06 -0800741 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500742 TestResource* a = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700743 SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800744 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500745 TestResource* b = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700746 SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800747 TestResource::kB_SimulatedProperty);
bsalomon8b79d232014-11-10 10:19:06 -0800748 a->setSize(11);
749 b->setSize(12);
bsalomon1c60dfe2015-01-21 09:32:40 -0800750 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800751 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800752 // Check for negative case consistency. (leaks upon test failure.)
halcanary96fcdcc2015-08-27 07:41:13 -0700753 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(scratchKey1, TestResource::kDefaultSize, 0));
bsalomon1c60dfe2015-01-21 09:32:40 -0800754
755 GrScratchKey scratchKey;
bsalomon23e619c2015-02-06 11:54:28 -0800756 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800757
bsalomon0ea80f42015-02-11 10:49:59 -0800758 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon8b79d232014-11-10 10:19:06 -0800759 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800760 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
761 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800762 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800763 cache->getResourceBytes());
bsalomon8b79d232014-11-10 10:19:06 -0800764
bsalomon63c992f2015-01-23 12:47:59 -0800765 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800766 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800767 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800768 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800769
770 // Unref but don't purge
771 a->unref();
772 b->unref();
773 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800774 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800775
bsalomon63c992f2015-01-23 12:47:59 -0800776 // Purge again. This time resources should be purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800777 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800778 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800779 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
780 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800781}
782
bsalomon10e23ca2014-11-25 05:52:06 -0800783static void test_remove_scratch_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800784 Mock mock(5, 30000);
785 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800786 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500787 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -0800788
bsalomon10e23ca2014-11-25 05:52:06 -0800789 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500790 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800791 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500792 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800793 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800794 a->unref();
795 b->unref();
796
bsalomon1c60dfe2015-01-21 09:32:40 -0800797 GrScratchKey scratchKey;
798 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800799 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800800 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700801 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800802
bsalomon0ea80f42015-02-11 10:49:59 -0800803 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800804 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800805 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800806 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
807 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800808
809 // Find the first resource and remove its scratch key
810 GrGpuResource* find;
robertphillips6e83ac72015-08-13 05:19:14 -0700811 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800812 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800813 // It's still alive, but not cached by scratch key anymore
814 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800815 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
816 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800817
818 // The cache should immediately delete it when it's unrefed since it isn't accessible.
819 find->unref();
820 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800821 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
822 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800823
824 // Repeat for the second resource.
robertphillips6e83ac72015-08-13 05:19:14 -0700825 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800826 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800827 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800828 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
829 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800830
831 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800832 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800833 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800834 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
835 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800836
837 find->unref();
838 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800839 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
840 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800841}
842
bsalomon1c60dfe2015-01-21 09:32:40 -0800843static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800844 Mock mock(5, 30000);
845 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800846 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500847 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon1c60dfe2015-01-21 09:32:40 -0800848
849 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500850 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800851 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500852 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800853 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800854 a->unref();
855 b->unref();
856
857 GrScratchKey scratchKey;
858 // Ensure that scratch key comparison and assignment is consistent.
859 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800860 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800861 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800862 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800863 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
864 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
865 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
866 scratchKey = scratchKey1;
867 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
868 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
869 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
870 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
871 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
872 scratchKey = scratchKey2;
873 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
874 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
875 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
876 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
877 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
878
879 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800880 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800881 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700882 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800883
884 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800885 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700886 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700887 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800888 find->unref();
889
890 scratchKey2 = scratchKey;
robertphillips6e83ac72015-08-13 05:19:14 -0700891 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700892 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800893 REPORTER_ASSERT(reporter, find == a || find == b);
894
robertphillips6e83ac72015-08-13 05:19:14 -0700895 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700896 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800897 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
898 REPORTER_ASSERT(reporter, find2 != find);
899 find2->unref();
900 find->unref();
901}
902
bsalomon8718aaf2015-02-19 07:24:21 -0800903static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800904 Mock mock(5, 30000);
905 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800906 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500907 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000908
bsalomon8718aaf2015-02-19 07:24:21 -0800909 GrUniqueKey key;
910 make_unique_key<0>(&key, 0);
mtklein5f939ab2016-03-16 10:28:35 -0700911
bsalomon8718aaf2015-02-19 07:24:21 -0800912 // Create two resources that we will attempt to register with the same unique key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500913 TestResource* a = new TestResource(gpu);
bsalomon8b79d232014-11-10 10:19:06 -0800914 a->setSize(11);
mtklein5f939ab2016-03-16 10:28:35 -0700915
bsalomonf99e9612015-02-19 08:24:16 -0800916 // Set key on resource a.
917 a->resourcePriv().setUniqueKey(key);
918 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
919 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800920
bsalomonf99e9612015-02-19 08:24:16 -0800921 // Make sure that redundantly setting a's key works.
922 a->resourcePriv().setUniqueKey(key);
923 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800924 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800925 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
926 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800927 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
928
bsalomonf99e9612015-02-19 08:24:16 -0800929 // Create resource b and set the same key. It should replace a's unique key cache entry.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500930 TestResource* b = new TestResource(gpu);
bsalomonf99e9612015-02-19 08:24:16 -0800931 b->setSize(12);
932 b->resourcePriv().setUniqueKey(key);
933 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
934 b->unref();
935
936 // Still have two resources because a is still reffed.
937 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
938 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
939 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
940
941 a->unref();
942 // Now a should be gone.
943 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
944 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
945 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
946
947 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
948 // Also make b be unreffed when replacement occurs.
949 b->unref();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500950 TestResource* c = new TestResource(gpu);
bsalomonf99e9612015-02-19 08:24:16 -0800951 GrUniqueKey differentKey;
952 make_unique_key<0>(&differentKey, 1);
953 c->setSize(13);
954 c->resourcePriv().setUniqueKey(differentKey);
955 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
956 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
957 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
958 // c replaces b and b should be immediately purged.
959 c->resourcePriv().setUniqueKey(key);
960 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
961 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
962 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
963
964 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800965 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800966 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
967 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
968 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
969
970 // Drop the ref on c, it should be kept alive because it has a unique key.
971 c->unref();
972 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
973 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
974 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
975
976 // Verify that we can find c, then remove its unique key. It should get purged immediately.
977 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
978 c->resourcePriv().removeUniqueKey();
979 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800980 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
981 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -0800982 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -0700983
984 {
985 GrUniqueKey key2;
986 make_unique_key<0>(&key2, 0);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500987 sk_sp<TestResource> d(new TestResource(gpu));
senorblanco84cd6212015-08-04 10:01:58 -0700988 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -0700989 key2.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -0700990 d->resourcePriv().setUniqueKey(key2);
991 }
992
993 GrUniqueKey key3;
994 make_unique_key<0>(&key3, 0);
Hal Canary342b7ac2016-11-04 11:49:42 -0400995 sk_sp<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
senorblanco84cd6212015-08-04 10:01:58 -0700996 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000997}
998
bsalomon8b79d232014-11-10 10:19:06 -0800999static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -08001000 Mock mock(5, 30000);
1001 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001002 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001003 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -08001004
bsalomon8718aaf2015-02-19 07:24:21 -08001005 GrUniqueKey key1, key2, key3;
1006 make_unique_key<0>(&key1, 1);
1007 make_unique_key<0>(&key2, 2);
1008 make_unique_key<0>(&key3, 3);
mtklein5f939ab2016-03-16 10:28:35 -07001009
bsalomon23e619c2015-02-06 11:54:28 -08001010 // Add three resources to the cache. Only c is usable as scratch.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001011 TestResource* a = new TestResource(gpu);
1012 TestResource* b = new TestResource(gpu);
1013 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -08001014 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -08001015 a->resourcePriv().setUniqueKey(key1);
1016 b->resourcePriv().setUniqueKey(key2);
1017 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -08001018 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -08001019 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -08001020 c->unref();
1021
bsalomon8718aaf2015-02-19 07:24:21 -08001022 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1023 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
1024 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -08001025 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -08001026
bsalomon8718aaf2015-02-19 07:24:21 -08001027 typedef GrUniqueKeyInvalidatedMessage Msg;
1028 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -08001029
1030 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
1031 Bus::Post(Msg(key1));
1032 Bus::Post(Msg(key2));
bsalomon0ea80f42015-02-11 10:49:59 -08001033 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -08001034 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -08001035 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1036 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -08001037 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -08001038 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -08001039
1040 // Invalidate the third.
bsalomon23e619c2015-02-06 11:54:28 -08001041 Bus::Post(Msg(key3));
bsalomon0ea80f42015-02-11 10:49:59 -08001042 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -08001043 // we still have a ref on b, c should be recycled as scratch.
1044 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -08001045 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -08001046
bsalomon23e619c2015-02-06 11:54:28 -08001047 // make b purgeable. It should be immediately deleted since it has no key.
1048 b->unref();
1049 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
1050
1051 // Make sure we actually get to c via it's scratch key, before we say goodbye.
1052 GrScratchKey scratchKey;
1053 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -07001054 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon23e619c2015-02-06 11:54:28 -08001055 REPORTER_ASSERT(reporter, scratch == c);
1056 SkSafeUnref(scratch);
1057
1058 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -08001059 cache->purgeAllUnlocked();
robertphillips6e83ac72015-08-13 05:19:14 -07001060 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon71cb0c22014-11-14 12:10:14 -08001061 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -08001062 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1063 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -08001064 REPORTER_ASSERT(reporter, !scratch);
1065 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -08001066}
1067
bsalomon71cb0c22014-11-14 12:10:14 -08001068static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -08001069 Mock mock(3, 30000);
1070 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001071 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001072 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -08001073
bsalomon8718aaf2015-02-19 07:24:21 -08001074 GrUniqueKey key1, key2;
1075 make_unique_key<0>(&key1, 1);
1076 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001077
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001078 TestResource* a = new TestResource(gpu);
1079 TestResource* b = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001080 a->resourcePriv().setUniqueKey(key1);
1081 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -08001082
bsalomonc2f35b72015-01-23 07:19:22 -08001083 // Make a cycle
1084 a->setUnrefWhenDestroyed(b);
1085 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -08001086
bsalomonc2f35b72015-01-23 07:19:22 -08001087 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001088
bsalomonc2f35b72015-01-23 07:19:22 -08001089 a->unref();
1090 b->unref();
bsalomon8b79d232014-11-10 10:19:06 -08001091
bsalomonc2f35b72015-01-23 07:19:22 -08001092 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001093
bsalomon0ea80f42015-02-11 10:49:59 -08001094 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001095 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001096
bsalomonc2f35b72015-01-23 07:19:22 -08001097 // Break the cycle
halcanary96fcdcc2015-08-27 07:41:13 -07001098 a->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -08001099 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001100
bsalomon0ea80f42015-02-11 10:49:59 -08001101 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001102 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001103}
1104
bsalomon8b79d232014-11-10 10:19:06 -08001105static void test_resource_size_changed(skiatest::Reporter* reporter) {
bsalomon8718aaf2015-02-19 07:24:21 -08001106 GrUniqueKey key1, key2;
1107 make_unique_key<0>(&key1, 1);
1108 make_unique_key<0>(&key2, 2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001109
1110 // Test changing resources sizes (both increase & decrease).
1111 {
bsalomonc2f35b72015-01-23 07:19:22 -08001112 Mock mock(3, 30000);
1113 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001114 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001115 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001116
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001117 TestResource* a = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001118 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001119 a->unref();
1120
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001121 TestResource* b = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001122 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001123 b->unref();
1124
bsalomon0ea80f42015-02-11 10:49:59 -08001125 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1126 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -08001127 {
Hal Canary342b7ac2016-11-04 11:49:42 -04001128 sk_sp<TestResource> find2(
bsalomon8718aaf2015-02-19 07:24:21 -08001129 static_cast<TestResource*>(cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001130 find2->setSize(200);
Hal Canary342b7ac2016-11-04 11:49:42 -04001131 sk_sp<TestResource> find1(
bsalomon8718aaf2015-02-19 07:24:21 -08001132 static_cast<TestResource*>(cache->findAndRefUniqueResource(key1)));
bsalomon8b79d232014-11-10 10:19:06 -08001133 find1->setSize(50);
1134 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001135
bsalomon0ea80f42015-02-11 10:49:59 -08001136 REPORTER_ASSERT(reporter, 250 == cache->getResourceBytes());
1137 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001138 }
1139
1140 // Test increasing a resources size beyond the cache budget.
1141 {
bsalomonc2f35b72015-01-23 07:19:22 -08001142 Mock mock(2, 300);
1143 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001144 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001145 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001146
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001147 TestResource* a = new TestResource(gpu);
bsalomon8b79d232014-11-10 10:19:06 -08001148 a->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001149 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001150 a->unref();
1151
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001152 TestResource* b = new TestResource(gpu);
bsalomon8b79d232014-11-10 10:19:06 -08001153 b->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001154 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001155 b->unref();
1156
bsalomon0ea80f42015-02-11 10:49:59 -08001157 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1158 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001159
bsalomon8b79d232014-11-10 10:19:06 -08001160 {
Hal Canary342b7ac2016-11-04 11:49:42 -04001161 sk_sp<TestResource> find2(static_cast<TestResource*>(
bsalomon8718aaf2015-02-19 07:24:21 -08001162 cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001163 find2->setSize(201);
1164 }
bsalomon8718aaf2015-02-19 07:24:21 -08001165 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001166
bsalomon0ea80f42015-02-11 10:49:59 -08001167 REPORTER_ASSERT(reporter, 201 == cache->getResourceBytes());
1168 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001169 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001170}
1171
bsalomonddf30e62015-02-19 11:38:44 -08001172static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1173 static const int kCount = 50;
1174 static const int kBudgetCnt = kCount / 2;
1175 static const int kLockedFreq = 8;
1176 static const int kBudgetSize = 0x80000000;
1177
1178 SkRandom random;
1179
1180 // Run the test 2*kCount times;
1181 for (int i = 0; i < 2 * kCount; ++i ) {
1182 Mock mock(kBudgetCnt, kBudgetSize);
1183 GrContext* context = mock.context();
1184 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001185 GrGpu* gpu = context->contextPriv().getGpu();
bsalomonddf30e62015-02-19 11:38:44 -08001186
1187 // Pick a random number of resources to add before the timestamp will wrap.
1188 cache->changeTimestamp(SK_MaxU32 - random.nextULessThan(kCount + 1));
1189
1190 static const int kNumToPurge = kCount - kBudgetCnt;
1191
1192 SkTDArray<int> shouldPurgeIdxs;
1193 int purgeableCnt = 0;
1194 SkTDArray<GrGpuResource*> resourcesToUnref;
1195
1196 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1197 // unpurgeable resources.
1198 for (int j = 0; j < kCount; ++j) {
1199 GrUniqueKey key;
1200 make_unique_key<0>(&key, j);
1201
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001202 TestResource* r = new TestResource(gpu);
bsalomonddf30e62015-02-19 11:38:44 -08001203 r->resourcePriv().setUniqueKey(key);
1204 if (random.nextU() % kLockedFreq) {
1205 // Make this is purgeable.
1206 r->unref();
1207 ++purgeableCnt;
1208 if (purgeableCnt <= kNumToPurge) {
1209 *shouldPurgeIdxs.append() = j;
1210 }
1211 } else {
1212 *resourcesToUnref.append() = r;
1213 }
1214 }
1215
1216 // Verify that the correct resources were purged.
1217 int currShouldPurgeIdx = 0;
1218 for (int j = 0; j < kCount; ++j) {
1219 GrUniqueKey key;
1220 make_unique_key<0>(&key, j);
1221 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1222 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1223 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1224 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001225 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001226 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001227 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001228 }
1229 SkSafeUnref(res);
1230 }
1231
1232 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1233 resourcesToUnref[j]->unref();
1234 }
1235 }
1236}
1237
bsalomon3f324322015-04-08 11:01:54 -07001238static void test_flush(skiatest::Reporter* reporter) {
1239 Mock mock(1000000, 1000000);
1240 GrContext* context = mock.context();
1241 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001242 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon3f324322015-04-08 11:01:54 -07001243
1244 // The current cache impl will round the max flush count to the next power of 2. So we choose a
1245 // power of two here to keep things simpler.
1246 static const int kFlushCount = 16;
1247 cache->setLimits(1000000, 1000000, kFlushCount);
1248
1249 {
1250 // Insert a resource and send a flush notification kFlushCount times.
1251 for (int i = 0; i < kFlushCount; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001252 TestResource* r = new TestResource(gpu);
bsalomon3f324322015-04-08 11:01:54 -07001253 GrUniqueKey k;
1254 make_unique_key<1>(&k, i);
1255 r->resourcePriv().setUniqueKey(k);
1256 r->unref();
bsalomonb77a9072016-09-07 10:02:04 -07001257 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001258 }
1259
1260 // Send flush notifications to the cache. Each flush should purge the oldest resource.
bsalomone2e87f32016-09-22 12:42:11 -07001261 for (int i = 0; i < kFlushCount; ++i) {
1262 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001263 REPORTER_ASSERT(reporter, kFlushCount - i - 1 == cache->getResourceCount());
1264 for (int j = 0; j < i; ++j) {
1265 GrUniqueKey k;
1266 make_unique_key<1>(&k, j);
1267 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1268 REPORTER_ASSERT(reporter, !SkToBool(r));
1269 SkSafeUnref(r);
1270 }
bsalomon3f324322015-04-08 11:01:54 -07001271 }
1272
1273 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1274 cache->purgeAllUnlocked();
1275 }
1276
1277 // Do a similar test but where we leave refs on some resources to prevent them from being
1278 // purged.
1279 {
1280 GrGpuResource* refedResources[kFlushCount >> 1];
1281 for (int i = 0; i < kFlushCount; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001282 TestResource* r = new TestResource(gpu);
bsalomon3f324322015-04-08 11:01:54 -07001283 GrUniqueKey k;
1284 make_unique_key<1>(&k, i);
1285 r->resourcePriv().setUniqueKey(k);
1286 // Leave a ref on every other resource, beginning with the first.
1287 if (SkToBool(i & 0x1)) {
1288 refedResources[i/2] = r;
1289 } else {
1290 r->unref();
1291 }
bsalomonb77a9072016-09-07 10:02:04 -07001292 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001293 }
1294
1295 for (int i = 0; i < kFlushCount; ++i) {
1296 // Should get a resource purged every other flush.
bsalomonb77a9072016-09-07 10:02:04 -07001297 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomone2e87f32016-09-22 12:42:11 -07001298 REPORTER_ASSERT(reporter, kFlushCount - i/2 - 1 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001299 }
1300
1301 // Unref all the resources that we kept refs on in the first loop.
1302 for (int i = 0; i < kFlushCount >> 1; ++i) {
1303 refedResources[i]->unref();
1304 }
1305
bsalomone2e87f32016-09-22 12:42:11 -07001306 // After kFlushCount + 1 flushes they all will have sat in the purgeable queue for
1307 // kFlushCount full flushes.
1308 for (int i = 0; i < kFlushCount + 1; ++i) {
bsalomon3f324322015-04-08 11:01:54 -07001309 REPORTER_ASSERT(reporter, kFlushCount >> 1 == cache->getResourceCount());
bsalomonb77a9072016-09-07 10:02:04 -07001310 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001311 }
1312 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1313
1314 cache->purgeAllUnlocked();
1315 }
1316
1317 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomondc438982016-08-31 11:53:49 -07001318
1319 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1320 // eviction.
1321 context->flush();
1322 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001323 TestResource* r = new TestResource(gpu);
bsalomondc438982016-08-31 11:53:49 -07001324 GrUniqueKey k;
1325 make_unique_key<1>(&k, i);
1326 r->resourcePriv().setUniqueKey(k);
1327 r->unref();
1328 }
1329 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1330 for (int i = 0; i < 10 * kFlushCount; ++i) {
1331 context->flush();
1332 }
1333 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001334}
1335
Brian Salomon5e150852017-03-22 14:53:13 -04001336static void test_time_purge(skiatest::Reporter* reporter) {
1337 Mock mock(1000000, 1000000);
1338 GrContext* context = mock.context();
1339 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001340 GrGpu* gpu = context->contextPriv().getGpu();
Brian Salomon5e150852017-03-22 14:53:13 -04001341
1342 static constexpr int kCnts[] = {1, 10, 1024};
1343 auto nowish = []() {
1344 // We sleep so that we ensure we get a value that is greater than the last call to
1345 // GrStdSteadyClock::now().
1346 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1347 auto result = GrStdSteadyClock::now();
1348 // Also sleep afterwards so we don't get this value again.
1349 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1350 return result;
1351 };
1352
1353 for (int cnt : kCnts) {
1354 std::unique_ptr<GrStdSteadyClock::time_point[]> timeStamps(
1355 new GrStdSteadyClock::time_point[cnt]);
1356 {
1357 // Insert resources and get time points between each addition.
1358 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001359 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001360 GrUniqueKey k;
1361 make_unique_key<1>(&k, i);
1362 r->resourcePriv().setUniqueKey(k);
1363 r->unref();
1364 timeStamps.get()[i] = nowish();
1365 }
1366
1367 // Purge based on the time points between resource additions. Each purge should remove
1368 // the oldest resource.
1369 for (int i = 0; i < cnt; ++i) {
1370 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1371 REPORTER_ASSERT(reporter, cnt - i - 1 == cache->getResourceCount());
1372 for (int j = 0; j < i; ++j) {
1373 GrUniqueKey k;
1374 make_unique_key<1>(&k, j);
1375 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1376 REPORTER_ASSERT(reporter, !SkToBool(r));
1377 SkSafeUnref(r);
1378 }
1379 }
1380
1381 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1382 cache->purgeAllUnlocked();
1383 }
1384
1385 // Do a similar test but where we leave refs on some resources to prevent them from being
1386 // purged.
1387 {
1388 std::unique_ptr<GrGpuResource* []> refedResources(new GrGpuResource*[cnt / 2]);
1389 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001390 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001391 GrUniqueKey k;
1392 make_unique_key<1>(&k, i);
1393 r->resourcePriv().setUniqueKey(k);
1394 // Leave a ref on every other resource, beginning with the first.
1395 if (SkToBool(i & 0x1)) {
1396 refedResources.get()[i / 2] = r;
1397 } else {
1398 r->unref();
1399 }
1400 timeStamps.get()[i] = nowish();
1401 }
1402
1403 for (int i = 0; i < cnt; ++i) {
1404 // Should get a resource purged every other frame.
1405 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1406 REPORTER_ASSERT(reporter, cnt - i / 2 - 1 == cache->getResourceCount());
1407 }
1408
1409 // Unref all the resources that we kept refs on in the first loop.
1410 for (int i = 0; i < (cnt / 2); ++i) {
1411 refedResources.get()[i]->unref();
1412 cache->purgeResourcesNotUsedSince(nowish());
1413 REPORTER_ASSERT(reporter, cnt / 2 - i - 1 == cache->getResourceCount());
1414 }
1415
1416 cache->purgeAllUnlocked();
1417 }
1418
1419 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1420
1421 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1422 // eviction
1423 context->flush();
1424 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001425 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001426 GrUniqueKey k;
1427 make_unique_key<1>(&k, i);
1428 r->resourcePriv().setUniqueKey(k);
1429 r->unref();
1430 }
1431 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1432 context->flush();
1433 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1434 cache->purgeResourcesNotUsedSince(nowish());
1435 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1436 }
1437}
1438
Derek Sollenberger5480a182017-05-25 16:43:59 -04001439static void test_partial_purge(skiatest::Reporter* reporter) {
1440 Mock mock(6, 100);
1441 GrContext* context = mock.context();
1442 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001443 GrGpu* gpu = context->contextPriv().getGpu();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001444
1445 enum TestsCase {
1446 kOnlyScratch_TestCase = 0,
1447 kPartialScratch_TestCase = 1,
1448 kAllScratch_TestCase = 2,
1449 kPartial_TestCase = 3,
1450 kAll_TestCase = 4,
1451 kNone_TestCase = 5,
1452 kEndTests_TestCase = kNone_TestCase + 1
1453 };
1454
1455 for (int testCase = 0; testCase < kEndTests_TestCase; testCase++) {
1456
1457 GrUniqueKey key1, key2, key3;
1458 make_unique_key<0>(&key1, 1);
1459 make_unique_key<0>(&key2, 2);
1460 make_unique_key<0>(&key3, 3);
1461
1462 // Add three unique resources to the cache.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001463 TestResource *unique1 = new TestResource(gpu);
1464 TestResource *unique2 = new TestResource(gpu);
1465 TestResource *unique3 = new TestResource(gpu);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001466
1467 unique1->resourcePriv().setUniqueKey(key1);
1468 unique2->resourcePriv().setUniqueKey(key2);
1469 unique3->resourcePriv().setUniqueKey(key3);
1470
1471 unique1->setSize(10);
1472 unique2->setSize(11);
1473 unique3->setSize(12);
1474
1475 // Add two scratch resources to the cache.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001476 TestResource *scratch1 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Derek Sollenberger5480a182017-05-25 16:43:59 -04001477 TestResource::kA_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001478 TestResource *scratch2 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Derek Sollenberger5480a182017-05-25 16:43:59 -04001479 TestResource::kB_SimulatedProperty);
1480 scratch1->setSize(13);
1481 scratch2->setSize(14);
1482
1483
1484 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1485 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1486 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1487
1488 // Add resources to the purgeable queue
1489 unique1->unref();
1490 scratch1->unref();
1491 unique2->unref();
1492 scratch2->unref();
1493 unique3->unref();
1494
1495 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1496 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1497 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1498
1499 switch(testCase) {
1500 case kOnlyScratch_TestCase: {
1501 context->purgeUnlockedResources(14, true);
1502 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1503 REPORTER_ASSERT(reporter, 33 == cache->getBudgetedResourceBytes());
1504 break;
1505 }
1506 case kPartialScratch_TestCase: {
1507 context->purgeUnlockedResources(3, true);
1508 REPORTER_ASSERT(reporter, 4 == cache->getBudgetedResourceCount());
1509 REPORTER_ASSERT(reporter, 47 == cache->getBudgetedResourceBytes());
1510 break;
1511 }
1512 case kAllScratch_TestCase: {
1513 context->purgeUnlockedResources(50, true);
1514 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1515 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1516 break;
1517 }
1518 case kPartial_TestCase: {
1519 context->purgeUnlockedResources(13, false);
1520 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1521 REPORTER_ASSERT(reporter, 37 == cache->getBudgetedResourceBytes());
1522 break;
1523 }
1524 case kAll_TestCase: {
1525 context->purgeUnlockedResources(50, false);
1526 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1527 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1528 break;
1529 }
1530 case kNone_TestCase: {
1531 context->purgeUnlockedResources(0, true);
1532 context->purgeUnlockedResources(0, false);
1533 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1534 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1535 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1536 break;
1537 }
1538 };
1539
1540 // ensure all are purged before the next
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001541 context->contextPriv().purgeAllUnlockedResources_ForTesting();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001542 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1543 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1544
1545 }
1546}
1547
bsalomon10e23ca2014-11-25 05:52:06 -08001548static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001549 // Set the cache size to double the resource count because we're going to create 2x that number
1550 // resources, using two different key domains. Add a little slop to the bytes because we resize
1551 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001552 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001553
bsalomonc2f35b72015-01-23 07:19:22 -08001554 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1555 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001556 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001557 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -08001558
1559 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001560 GrUniqueKey key1, key2;
1561 make_unique_key<1>(&key1, i);
1562 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001563
bsalomon24db3b12015-01-23 04:24:04 -08001564 TestResource* resource;
1565
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001566 resource = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001567 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001568 resource->setSize(1);
1569 resource->unref();
1570
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001571 resource = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001572 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001573 resource->setSize(1);
1574 resource->unref();
1575 }
1576
1577 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001578 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001579 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1580 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1581 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1582 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001583 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001584 GrUniqueKey key1, key2;
1585 make_unique_key<1>(&key1, i);
1586 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001587
bsalomon8718aaf2015-02-19 07:24:21 -08001588 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1589 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001590 }
1591
bsalomon0ea80f42015-02-11 10:49:59 -08001592 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001593 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001594 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001595 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1596 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1597 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1598 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001599
1600 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001601 GrUniqueKey key1, key2;
1602 make_unique_key<1>(&key1, i);
1603 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001604
bsalomon8718aaf2015-02-19 07:24:21 -08001605 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1606 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001607 }
1608}
1609
senorblanco84cd6212015-08-04 10:01:58 -07001610static void test_custom_data(skiatest::Reporter* reporter) {
1611 GrUniqueKey key1, key2;
1612 make_unique_key<0>(&key1, 1);
1613 make_unique_key<0>(&key2, 2);
1614 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -07001615 key1.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -07001616 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1617 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1618
1619 // Test that copying a key also takes a ref on its custom data.
1620 GrUniqueKey key3 = key1;
1621 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1622}
1623
bsalomonc6363ef2015-09-24 07:07:40 -07001624static void test_abandoned(skiatest::Reporter* reporter) {
1625 Mock mock(10, 300);
1626 GrContext* context = mock.context();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001627 GrGpu* gpu = context->contextPriv().getGpu();
1628
1629 sk_sp<GrGpuResource> resource(new TestResource(gpu));
bsalomonc6363ef2015-09-24 07:07:40 -07001630 context->abandonContext();
1631
1632 REPORTER_ASSERT(reporter, resource->wasDestroyed());
1633
1634 // Call all the public methods on resource in the abandoned state. They shouldn't crash.
1635
robertphillips8abb3702016-08-31 14:04:06 -07001636 resource->uniqueID();
bsalomonc6363ef2015-09-24 07:07:40 -07001637 resource->getUniqueKey();
1638 resource->wasDestroyed();
1639 resource->gpuMemorySize();
1640 resource->getContext();
1641
1642 resource->abandon();
1643 resource->resourcePriv().getScratchKey();
1644 resource->resourcePriv().isBudgeted();
1645 resource->resourcePriv().makeBudgeted();
1646 resource->resourcePriv().makeUnbudgeted();
1647 resource->resourcePriv().removeScratchKey();
1648 GrUniqueKey key;
1649 make_unique_key<0>(&key, 1);
1650 resource->resourcePriv().setUniqueKey(key);
1651 resource->resourcePriv().removeUniqueKey();
1652}
1653
Brian Salomon1090da62017-01-06 12:04:19 -05001654static void test_tags(skiatest::Reporter* reporter) {
1655#ifdef SK_DEBUG
1656 // We will insert 1 resource with tag "tag1", 2 with "tag2", and so on, up through kLastTagIdx.
1657 static constexpr int kLastTagIdx = 10;
1658 static constexpr int kNumResources = kLastTagIdx * (kLastTagIdx + 1) / 2;
1659
1660 Mock mock(kNumResources, kNumResources * TestResource::kDefaultSize);
1661 GrContext* context = mock.context();
1662 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001663 GrGpu* gpu = context->contextPriv().getGpu();
Brian Salomon1090da62017-01-06 12:04:19 -05001664
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001665 // tag strings are expected to be long lived
1666 std::vector<SkString> tagStrings;
1667
Brian Salomon1090da62017-01-06 12:04:19 -05001668 SkString tagStr;
1669 int tagIdx = 0;
1670 int currTagCnt = 0;
1671
1672 for (int i = 0; i < kNumResources; ++i, ++currTagCnt) {
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001673
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001674 sk_sp<GrGpuResource> resource(new TestResource(gpu));
Brian Salomon1090da62017-01-06 12:04:19 -05001675 GrUniqueKey key;
1676 if (currTagCnt == tagIdx) {
1677 tagIdx += 1;
1678 currTagCnt = 0;
1679 tagStr.printf("tag%d", tagIdx);
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001680 tagStrings.emplace_back(tagStr);
Brian Salomon1090da62017-01-06 12:04:19 -05001681 }
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001682 make_unique_key<1>(&key, i, tagStrings.back().c_str());
Brian Salomon1090da62017-01-06 12:04:19 -05001683 resource->resourcePriv().setUniqueKey(key);
1684 }
1685 SkASSERT(kLastTagIdx == tagIdx);
1686 SkASSERT(currTagCnt == kLastTagIdx);
1687
1688 // Test i = 0 to exercise unused tag string.
1689 for (int i = 0; i <= kLastTagIdx; ++i) {
1690 tagStr.printf("tag%d", i);
1691 REPORTER_ASSERT(reporter, cache->countUniqueKeysWithTag(tagStr.c_str()) == i);
1692 }
1693#endif
1694}
1695
Brian Salomondcfca432017-11-15 15:48:03 -05001696DEF_GPUTEST(ResourceCacheMisc, reporter, /* options */) {
bsalomon8b79d232014-11-10 10:19:06 -08001697 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001698 test_no_key(reporter);
Robert Phillips6eba0632018-03-28 12:25:42 -04001699 test_purge_unlocked(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001700 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001701 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001702 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001703 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001704 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001705 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001706 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001707 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001708 test_cache_chained_purge(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001709 test_resource_size_changed(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001710 test_timestamp_wrap(reporter);
bsalomon3f324322015-04-08 11:01:54 -07001711 test_flush(reporter);
Brian Salomon5e150852017-03-22 14:53:13 -04001712 test_time_purge(reporter);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001713 test_partial_purge(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001714 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001715 test_custom_data(reporter);
bsalomonc6363ef2015-09-24 07:07:40 -07001716 test_abandoned(reporter);
Brian Salomon1090da62017-01-06 12:04:19 -05001717 test_tags(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001718}
1719
Robert Phillipsd6214d42016-11-07 08:23:48 -05001720////////////////////////////////////////////////////////////////////////////////
Brian Osman32342f02017-03-04 08:12:46 -05001721static sk_sp<GrTexture> make_normal_texture(GrResourceProvider* provider,
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001722 GrSurfaceDescFlags descFlags,
Robert Phillipsd6214d42016-11-07 08:23:48 -05001723 int width, int height,
1724 int sampleCnt) {
1725 GrSurfaceDesc desc;
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001726 desc.fFlags = descFlags;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001727 desc.fWidth = width;
1728 desc.fHeight = height;
1729 desc.fConfig = kRGBA_8888_GrPixelConfig;
1730 desc.fSampleCnt = sampleCnt;
1731
Robert Phillipse78b7252017-04-06 07:59:41 -04001732 return provider->createTexture(desc, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001733}
1734
Robert Phillips0bd24dc2018-01-16 08:06:32 -05001735static sk_sp<GrTextureProxy> make_mipmap_proxy(GrProxyProvider* proxyProvider,
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001736 GrSurfaceDescFlags descFlags,
Robert Phillipse78b7252017-04-06 07:59:41 -04001737 int width, int height,
1738 int sampleCnt) {
Robert Phillipsd6214d42016-11-07 08:23:48 -05001739 GrSurfaceDesc desc;
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001740 desc.fFlags = descFlags;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001741 desc.fWidth = width;
1742 desc.fHeight = height;
1743 desc.fConfig = kRGBA_8888_GrPixelConfig;
1744 desc.fSampleCnt = sampleCnt;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001745
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001746 auto origin = (descFlags & kRenderTarget_GrSurfaceFlag) ? kBottomLeft_GrSurfaceOrigin
1747 : kTopLeft_GrSurfaceOrigin;
Brian Salomon2a4f9832018-03-03 22:43:43 -05001748
1749 return proxyProvider->createMipMapProxy(desc, origin, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001750}
1751
1752// Exercise GrSurface::gpuMemorySize for different combos of MSAA, RT-only,
1753// Texture-only, both-RT-and-Texture and MIPmapped
1754DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GPUMemorySize, reporter, ctxInfo) {
1755 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001756 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -05001757 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsd6214d42016-11-07 08:23:48 -05001758
Robert Phillipsd6214d42016-11-07 08:23:48 -05001759 static const int kSize = 64;
1760
Robert Phillipsd6214d42016-11-07 08:23:48 -05001761 // Normal versions
Robert Phillipse78b7252017-04-06 07:59:41 -04001762 {
1763 sk_sp<GrTexture> tex;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001764
Brian Salomonbdecacf2018-02-02 20:32:49 -05001765 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001766 size_t size = tex->gpuMemorySize();
1767 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
1768
Brian Salomonbdecacf2018-02-02 20:32:49 -05001769 size_t sampleCount =
1770 (size_t)context->caps()->getRenderTargetSampleCount(4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001771 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001772 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001773 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001774 size = tex->gpuMemorySize();
Greg Daniel81e7bf82017-07-19 14:47:42 -04001775 REPORTER_ASSERT(reporter,
1776 kSize*kSize*4 == size || // msaa4 failed
1777 kSize*kSize*4*sampleCount == size || // auto-resolving
1778 kSize*kSize*4*(sampleCount+1) == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001779 }
1780
Brian Salomonbdecacf2018-02-02 20:32:49 -05001781 tex = make_normal_texture(resourceProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001782 size = tex->gpuMemorySize();
Robert Phillipse78b7252017-04-06 07:59:41 -04001783 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001784 }
1785
Robert Phillipsd6214d42016-11-07 08:23:48 -05001786
1787 // Mipmapped versions
Brian Osman48c99192017-06-02 08:45:06 -04001788 if (context->caps()->mipMapSupport()) {
Robert Phillipse78b7252017-04-06 07:59:41 -04001789 sk_sp<GrTextureProxy> proxy;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001790
Brian Salomonbdecacf2018-02-02 20:32:49 -05001791 proxy = make_mipmap_proxy(proxyProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001792 size_t size = proxy->gpuMemorySize();
1793 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1794
Brian Salomonbdecacf2018-02-02 20:32:49 -05001795 size_t sampleCount =
1796 (size_t)context->caps()->getRenderTargetSampleCount(4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001797 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001798 proxy = make_mipmap_proxy(proxyProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001799 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001800 size = proxy->gpuMemorySize();
1801 REPORTER_ASSERT(reporter,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001802 kSize*kSize*4+(kSize*kSize*4)/3 == size || // msaa4 failed
1803 kSize*kSize*4*sampleCount+(kSize*kSize*4)/3 == size || // auto-resolving
1804 kSize*kSize*4*(sampleCount+1)+(kSize*kSize*4)/3 == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001805 }
Robert Phillips1b352562017-04-05 18:56:21 +00001806
Brian Salomonbdecacf2018-02-02 20:32:49 -05001807 proxy = make_mipmap_proxy(proxyProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001808 size = proxy->gpuMemorySize();
1809 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1810 }
Robert Phillipsd6214d42016-11-07 08:23:48 -05001811}
1812
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001813#endif