blob: 113945b4147a1091c33325b8df619096ece92754 [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 "SkTypes.h"
9
Brian Salomon5e150852017-03-22 14:53:13 -040010#include <thread>
bsalomonbcf0a522014-10-08 08:40:09 -070011#include "GrContext.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000012#include "GrContextPriv.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000013#include "GrContextFactory.h"
bsalomonbcf0a522014-10-08 08:40:09 -070014#include "GrGpu.h"
bsalomon3582d3e2015-02-13 14:20:05 -080015#include "GrGpuResourceCacheAccess.h"
16#include "GrGpuResourcePriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050017#include "GrProxyProvider.h"
Robert Phillipsc0192e32017-09-21 12:00:26 -040018#include "GrRenderTargetPriv.h"
bsalomon0ea80f42015-02-11 10:49:59 -080019#include "GrResourceCache.h"
bsalomon473addf2015-10-02 07:49:05 -070020#include "GrResourceProvider.h"
bsalomon6dc6f5f2015-06-18 09:12:16 -070021#include "GrTest.h"
Robert Phillips646e4292017-06-13 12:44:56 -040022#include "GrTexture.h"
23
bsalomonbcf0a522014-10-08 08:40:09 -070024#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080025#include "SkGr.h"
26#include "SkMessageBus.h"
Robert Phillipsd6214d42016-11-07 08:23:48 -050027#include "SkMipMap.h"
reed69f6f002014-09-18 06:09:44 -070028#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000029#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000030
31static const int gWidth = 640;
32static const int gHeight = 480;
33
34////////////////////////////////////////////////////////////////////////////////
bsalomon68d91342016-04-12 09:59:58 -070035DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070036 GrContext* context = ctxInfo.grContext();
kkinnunen15302832015-12-01 04:35:26 -080037 GrSurfaceDesc desc;
Brian Osman777b5632016-10-14 09:16:21 -040038 desc.fConfig = kRGBA_8888_GrPixelConfig;
kkinnunen15302832015-12-01 04:35:26 -080039 desc.fFlags = kRenderTarget_GrSurfaceFlag;
40 desc.fWidth = gWidth;
41 desc.fHeight = gHeight;
42 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
reede8f30622016-03-23 18:59:25 -070043 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info));
kkinnunen15302832015-12-01 04:35:26 -080044 SkCanvas* canvas = surface->getCanvas();
45
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000046 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
47
48 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000049 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000050 src.eraseColor(SK_ColorBLACK);
Mike Reedf0ffb892017-10-03 14:47:21 -040051 size_t srcSize = src.computeByteSize();
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000052
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000053 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070054 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000055
56 int oldMaxNum;
57 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000058 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000059
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000060 // Set the cache limits so we can fit 10 "src" images and the
61 // max number of textures doesn't matter
62 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000063 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000064
65 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000066 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000067
68 for (int i = 0; i < 100; ++i) {
69 canvas->drawBitmap(src, 0, 0);
Mike Reedf1942192017-07-21 14:24:29 -040070 surface->readPixels(readback, 0, 0);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000071
72 // "modify" the src texture
73 src.notifyPixelsChanged();
74
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000075 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070076 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000077
78 // we should never go over the size limit
79 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
80 }
81
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000082 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000083}
84
bsalomon11abd8d2016-10-14 08:13:48 -070085static bool is_rendering_and_not_angle_es3(sk_gpu_test::GrContextFactory::ContextType type) {
86 if (type == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES3_ContextType ||
87 type == sk_gpu_test::GrContextFactory::kANGLE_GL_ES3_ContextType) {
88 return false;
89 }
90 return sk_gpu_test::GrContextFactory::IsRenderingContext(type);
91}
92
Robert Phillipsc0192e32017-09-21 12:00:26 -040093static GrStencilAttachment* get_SB(GrRenderTarget* rt) {
94 return rt->renderTargetPriv().getStencilAttachment();
95}
96
97static sk_sp<GrRenderTarget> create_RT_with_SB(GrResourceProvider* provider,
98 int size, int sampleCount, SkBudgeted budgeted) {
99 GrSurfaceDesc desc;
100 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipsc0192e32017-09-21 12:00:26 -0400101 desc.fWidth = size;
102 desc.fHeight = size;
103 desc.fConfig = kRGBA_8888_GrPixelConfig;
104 desc.fSampleCnt = sampleCount;
105
106 sk_sp<GrTexture> tex(provider->createTexture(desc, budgeted));
107 if (!tex || !tex->asRenderTarget()) {
108 return nullptr;
109 }
110
111 if (!provider->attachStencilAttachment(tex->asRenderTarget())) {
112 return nullptr;
113 }
114 SkASSERT(get_SB(tex->asRenderTarget()));
115
116 return sk_ref_sp(tex->asRenderTarget());
117}
118
bsalomon11abd8d2016-10-14 08:13:48 -0700119// This currently fails on ES3 ANGLE contexts
120DEF_GPUTEST_FOR_CONTEXTS(ResourceCacheStencilBuffers, &is_rendering_and_not_angle_es3, reporter,
Robert Phillipsec325342017-10-30 18:02:48 +0000121 ctxInfo, nullptr) {
bsalomon8b7451a2016-05-11 06:33:06 -0700122 GrContext* context = ctxInfo.grContext();
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400123 if (context->contextPriv().caps()->avoidStencilBuffers()) {
Eric Karl5c779752017-05-08 12:02:07 -0700124 return;
125 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400126
Robert Phillips6be756b2018-01-16 15:07:54 -0500127 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsc0192e32017-09-21 12:00:26 -0400128
Brian Salomonbdecacf2018-02-02 20:32:49 -0500129 sk_sp<GrRenderTarget> smallRT0 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400130 REPORTER_ASSERT(reporter, smallRT0);
131
132 {
133 // Two budgeted RTs with the same desc should share a stencil buffer.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500134 sk_sp<GrRenderTarget> smallRT1 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
135 REPORTER_ASSERT(reporter, smallRT1);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400136
Brian Salomonbdecacf2018-02-02 20:32:49 -0500137 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800138 }
139
Robert Phillipsc0192e32017-09-21 12:00:26 -0400140 {
141 // An unbudgeted RT with the same desc should also share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500142 sk_sp<GrRenderTarget> smallRT2 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400143 REPORTER_ASSERT(reporter, smallRT2);
144
145 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT2.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800146 }
147
Robert Phillipsc0192e32017-09-21 12:00:26 -0400148 {
149 // An RT with a much larger size should not share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500150 sk_sp<GrRenderTarget> bigRT = create_RT_with_SB(resourceProvider, 400, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400151 REPORTER_ASSERT(reporter, bigRT);
bsalomon02a44a42015-02-19 09:09:00 -0800152
Robert Phillipsc0192e32017-09-21 12:00:26 -0400153 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(bigRT.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800154 }
bsalomon02a44a42015-02-19 09:09:00 -0800155
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400156 int smallSampleCount =
157 context->contextPriv().caps()->getRenderTargetSampleCount(2, kRGBA_8888_GrPixelConfig);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500158 if (smallSampleCount > 1) {
mtklein5f939ab2016-03-16 10:28:35 -0700159 // An RT with a different sample count should not share.
Robert Phillips6be756b2018-01-16 15:07:54 -0500160 sk_sp<GrRenderTarget> smallMSAART0 = create_RT_with_SB(resourceProvider, 4,
161 smallSampleCount, SkBudgeted::kNo);
bsalomonb602d4d2015-02-19 12:05:58 -0800162#ifdef SK_BUILD_FOR_ANDROID
163 if (!smallMSAART0) {
164 // The nexus player seems to fail to create MSAA textures.
165 return;
166 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400167#else
168 REPORTER_ASSERT(reporter, smallMSAART0);
bsalomonb602d4d2015-02-19 12:05:58 -0800169#endif
Robert Phillipsc0192e32017-09-21 12:00:26 -0400170
171 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(smallMSAART0.get()));
172
173 {
174 // A second MSAA RT should share with the first MSAA RT.
Robert Phillips6be756b2018-01-16 15:07:54 -0500175 sk_sp<GrRenderTarget> smallMSAART1 = create_RT_with_SB(resourceProvider, 4,
176 smallSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400177 SkBudgeted::kNo);
178 REPORTER_ASSERT(reporter, smallMSAART1);
179
180 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) == get_SB(smallMSAART1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800181 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400182
Brian Salomonbdecacf2018-02-02 20:32:49 -0500183 // But one with a larger sample count should not. (Also check that the two requests didn't
184 // rounded up to the same actual sample count or else they could share.).
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400185 int bigSampleCount = context->contextPriv().caps()->getRenderTargetSampleCount(
186 5, kRGBA_8888_GrPixelConfig);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500187 if (bigSampleCount > 0 && bigSampleCount != smallSampleCount) {
Robert Phillips6be756b2018-01-16 15:07:54 -0500188 sk_sp<GrRenderTarget> smallMSAART2 = create_RT_with_SB(resourceProvider, 4,
189 bigSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400190 SkBudgeted::kNo);
191 REPORTER_ASSERT(reporter, smallMSAART2);
192
193 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) != get_SB(smallMSAART2.get()));
bsalomon02a44a42015-02-19 09:09:00 -0800194 }
195 }
196}
197
bsalomon68d91342016-04-12 09:59:58 -0700198DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheWrappedResources, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700199 GrContext* context = ctxInfo.grContext();
Robert Phillips6be756b2018-01-16 15:07:54 -0500200 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500201 GrGpu* gpu = context->contextPriv().getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700202 // this test is only valid for GL
203 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700204 return;
205 }
206
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500207 GrBackendTexture backendTextures[2];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700208 static const int kW = 100;
209 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700210
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500211 backendTextures[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
212 kRGBA_8888_GrPixelConfig,
213 false, GrMipMapped::kNo);
214 backendTextures[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
215 kRGBA_8888_GrPixelConfig,
216 false, GrMipMapped::kNo);
Greg Daniel5366e592018-01-10 09:57:53 -0500217 REPORTER_ASSERT(reporter, backendTextures[0].isValid());
218 REPORTER_ASSERT(reporter, backendTextures[1].isValid());
219 if (!backendTextures[0].isValid() || !backendTextures[1].isValid()) {
220 return;
221 }
jvanverth672bb7f2015-07-13 07:19:57 -0700222
bsalomon6dc6f5f2015-06-18 09:12:16 -0700223 context->resetContext();
224
Robert Phillips6be756b2018-01-16 15:07:54 -0500225 sk_sp<GrTexture> borrowed(resourceProvider->wrapBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500226 backendTextures[0], kBorrow_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700227
Robert Phillips6be756b2018-01-16 15:07:54 -0500228 sk_sp<GrTexture> adopted(resourceProvider->wrapBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500229 backendTextures[1], kAdopt_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700230
Brian Osman85d34b22017-05-10 12:06:26 -0400231 REPORTER_ASSERT(reporter, borrowed != nullptr && adopted != nullptr);
232 if (!borrowed || !adopted) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700233 return;
234 }
235
halcanary96fcdcc2015-08-27 07:41:13 -0700236 borrowed.reset(nullptr);
237 adopted.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700238
239 context->flush();
240
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500241 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[0]);
242 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[1]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700243
244 REPORTER_ASSERT(reporter, borrowedIsAlive);
245 REPORTER_ASSERT(reporter, !adoptedIsAlive);
246
Brian Salomone64b0642018-03-07 11:47:54 -0500247 if (borrowedIsAlive) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500248 gpu->deleteTestingOnlyBackendTexture(backendTextures[0]);
Brian Salomone64b0642018-03-07 11:47:54 -0500249 }
250 if (adoptedIsAlive) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500251 gpu->deleteTestingOnlyBackendTexture(backendTextures[1]);
Brian Salomone64b0642018-03-07 11:47:54 -0500252 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700253
254 context->resetContext();
255}
256
bsalomon6d3fe022014-07-25 08:35:45 -0700257class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800258 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000259public:
robertphillips6e83ac72015-08-13 05:19:14 -0700260 static const size_t kDefaultSize = 100;
mtklein5f939ab2016-03-16 10:28:35 -0700261
bsalomon1c60dfe2015-01-21 09:32:40 -0800262 /** Property that distinctly categorizes the resource.
263 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800264 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800265
kkinnunen2e6055b2016-04-22 01:48:29 -0700266 TestResource(GrGpu* gpu, SkBudgeted budgeted = SkBudgeted::kYes, size_t size = kDefaultSize)
267 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700268 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800269 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700270 , fProperty(kA_SimulatedProperty)
271 , fIsScratch(false) {
bsalomon5236cf42015-01-14 10:42:08 -0800272 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700273 this->registerWithCache(budgeted);
bsalomon5236cf42015-01-14 10:42:08 -0800274 }
275
kkinnunen2e6055b2016-04-22 01:48:29 -0700276 static TestResource* CreateScratch(GrGpu* gpu, SkBudgeted budgeted,
Greg Danielda86e282018-06-13 09:41:19 -0400277 SimulatedProperty property, size_t size = kDefaultSize) {
278 return new TestResource(gpu, budgeted, property, kScratchConstructor, size);
bsalomondace19e2014-11-17 07:34:06 -0800279 }
kkinnunen2e6055b2016-04-22 01:48:29 -0700280 static TestResource* CreateWrapped(GrGpu* gpu, size_t size = kDefaultSize) {
281 return new TestResource(gpu, size);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000282 }
283
Brian Salomond3b65972017-03-22 12:05:03 -0400284 ~TestResource() override {
bsalomon33435572014-11-05 14:47:41 -0800285 --fNumAlive;
bsalomon71cb0c22014-11-14 12:10:14 -0800286 SkSafeUnref(fToDelete);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000287 }
288
bsalomon33435572014-11-05 14:47:41 -0800289 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000290
bsalomon71cb0c22014-11-14 12:10:14 -0800291 void setUnrefWhenDestroyed(TestResource* resource) {
292 SkRefCnt_SafeAssign(fToDelete, resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000293 }
294
bsalomon1c60dfe2015-01-21 09:32:40 -0800295 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
296 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
297 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800298 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
299 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800300 }
301 }
302
303 static size_t ExpectedScratchKeySize() {
304 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
305 }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000306private:
bsalomon24db3b12015-01-23 04:24:04 -0800307 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800308
Greg Danielda86e282018-06-13 09:41:19 -0400309 TestResource(GrGpu* gpu, SkBudgeted budgeted, SimulatedProperty property, ScratchConstructor,
310 size_t size = kDefaultSize)
kkinnunen2e6055b2016-04-22 01:48:29 -0700311 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700312 , fToDelete(nullptr)
Greg Danielda86e282018-06-13 09:41:19 -0400313 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700314 , fProperty(property)
315 , fIsScratch(true) {
bsalomon1c60dfe2015-01-21 09:32:40 -0800316 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700317 this->registerWithCache(budgeted);
318 }
319
320 // Constructor for simulating resources that wrap backend objects.
321 TestResource(GrGpu* gpu, size_t size)
322 : INHERITED(gpu)
323 , fToDelete(nullptr)
324 , fSize(size)
325 , fProperty(kA_SimulatedProperty)
326 , fIsScratch(false) {
327 ++fNumAlive;
328 this->registerWithCacheWrapped();
329 }
330
331 void computeScratchKey(GrScratchKey* key) const override {
332 if (fIsScratch) {
333 ComputeScratchKey(fProperty, key);
334 }
bsalomon1c60dfe2015-01-21 09:32:40 -0800335 }
336
mtklein36352bf2015-03-25 18:17:31 -0700337 size_t onGpuMemorySize() const override { return fSize; }
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -0400338 const char* getResourceType() const override { return "Test"; }
bsalomon69ed47f2014-11-12 11:13:39 -0800339
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000340 TestResource* fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000341 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800342 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800343 SimulatedProperty fProperty;
kkinnunen2e6055b2016-04-22 01:48:29 -0700344 bool fIsScratch;
bsalomon6d3fe022014-07-25 08:35:45 -0700345 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000346};
bsalomon33435572014-11-05 14:47:41 -0800347int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000348
bsalomonc2f35b72015-01-23 07:19:22 -0800349class Mock {
350public:
351 Mock(int maxCnt, size_t maxBytes) {
Greg Daniel02611d92017-07-25 10:05:01 -0400352 fContext = GrContext::MakeMock(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -0800353 SkASSERT(fContext);
354 fContext->setResourceCacheLimits(maxCnt, maxBytes);
Robert Phillips6be756b2018-01-16 15:07:54 -0500355 GrResourceCache* cache = fContext->contextPriv().getResourceCache();
bsalomon0ea80f42015-02-11 10:49:59 -0800356 cache->purgeAllUnlocked();
357 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800358 }
bsalomonc2f35b72015-01-23 07:19:22 -0800359
Robert Phillips6be756b2018-01-16 15:07:54 -0500360 GrResourceCache* cache() { return fContext->contextPriv().getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800361
Hal Canary342b7ac2016-11-04 11:49:42 -0400362 GrContext* context() { return fContext.get(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800363
364private:
Hal Canary342b7ac2016-11-04 11:49:42 -0400365 sk_sp<GrContext> fContext;
bsalomonc2f35b72015-01-23 07:19:22 -0800366};
367
368static void test_no_key(skiatest::Reporter* reporter) {
369 Mock mock(10, 30000);
370 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800371 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500372 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon71cb0c22014-11-14 12:10:14 -0800373
374 // Create a bunch of resources with no keys
Greg Danielda86e282018-06-13 09:41:19 -0400375 TestResource* a = new TestResource(gpu, SkBudgeted::kYes, 11);
376 TestResource* b = new TestResource(gpu, SkBudgeted::kYes, 12);
377 TestResource* c = new TestResource(gpu, SkBudgeted::kYes, 13 );
378 TestResource* d = new TestResource(gpu, SkBudgeted::kYes, 14 );
bsalomon71cb0c22014-11-14 12:10:14 -0800379
380 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800381 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800382 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800383 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800384
385 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800386 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800387 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
388
bsalomon8718aaf2015-02-19 07:24:21 -0800389 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800390
391 a->unref();
392 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800393 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800394 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800395 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800396
397 c->unref();
398 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800399 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800400 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800401 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800402
403 d->unref();
404 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800405 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
406 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800407
408 b->unref();
409 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800410 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
411 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800412}
413
bsalomon24db3b12015-01-23 04:24:04 -0800414// Each integer passed as a template param creates a new domain.
Brian Salomon1090da62017-01-06 12:04:19 -0500415template <int>
416static void make_unique_key(GrUniqueKey* key, int data, const char* tag = nullptr) {
bsalomon8718aaf2015-02-19 07:24:21 -0800417 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
Brian Salomon1090da62017-01-06 12:04:19 -0500418 GrUniqueKey::Builder builder(key, d, 1, tag);
bsalomon24db3b12015-01-23 04:24:04 -0800419 builder[0] = data;
420}
421
Robert Phillips6eba0632018-03-28 12:25:42 -0400422static void test_purge_unlocked(skiatest::Reporter* reporter) {
423 Mock mock(10, 30000);
424 GrContext* context = mock.context();
425 GrResourceCache* cache = mock.cache();
426 GrGpu* gpu = context->contextPriv().getGpu();
427
428 // Create two resource w/ a unique key and two w/o but all of which have scratch keys.
429 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400430 TestResource::kA_SimulatedProperty, 11);
Robert Phillips6eba0632018-03-28 12:25:42 -0400431
432 GrUniqueKey uniqueKey;
433 make_unique_key<0>(&uniqueKey, 0);
434
435 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400436 TestResource::kA_SimulatedProperty, 12);
Robert Phillips6eba0632018-03-28 12:25:42 -0400437 b->resourcePriv().setUniqueKey(uniqueKey);
438
439 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400440 TestResource::kA_SimulatedProperty, 13);
Robert Phillips6eba0632018-03-28 12:25:42 -0400441
442 GrUniqueKey uniqueKey2;
443 make_unique_key<0>(&uniqueKey2, 1);
444
445 TestResource* d = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400446 TestResource::kA_SimulatedProperty, 14);
Robert Phillips6eba0632018-03-28 12:25:42 -0400447 d->resourcePriv().setUniqueKey(uniqueKey2);
448
449
450 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
451 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
452 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
453 d->gpuMemorySize() == cache->getResourceBytes());
454
455 // Should be safe to purge without deleting the resources since we still have refs.
456 cache->purgeUnlockedResources(false);
457 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
458
459 // Unref them all. Since they all have keys they should remain in the cache.
460
461 a->unref();
462 b->unref();
463 c->unref();
464 d->unref();
465 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
466 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
467 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
468 d->gpuMemorySize() == cache->getResourceBytes());
469
470 // Purge only the two scratch resources
471 cache->purgeUnlockedResources(true);
472
473 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
474 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
475 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
476 cache->getResourceBytes());
477
478 // Purge the uniquely keyed resources
479 cache->purgeUnlockedResources(false);
480
481 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
482 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
483 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
484}
485
bsalomon84c8e622014-11-17 09:33:27 -0800486static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800487 Mock mock(10, 300);
488 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800489 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500490 GrGpu* gpu = context->contextPriv().getGpu();
bsalomondace19e2014-11-17 07:34:06 -0800491
bsalomon8718aaf2015-02-19 07:24:21 -0800492 GrUniqueKey uniqueKey;
493 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800494
bsalomon8718aaf2015-02-19 07:24:21 -0800495 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800496 TestResource* scratch =
Greg Danielda86e282018-06-13 09:41:19 -0400497 TestResource::CreateScratch(gpu, SkBudgeted::kYes, TestResource::kB_SimulatedProperty,
498 10);
499 TestResource* unique = new TestResource(gpu, SkBudgeted::kYes, 11);
bsalomonf99e9612015-02-19 08:24:16 -0800500 unique->resourcePriv().setUniqueKey(uniqueKey);
Greg Danielda86e282018-06-13 09:41:19 -0400501 TestResource* wrapped = TestResource::CreateWrapped(gpu, 12);
502 TestResource* unbudgeted = new TestResource(gpu, SkBudgeted::kNo, 13);
bsalomondace19e2014-11-17 07:34:06 -0800503
Brian Osman0562eb92017-05-08 11:16:39 -0400504 // Make sure we can add a unique key to the wrapped resource
bsalomon8718aaf2015-02-19 07:24:21 -0800505 GrUniqueKey uniqueKey2;
506 make_unique_key<0>(&uniqueKey2, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800507 wrapped->resourcePriv().setUniqueKey(uniqueKey2);
Brian Osman0562eb92017-05-08 11:16:39 -0400508 GrGpuResource* wrappedViaKey = cache->findAndRefUniqueResource(uniqueKey2);
509 REPORTER_ASSERT(reporter, wrappedViaKey != nullptr);
510
511 // Remove the extra ref we just added.
512 wrappedViaKey->unref();
bsalomondace19e2014-11-17 07:34:06 -0800513
514 // Make sure sizes are as we expect
bsalomon0ea80f42015-02-11 10:49:59 -0800515 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800516 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800517 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800518 cache->getResourceBytes());
519 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800520 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800521 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400522 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800523
bsalomon63c992f2015-01-23 12:47:59 -0800524 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800525 cache->purgeAllUnlocked();
526 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800527 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800528 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800529 cache->getResourceBytes());
530 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800531 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800532 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400533 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800534
535 // Unreffing the wrapped resource should free it right away.
536 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800537 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800538 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800539 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400540 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800541
bsalomon84c8e622014-11-17 09:33:27 -0800542 // Now try freeing the budgeted resources first
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500543 wrapped = TestResource::CreateWrapped(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -0800544 unique->unref();
Derek Sollenbergeree479142017-05-24 11:41:33 -0400545 REPORTER_ASSERT(reporter, 11 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800546 cache->purgeAllUnlocked();
547 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800548 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrapped->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800549 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
550 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
551 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400552 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800553
554 scratch->unref();
Greg Danielda86e282018-06-13 09:41:19 -0400555 REPORTER_ASSERT(reporter, 10 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800556 cache->purgeAllUnlocked();
557 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800558 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrapped->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800559 cache->getResourceBytes());
560 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
561 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400562 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800563
564 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800565 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
566 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
567 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
568 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400569 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800570
571 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800572 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
573 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
574 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
575 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400576 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800577}
578
bsalomon5236cf42015-01-14 10:42:08 -0800579static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800580 Mock mock(10, 30000);
581 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800582 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500583 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon5236cf42015-01-14 10:42:08 -0800584
bsalomon8718aaf2015-02-19 07:24:21 -0800585 GrUniqueKey uniqueKey;
586 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800587
588 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800589 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800590 TestResource* wrapped;
591 TestResource* unbudgeted;
592
593 // A large uncached or wrapped resource shouldn't evict anything.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500594 scratch = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400595 TestResource::kB_SimulatedProperty, 10);
kkinnunen2e6055b2016-04-22 01:48:29 -0700596
bsalomon5236cf42015-01-14 10:42:08 -0800597 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800598 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
599 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
600 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
601 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400602 REPORTER_ASSERT(reporter, 10 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800603
Greg Danielda86e282018-06-13 09:41:19 -0400604 unique = new TestResource(gpu, SkBudgeted::kYes, 11);
bsalomonf99e9612015-02-19 08:24:16 -0800605 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800606 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800607 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
608 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
609 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
610 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400611 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800612
bsalomon0ea80f42015-02-11 10:49:59 -0800613 size_t large = 2 * cache->getResourceBytes();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500614 unbudgeted = new TestResource(gpu, SkBudgeted::kNo, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800615 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
616 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
617 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
618 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400619 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800620
621 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800622 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
623 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
624 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
625 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400626 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800627
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500628 wrapped = TestResource::CreateWrapped(gpu, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800629 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
630 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
631 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
632 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400633 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800634
635 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800636 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
637 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
638 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
639 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400640 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800641
bsalomon0ea80f42015-02-11 10:49:59 -0800642 cache->purgeAllUnlocked();
643 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
644 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
645 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
646 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400647 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800648}
649
bsalomon3582d3e2015-02-13 14:20:05 -0800650// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
651void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
652/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800653 Mock mock(10, 300);
654 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800655 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500656 GrGpu* gpu = context->contextPriv().getGpu();
bsalomonc2f35b72015-01-23 07:19:22 -0800657
658 TestResource* resource =
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500659 TestResource::CreateScratch(gpu, SkBudgeted::kNo, TestResource::kA_SimulatedProperty);
bsalomonc2f35b72015-01-23 07:19:22 -0800660 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800661 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800662
663 size_t size = resource->gpuMemorySize();
664 for (int i = 0; i < 2; ++i) {
665 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800666 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800667 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800668 REPORTER_ASSERT(reporter, SkBudgeted::kNo == resource->resourcePriv().isBudgeted());
halcanary96fcdcc2015-08-27 07:41:13 -0700669 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomon0ea80f42015-02-11 10:49:59 -0800670 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
671 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
672 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
673 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400674 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800675
676 // Once it is unrefed, it should become available as scratch.
677 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800678 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
679 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
680 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
681 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400682 REPORTER_ASSERT(reporter, size == cache->getPurgeableBytes());
robertphillips6e83ac72015-08-13 05:19:14 -0700683 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomonc2f35b72015-01-23 07:19:22 -0800684 REPORTER_ASSERT(reporter, resource);
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::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800688
689 if (0 == i) {
mtklein5f939ab2016-03-16 10:28:35 -0700690 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
bsalomonc2f35b72015-01-23 07:19:22 -0800691 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800692 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800693 } else {
694 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800695 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800696 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
697 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
698 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
699 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400700 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800701 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800702 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800703 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800704
705 // now when it is unrefed it should die since it has no key.
706 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800707 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
708 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
709 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
710 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400711 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800712 }
bsalomon8b79d232014-11-10 10:19:06 -0800713 }
bsalomonc2f35b72015-01-23 07:19:22 -0800714}
715
716static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
717 Mock mock(5, 30000);
718 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800719 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500720 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -0800721
bsalomon8b79d232014-11-10 10:19:06 -0800722 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500723 TestResource* a = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700724 SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400725 TestResource::kB_SimulatedProperty, 11);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500726 TestResource* b = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700727 SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400728 TestResource::kB_SimulatedProperty, 12);
bsalomon1c60dfe2015-01-21 09:32:40 -0800729 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800730 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800731 // Check for negative case consistency. (leaks upon test failure.)
halcanary96fcdcc2015-08-27 07:41:13 -0700732 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(scratchKey1, TestResource::kDefaultSize, 0));
bsalomon1c60dfe2015-01-21 09:32:40 -0800733
734 GrScratchKey scratchKey;
bsalomon23e619c2015-02-06 11:54:28 -0800735 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800736
bsalomon0ea80f42015-02-11 10:49:59 -0800737 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon8b79d232014-11-10 10:19:06 -0800738 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800739 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
740 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800741 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800742 cache->getResourceBytes());
bsalomon8b79d232014-11-10 10:19:06 -0800743
bsalomon63c992f2015-01-23 12:47:59 -0800744 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800745 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800746 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800747 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800748
749 // Unref but don't purge
750 a->unref();
751 b->unref();
752 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800753 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800754
bsalomon63c992f2015-01-23 12:47:59 -0800755 // Purge again. This time resources should be purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800756 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800757 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800758 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
759 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800760}
761
bsalomon10e23ca2014-11-25 05:52:06 -0800762static void test_remove_scratch_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800763 Mock mock(5, 30000);
764 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800765 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500766 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -0800767
bsalomon10e23ca2014-11-25 05:52:06 -0800768 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500769 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800770 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500771 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800772 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800773 a->unref();
774 b->unref();
775
bsalomon1c60dfe2015-01-21 09:32:40 -0800776 GrScratchKey scratchKey;
777 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800778 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800779 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700780 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800781
bsalomon0ea80f42015-02-11 10:49:59 -0800782 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800783 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800784 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800785 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
786 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800787
788 // Find the first resource and remove its scratch key
789 GrGpuResource* find;
robertphillips6e83ac72015-08-13 05:19:14 -0700790 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800791 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800792 // It's still alive, but not cached by scratch key anymore
793 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800794 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
795 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800796
797 // The cache should immediately delete it when it's unrefed since it isn't accessible.
798 find->unref();
799 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800800 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
801 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800802
803 // Repeat for the second resource.
robertphillips6e83ac72015-08-13 05:19:14 -0700804 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800805 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800806 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800807 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
808 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800809
810 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800811 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800812 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800813 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
814 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800815
816 find->unref();
817 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800818 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
819 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800820}
821
bsalomon1c60dfe2015-01-21 09:32:40 -0800822static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800823 Mock mock(5, 30000);
824 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800825 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500826 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon1c60dfe2015-01-21 09:32:40 -0800827
828 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500829 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800830 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500831 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800832 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800833 a->unref();
834 b->unref();
835
836 GrScratchKey scratchKey;
837 // Ensure that scratch key comparison and assignment is consistent.
838 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800839 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800840 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800841 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800842 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
843 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
844 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
845 scratchKey = scratchKey1;
846 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
847 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
848 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
849 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
850 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
851 scratchKey = scratchKey2;
852 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
853 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
854 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
855 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
856 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
857
858 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800859 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800860 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700861 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800862
863 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800864 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700865 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700866 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800867 find->unref();
868
869 scratchKey2 = scratchKey;
robertphillips6e83ac72015-08-13 05:19:14 -0700870 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700871 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800872 REPORTER_ASSERT(reporter, find == a || find == b);
873
robertphillips6e83ac72015-08-13 05:19:14 -0700874 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700875 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800876 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
877 REPORTER_ASSERT(reporter, find2 != find);
878 find2->unref();
879 find->unref();
880}
881
bsalomon8718aaf2015-02-19 07:24:21 -0800882static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800883 Mock mock(5, 30000);
884 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800885 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500886 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000887
bsalomon8718aaf2015-02-19 07:24:21 -0800888 GrUniqueKey key;
889 make_unique_key<0>(&key, 0);
mtklein5f939ab2016-03-16 10:28:35 -0700890
bsalomon8718aaf2015-02-19 07:24:21 -0800891 // Create two resources that we will attempt to register with the same unique key.
Greg Danielda86e282018-06-13 09:41:19 -0400892 TestResource* a = new TestResource(gpu, SkBudgeted::kYes, 11);
mtklein5f939ab2016-03-16 10:28:35 -0700893
bsalomonf99e9612015-02-19 08:24:16 -0800894 // Set key on resource a.
895 a->resourcePriv().setUniqueKey(key);
896 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
897 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800898
bsalomonf99e9612015-02-19 08:24:16 -0800899 // Make sure that redundantly setting a's key works.
900 a->resourcePriv().setUniqueKey(key);
901 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800902 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800903 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
904 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800905 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
906
bsalomonf99e9612015-02-19 08:24:16 -0800907 // Create resource b and set the same key. It should replace a's unique key cache entry.
Greg Danielda86e282018-06-13 09:41:19 -0400908 TestResource* b = new TestResource(gpu, SkBudgeted::kYes, 12);
bsalomonf99e9612015-02-19 08:24:16 -0800909 b->resourcePriv().setUniqueKey(key);
910 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
911 b->unref();
912
913 // Still have two resources because a is still reffed.
914 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
915 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
916 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
917
918 a->unref();
919 // Now a should be gone.
920 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
921 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
922 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
923
924 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
925 // Also make b be unreffed when replacement occurs.
926 b->unref();
Greg Danielda86e282018-06-13 09:41:19 -0400927 TestResource* c = new TestResource(gpu, SkBudgeted::kYes, 13);
bsalomonf99e9612015-02-19 08:24:16 -0800928 GrUniqueKey differentKey;
929 make_unique_key<0>(&differentKey, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800930 c->resourcePriv().setUniqueKey(differentKey);
931 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
932 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
933 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
934 // c replaces b and b should be immediately purged.
935 c->resourcePriv().setUniqueKey(key);
936 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
937 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
938 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
939
940 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800941 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800942 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
943 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
944 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
945
946 // Drop the ref on c, it should be kept alive because it has a unique key.
947 c->unref();
948 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
949 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
950 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
951
952 // Verify that we can find c, then remove its unique key. It should get purged immediately.
953 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
954 c->resourcePriv().removeUniqueKey();
955 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800956 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
957 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -0800958 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -0700959
960 {
961 GrUniqueKey key2;
962 make_unique_key<0>(&key2, 0);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500963 sk_sp<TestResource> d(new TestResource(gpu));
senorblanco84cd6212015-08-04 10:01:58 -0700964 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -0700965 key2.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -0700966 d->resourcePriv().setUniqueKey(key2);
967 }
968
969 GrUniqueKey key3;
970 make_unique_key<0>(&key3, 0);
Hal Canary342b7ac2016-11-04 11:49:42 -0400971 sk_sp<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
senorblanco84cd6212015-08-04 10:01:58 -0700972 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000973}
974
bsalomon8b79d232014-11-10 10:19:06 -0800975static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800976 Mock mock(5, 30000);
977 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800978 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500979 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -0800980
bsalomon8718aaf2015-02-19 07:24:21 -0800981 GrUniqueKey key1, key2, key3;
982 make_unique_key<0>(&key1, 1);
983 make_unique_key<0>(&key2, 2);
984 make_unique_key<0>(&key3, 3);
mtklein5f939ab2016-03-16 10:28:35 -0700985
bsalomon23e619c2015-02-06 11:54:28 -0800986 // Add three resources to the cache. Only c is usable as scratch.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500987 TestResource* a = new TestResource(gpu);
988 TestResource* b = new TestResource(gpu);
989 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800990 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -0800991 a->resourcePriv().setUniqueKey(key1);
992 b->resourcePriv().setUniqueKey(key2);
993 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -0800994 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -0800995 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -0800996 c->unref();
997
bsalomon8718aaf2015-02-19 07:24:21 -0800998 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
999 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
1000 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -08001001 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -08001002
bsalomon8718aaf2015-02-19 07:24:21 -08001003 typedef GrUniqueKeyInvalidatedMessage Msg;
1004 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -08001005
1006 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
1007 Bus::Post(Msg(key1));
1008 Bus::Post(Msg(key2));
bsalomon0ea80f42015-02-11 10:49:59 -08001009 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -08001010 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -08001011 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1012 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -08001013 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -08001014 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -08001015
1016 // Invalidate the third.
bsalomon23e619c2015-02-06 11:54:28 -08001017 Bus::Post(Msg(key3));
bsalomon0ea80f42015-02-11 10:49:59 -08001018 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -08001019 // we still have a ref on b, c should be recycled as scratch.
1020 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -08001021 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -08001022
bsalomon23e619c2015-02-06 11:54:28 -08001023 // make b purgeable. It should be immediately deleted since it has no key.
1024 b->unref();
1025 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
1026
1027 // Make sure we actually get to c via it's scratch key, before we say goodbye.
1028 GrScratchKey scratchKey;
1029 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -07001030 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon23e619c2015-02-06 11:54:28 -08001031 REPORTER_ASSERT(reporter, scratch == c);
1032 SkSafeUnref(scratch);
1033
1034 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -08001035 cache->purgeAllUnlocked();
robertphillips6e83ac72015-08-13 05:19:14 -07001036 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon71cb0c22014-11-14 12:10:14 -08001037 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -08001038 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1039 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -08001040 REPORTER_ASSERT(reporter, !scratch);
1041 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -08001042}
1043
bsalomon71cb0c22014-11-14 12:10:14 -08001044static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -08001045 Mock mock(3, 30000);
1046 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001047 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001048 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -08001049
bsalomon8718aaf2015-02-19 07:24:21 -08001050 GrUniqueKey key1, key2;
1051 make_unique_key<0>(&key1, 1);
1052 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001053
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001054 TestResource* a = new TestResource(gpu);
1055 TestResource* b = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001056 a->resourcePriv().setUniqueKey(key1);
1057 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -08001058
bsalomonc2f35b72015-01-23 07:19:22 -08001059 // Make a cycle
1060 a->setUnrefWhenDestroyed(b);
1061 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -08001062
bsalomonc2f35b72015-01-23 07:19:22 -08001063 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001064
bsalomonc2f35b72015-01-23 07:19:22 -08001065 a->unref();
1066 b->unref();
bsalomon8b79d232014-11-10 10:19:06 -08001067
bsalomonc2f35b72015-01-23 07:19:22 -08001068 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001069
bsalomon0ea80f42015-02-11 10:49:59 -08001070 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001071 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001072
bsalomonc2f35b72015-01-23 07:19:22 -08001073 // Break the cycle
halcanary96fcdcc2015-08-27 07:41:13 -07001074 a->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -08001075 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001076
bsalomon0ea80f42015-02-11 10:49:59 -08001077 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001078 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001079}
1080
bsalomonddf30e62015-02-19 11:38:44 -08001081static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1082 static const int kCount = 50;
1083 static const int kBudgetCnt = kCount / 2;
1084 static const int kLockedFreq = 8;
1085 static const int kBudgetSize = 0x80000000;
1086
1087 SkRandom random;
1088
1089 // Run the test 2*kCount times;
1090 for (int i = 0; i < 2 * kCount; ++i ) {
1091 Mock mock(kBudgetCnt, kBudgetSize);
1092 GrContext* context = mock.context();
1093 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001094 GrGpu* gpu = context->contextPriv().getGpu();
bsalomonddf30e62015-02-19 11:38:44 -08001095
1096 // Pick a random number of resources to add before the timestamp will wrap.
Ben Wagnerb0897652018-06-15 15:37:57 +00001097 cache->changeTimestamp(UINT32_MAX - random.nextULessThan(kCount + 1));
bsalomonddf30e62015-02-19 11:38:44 -08001098
1099 static const int kNumToPurge = kCount - kBudgetCnt;
1100
1101 SkTDArray<int> shouldPurgeIdxs;
1102 int purgeableCnt = 0;
1103 SkTDArray<GrGpuResource*> resourcesToUnref;
1104
1105 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1106 // unpurgeable resources.
1107 for (int j = 0; j < kCount; ++j) {
1108 GrUniqueKey key;
1109 make_unique_key<0>(&key, j);
1110
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001111 TestResource* r = new TestResource(gpu);
bsalomonddf30e62015-02-19 11:38:44 -08001112 r->resourcePriv().setUniqueKey(key);
1113 if (random.nextU() % kLockedFreq) {
1114 // Make this is purgeable.
1115 r->unref();
1116 ++purgeableCnt;
1117 if (purgeableCnt <= kNumToPurge) {
1118 *shouldPurgeIdxs.append() = j;
1119 }
1120 } else {
1121 *resourcesToUnref.append() = r;
1122 }
1123 }
1124
1125 // Verify that the correct resources were purged.
1126 int currShouldPurgeIdx = 0;
1127 for (int j = 0; j < kCount; ++j) {
1128 GrUniqueKey key;
1129 make_unique_key<0>(&key, j);
1130 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1131 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1132 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1133 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001134 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001135 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001136 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001137 }
1138 SkSafeUnref(res);
1139 }
1140
1141 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1142 resourcesToUnref[j]->unref();
1143 }
1144 }
1145}
1146
bsalomon3f324322015-04-08 11:01:54 -07001147static void test_flush(skiatest::Reporter* reporter) {
1148 Mock mock(1000000, 1000000);
1149 GrContext* context = mock.context();
1150 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001151 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon3f324322015-04-08 11:01:54 -07001152
1153 // The current cache impl will round the max flush count to the next power of 2. So we choose a
1154 // power of two here to keep things simpler.
1155 static const int kFlushCount = 16;
1156 cache->setLimits(1000000, 1000000, kFlushCount);
1157
1158 {
1159 // Insert a resource and send a flush notification kFlushCount times.
1160 for (int i = 0; i < kFlushCount; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001161 TestResource* r = new TestResource(gpu);
bsalomon3f324322015-04-08 11:01:54 -07001162 GrUniqueKey k;
1163 make_unique_key<1>(&k, i);
1164 r->resourcePriv().setUniqueKey(k);
1165 r->unref();
bsalomonb77a9072016-09-07 10:02:04 -07001166 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001167 }
1168
1169 // Send flush notifications to the cache. Each flush should purge the oldest resource.
bsalomone2e87f32016-09-22 12:42:11 -07001170 for (int i = 0; i < kFlushCount; ++i) {
1171 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001172 REPORTER_ASSERT(reporter, kFlushCount - i - 1 == cache->getResourceCount());
1173 for (int j = 0; j < i; ++j) {
1174 GrUniqueKey k;
1175 make_unique_key<1>(&k, j);
1176 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1177 REPORTER_ASSERT(reporter, !SkToBool(r));
1178 SkSafeUnref(r);
1179 }
bsalomon3f324322015-04-08 11:01:54 -07001180 }
1181
1182 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1183 cache->purgeAllUnlocked();
1184 }
1185
1186 // Do a similar test but where we leave refs on some resources to prevent them from being
1187 // purged.
1188 {
1189 GrGpuResource* refedResources[kFlushCount >> 1];
1190 for (int i = 0; i < kFlushCount; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001191 TestResource* r = new TestResource(gpu);
bsalomon3f324322015-04-08 11:01:54 -07001192 GrUniqueKey k;
1193 make_unique_key<1>(&k, i);
1194 r->resourcePriv().setUniqueKey(k);
1195 // Leave a ref on every other resource, beginning with the first.
1196 if (SkToBool(i & 0x1)) {
1197 refedResources[i/2] = r;
1198 } else {
1199 r->unref();
1200 }
bsalomonb77a9072016-09-07 10:02:04 -07001201 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001202 }
1203
1204 for (int i = 0; i < kFlushCount; ++i) {
1205 // Should get a resource purged every other flush.
bsalomonb77a9072016-09-07 10:02:04 -07001206 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomone2e87f32016-09-22 12:42:11 -07001207 REPORTER_ASSERT(reporter, kFlushCount - i/2 - 1 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001208 }
1209
1210 // Unref all the resources that we kept refs on in the first loop.
1211 for (int i = 0; i < kFlushCount >> 1; ++i) {
1212 refedResources[i]->unref();
1213 }
1214
bsalomone2e87f32016-09-22 12:42:11 -07001215 // After kFlushCount + 1 flushes they all will have sat in the purgeable queue for
1216 // kFlushCount full flushes.
1217 for (int i = 0; i < kFlushCount + 1; ++i) {
bsalomon3f324322015-04-08 11:01:54 -07001218 REPORTER_ASSERT(reporter, kFlushCount >> 1 == cache->getResourceCount());
bsalomonb77a9072016-09-07 10:02:04 -07001219 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001220 }
1221 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1222
1223 cache->purgeAllUnlocked();
1224 }
1225
1226 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomondc438982016-08-31 11:53:49 -07001227
1228 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1229 // eviction.
1230 context->flush();
1231 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001232 TestResource* r = new TestResource(gpu);
bsalomondc438982016-08-31 11:53:49 -07001233 GrUniqueKey k;
1234 make_unique_key<1>(&k, i);
1235 r->resourcePriv().setUniqueKey(k);
1236 r->unref();
1237 }
1238 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1239 for (int i = 0; i < 10 * kFlushCount; ++i) {
1240 context->flush();
1241 }
1242 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001243}
1244
Brian Salomon5e150852017-03-22 14:53:13 -04001245static void test_time_purge(skiatest::Reporter* reporter) {
1246 Mock mock(1000000, 1000000);
1247 GrContext* context = mock.context();
1248 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001249 GrGpu* gpu = context->contextPriv().getGpu();
Brian Salomon5e150852017-03-22 14:53:13 -04001250
1251 static constexpr int kCnts[] = {1, 10, 1024};
1252 auto nowish = []() {
1253 // We sleep so that we ensure we get a value that is greater than the last call to
1254 // GrStdSteadyClock::now().
1255 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1256 auto result = GrStdSteadyClock::now();
1257 // Also sleep afterwards so we don't get this value again.
1258 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1259 return result;
1260 };
1261
1262 for (int cnt : kCnts) {
1263 std::unique_ptr<GrStdSteadyClock::time_point[]> timeStamps(
1264 new GrStdSteadyClock::time_point[cnt]);
1265 {
1266 // Insert resources and get time points between each addition.
1267 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001268 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001269 GrUniqueKey k;
1270 make_unique_key<1>(&k, i);
1271 r->resourcePriv().setUniqueKey(k);
1272 r->unref();
1273 timeStamps.get()[i] = nowish();
1274 }
1275
1276 // Purge based on the time points between resource additions. Each purge should remove
1277 // the oldest resource.
1278 for (int i = 0; i < cnt; ++i) {
1279 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1280 REPORTER_ASSERT(reporter, cnt - i - 1 == cache->getResourceCount());
1281 for (int j = 0; j < i; ++j) {
1282 GrUniqueKey k;
1283 make_unique_key<1>(&k, j);
1284 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1285 REPORTER_ASSERT(reporter, !SkToBool(r));
1286 SkSafeUnref(r);
1287 }
1288 }
1289
1290 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1291 cache->purgeAllUnlocked();
1292 }
1293
1294 // Do a similar test but where we leave refs on some resources to prevent them from being
1295 // purged.
1296 {
1297 std::unique_ptr<GrGpuResource* []> refedResources(new GrGpuResource*[cnt / 2]);
1298 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001299 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001300 GrUniqueKey k;
1301 make_unique_key<1>(&k, i);
1302 r->resourcePriv().setUniqueKey(k);
1303 // Leave a ref on every other resource, beginning with the first.
1304 if (SkToBool(i & 0x1)) {
1305 refedResources.get()[i / 2] = r;
1306 } else {
1307 r->unref();
1308 }
1309 timeStamps.get()[i] = nowish();
1310 }
1311
1312 for (int i = 0; i < cnt; ++i) {
1313 // Should get a resource purged every other frame.
1314 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1315 REPORTER_ASSERT(reporter, cnt - i / 2 - 1 == cache->getResourceCount());
1316 }
1317
1318 // Unref all the resources that we kept refs on in the first loop.
1319 for (int i = 0; i < (cnt / 2); ++i) {
1320 refedResources.get()[i]->unref();
1321 cache->purgeResourcesNotUsedSince(nowish());
1322 REPORTER_ASSERT(reporter, cnt / 2 - i - 1 == cache->getResourceCount());
1323 }
1324
1325 cache->purgeAllUnlocked();
1326 }
1327
1328 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1329
1330 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1331 // eviction
1332 context->flush();
1333 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001334 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001335 GrUniqueKey k;
1336 make_unique_key<1>(&k, i);
1337 r->resourcePriv().setUniqueKey(k);
1338 r->unref();
1339 }
1340 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1341 context->flush();
1342 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1343 cache->purgeResourcesNotUsedSince(nowish());
1344 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1345 }
1346}
1347
Derek Sollenberger5480a182017-05-25 16:43:59 -04001348static void test_partial_purge(skiatest::Reporter* reporter) {
1349 Mock mock(6, 100);
1350 GrContext* context = mock.context();
1351 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001352 GrGpu* gpu = context->contextPriv().getGpu();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001353
1354 enum TestsCase {
1355 kOnlyScratch_TestCase = 0,
1356 kPartialScratch_TestCase = 1,
1357 kAllScratch_TestCase = 2,
1358 kPartial_TestCase = 3,
1359 kAll_TestCase = 4,
1360 kNone_TestCase = 5,
1361 kEndTests_TestCase = kNone_TestCase + 1
1362 };
1363
1364 for (int testCase = 0; testCase < kEndTests_TestCase; testCase++) {
1365
1366 GrUniqueKey key1, key2, key3;
1367 make_unique_key<0>(&key1, 1);
1368 make_unique_key<0>(&key2, 2);
1369 make_unique_key<0>(&key3, 3);
1370
1371 // Add three unique resources to the cache.
Greg Danielda86e282018-06-13 09:41:19 -04001372 TestResource *unique1 = new TestResource(gpu, SkBudgeted::kYes, 10);
1373 TestResource *unique2 = new TestResource(gpu, SkBudgeted::kYes, 11);
1374 TestResource *unique3 = new TestResource(gpu, SkBudgeted::kYes, 12);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001375
1376 unique1->resourcePriv().setUniqueKey(key1);
1377 unique2->resourcePriv().setUniqueKey(key2);
1378 unique3->resourcePriv().setUniqueKey(key3);
1379
Derek Sollenberger5480a182017-05-25 16:43:59 -04001380 // Add two scratch resources to the cache.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001381 TestResource *scratch1 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -04001382 TestResource::kA_SimulatedProperty,
1383 13);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001384 TestResource *scratch2 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -04001385 TestResource::kB_SimulatedProperty,
1386 14);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001387
1388 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1389 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1390 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1391
1392 // Add resources to the purgeable queue
1393 unique1->unref();
1394 scratch1->unref();
1395 unique2->unref();
1396 scratch2->unref();
1397 unique3->unref();
1398
1399 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1400 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1401 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1402
1403 switch(testCase) {
1404 case kOnlyScratch_TestCase: {
1405 context->purgeUnlockedResources(14, true);
1406 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1407 REPORTER_ASSERT(reporter, 33 == cache->getBudgetedResourceBytes());
1408 break;
1409 }
1410 case kPartialScratch_TestCase: {
1411 context->purgeUnlockedResources(3, true);
1412 REPORTER_ASSERT(reporter, 4 == cache->getBudgetedResourceCount());
1413 REPORTER_ASSERT(reporter, 47 == cache->getBudgetedResourceBytes());
1414 break;
1415 }
1416 case kAllScratch_TestCase: {
1417 context->purgeUnlockedResources(50, true);
1418 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1419 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1420 break;
1421 }
1422 case kPartial_TestCase: {
1423 context->purgeUnlockedResources(13, false);
1424 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1425 REPORTER_ASSERT(reporter, 37 == cache->getBudgetedResourceBytes());
1426 break;
1427 }
1428 case kAll_TestCase: {
1429 context->purgeUnlockedResources(50, false);
1430 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1431 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1432 break;
1433 }
1434 case kNone_TestCase: {
1435 context->purgeUnlockedResources(0, true);
1436 context->purgeUnlockedResources(0, false);
1437 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1438 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1439 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1440 break;
1441 }
1442 };
1443
1444 // ensure all are purged before the next
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001445 context->contextPriv().purgeAllUnlockedResources_ForTesting();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001446 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1447 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1448
1449 }
1450}
1451
bsalomon10e23ca2014-11-25 05:52:06 -08001452static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001453 // Set the cache size to double the resource count because we're going to create 2x that number
1454 // resources, using two different key domains. Add a little slop to the bytes because we resize
1455 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001456 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001457
bsalomonc2f35b72015-01-23 07:19:22 -08001458 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1459 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001460 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001461 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -08001462
1463 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001464 GrUniqueKey key1, key2;
1465 make_unique_key<1>(&key1, i);
1466 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001467
bsalomon24db3b12015-01-23 04:24:04 -08001468 TestResource* resource;
1469
Greg Danielda86e282018-06-13 09:41:19 -04001470 resource = new TestResource(gpu, SkBudgeted::kYes, 1);
bsalomon8718aaf2015-02-19 07:24:21 -08001471 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001472 resource->unref();
1473
Greg Danielda86e282018-06-13 09:41:19 -04001474 resource = new TestResource(gpu, SkBudgeted::kYes, 1);
bsalomon8718aaf2015-02-19 07:24:21 -08001475 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001476 resource->unref();
1477 }
1478
1479 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001480 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001481 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1482 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1483 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1484 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001485 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001486 GrUniqueKey key1, key2;
1487 make_unique_key<1>(&key1, i);
1488 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001489
bsalomon8718aaf2015-02-19 07:24:21 -08001490 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1491 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001492 }
1493
bsalomon0ea80f42015-02-11 10:49:59 -08001494 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001495 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001496 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001497 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1498 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1499 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1500 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001501
1502 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001503 GrUniqueKey key1, key2;
1504 make_unique_key<1>(&key1, i);
1505 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001506
bsalomon8718aaf2015-02-19 07:24:21 -08001507 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1508 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001509 }
1510}
1511
senorblanco84cd6212015-08-04 10:01:58 -07001512static void test_custom_data(skiatest::Reporter* reporter) {
1513 GrUniqueKey key1, key2;
1514 make_unique_key<0>(&key1, 1);
1515 make_unique_key<0>(&key2, 2);
1516 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -07001517 key1.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -07001518 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1519 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1520
1521 // Test that copying a key also takes a ref on its custom data.
1522 GrUniqueKey key3 = key1;
1523 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1524}
1525
bsalomonc6363ef2015-09-24 07:07:40 -07001526static void test_abandoned(skiatest::Reporter* reporter) {
1527 Mock mock(10, 300);
1528 GrContext* context = mock.context();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001529 GrGpu* gpu = context->contextPriv().getGpu();
1530
1531 sk_sp<GrGpuResource> resource(new TestResource(gpu));
bsalomonc6363ef2015-09-24 07:07:40 -07001532 context->abandonContext();
1533
1534 REPORTER_ASSERT(reporter, resource->wasDestroyed());
1535
1536 // Call all the public methods on resource in the abandoned state. They shouldn't crash.
1537
robertphillips8abb3702016-08-31 14:04:06 -07001538 resource->uniqueID();
bsalomonc6363ef2015-09-24 07:07:40 -07001539 resource->getUniqueKey();
1540 resource->wasDestroyed();
1541 resource->gpuMemorySize();
1542 resource->getContext();
1543
1544 resource->abandon();
1545 resource->resourcePriv().getScratchKey();
1546 resource->resourcePriv().isBudgeted();
1547 resource->resourcePriv().makeBudgeted();
1548 resource->resourcePriv().makeUnbudgeted();
1549 resource->resourcePriv().removeScratchKey();
1550 GrUniqueKey key;
1551 make_unique_key<0>(&key, 1);
1552 resource->resourcePriv().setUniqueKey(key);
1553 resource->resourcePriv().removeUniqueKey();
1554}
1555
Brian Salomon1090da62017-01-06 12:04:19 -05001556static void test_tags(skiatest::Reporter* reporter) {
1557#ifdef SK_DEBUG
1558 // We will insert 1 resource with tag "tag1", 2 with "tag2", and so on, up through kLastTagIdx.
1559 static constexpr int kLastTagIdx = 10;
1560 static constexpr int kNumResources = kLastTagIdx * (kLastTagIdx + 1) / 2;
1561
1562 Mock mock(kNumResources, kNumResources * TestResource::kDefaultSize);
1563 GrContext* context = mock.context();
1564 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001565 GrGpu* gpu = context->contextPriv().getGpu();
Brian Salomon1090da62017-01-06 12:04:19 -05001566
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001567 // tag strings are expected to be long lived
1568 std::vector<SkString> tagStrings;
1569
Brian Salomon1090da62017-01-06 12:04:19 -05001570 SkString tagStr;
1571 int tagIdx = 0;
1572 int currTagCnt = 0;
1573
1574 for (int i = 0; i < kNumResources; ++i, ++currTagCnt) {
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001575
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001576 sk_sp<GrGpuResource> resource(new TestResource(gpu));
Brian Salomon1090da62017-01-06 12:04:19 -05001577 GrUniqueKey key;
1578 if (currTagCnt == tagIdx) {
1579 tagIdx += 1;
1580 currTagCnt = 0;
1581 tagStr.printf("tag%d", tagIdx);
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001582 tagStrings.emplace_back(tagStr);
Brian Salomon1090da62017-01-06 12:04:19 -05001583 }
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001584 make_unique_key<1>(&key, i, tagStrings.back().c_str());
Brian Salomon1090da62017-01-06 12:04:19 -05001585 resource->resourcePriv().setUniqueKey(key);
1586 }
1587 SkASSERT(kLastTagIdx == tagIdx);
1588 SkASSERT(currTagCnt == kLastTagIdx);
1589
1590 // Test i = 0 to exercise unused tag string.
1591 for (int i = 0; i <= kLastTagIdx; ++i) {
1592 tagStr.printf("tag%d", i);
1593 REPORTER_ASSERT(reporter, cache->countUniqueKeysWithTag(tagStr.c_str()) == i);
1594 }
1595#endif
1596}
1597
Brian Salomondcfca432017-11-15 15:48:03 -05001598DEF_GPUTEST(ResourceCacheMisc, reporter, /* options */) {
bsalomon8b79d232014-11-10 10:19:06 -08001599 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001600 test_no_key(reporter);
Robert Phillips6eba0632018-03-28 12:25:42 -04001601 test_purge_unlocked(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001602 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001603 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001604 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001605 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001606 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001607 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001608 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001609 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001610 test_cache_chained_purge(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001611 test_timestamp_wrap(reporter);
bsalomon3f324322015-04-08 11:01:54 -07001612 test_flush(reporter);
Brian Salomon5e150852017-03-22 14:53:13 -04001613 test_time_purge(reporter);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001614 test_partial_purge(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001615 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001616 test_custom_data(reporter);
bsalomonc6363ef2015-09-24 07:07:40 -07001617 test_abandoned(reporter);
Brian Salomon1090da62017-01-06 12:04:19 -05001618 test_tags(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001619}
1620
Robert Phillipsd6214d42016-11-07 08:23:48 -05001621////////////////////////////////////////////////////////////////////////////////
Brian Osman32342f02017-03-04 08:12:46 -05001622static sk_sp<GrTexture> make_normal_texture(GrResourceProvider* provider,
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001623 GrSurfaceDescFlags descFlags,
Robert Phillipsd6214d42016-11-07 08:23:48 -05001624 int width, int height,
1625 int sampleCnt) {
1626 GrSurfaceDesc desc;
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001627 desc.fFlags = descFlags;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001628 desc.fWidth = width;
1629 desc.fHeight = height;
1630 desc.fConfig = kRGBA_8888_GrPixelConfig;
1631 desc.fSampleCnt = sampleCnt;
1632
Robert Phillipse78b7252017-04-06 07:59:41 -04001633 return provider->createTexture(desc, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001634}
1635
Robert Phillips0bd24dc2018-01-16 08:06:32 -05001636static sk_sp<GrTextureProxy> make_mipmap_proxy(GrProxyProvider* proxyProvider,
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001637 GrSurfaceDescFlags descFlags,
Robert Phillipse78b7252017-04-06 07:59:41 -04001638 int width, int height,
1639 int sampleCnt) {
Robert Phillipsd6214d42016-11-07 08:23:48 -05001640 GrSurfaceDesc desc;
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001641 desc.fFlags = descFlags;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001642 desc.fWidth = width;
1643 desc.fHeight = height;
1644 desc.fConfig = kRGBA_8888_GrPixelConfig;
1645 desc.fSampleCnt = sampleCnt;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001646
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001647 auto origin = (descFlags & kRenderTarget_GrSurfaceFlag) ? kBottomLeft_GrSurfaceOrigin
1648 : kTopLeft_GrSurfaceOrigin;
Brian Salomon2a4f9832018-03-03 22:43:43 -05001649
1650 return proxyProvider->createMipMapProxy(desc, origin, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001651}
1652
1653// Exercise GrSurface::gpuMemorySize for different combos of MSAA, RT-only,
1654// Texture-only, both-RT-and-Texture and MIPmapped
1655DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GPUMemorySize, reporter, ctxInfo) {
1656 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001657 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -05001658 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsd6214d42016-11-07 08:23:48 -05001659
Robert Phillipsd6214d42016-11-07 08:23:48 -05001660 static const int kSize = 64;
1661
Robert Phillipsd6214d42016-11-07 08:23:48 -05001662 // Normal versions
Robert Phillipse78b7252017-04-06 07:59:41 -04001663 {
1664 sk_sp<GrTexture> tex;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001665
Brian Salomonbdecacf2018-02-02 20:32:49 -05001666 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001667 size_t size = tex->gpuMemorySize();
1668 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
1669
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001670 size_t sampleCount = (size_t)context->contextPriv().caps()->getRenderTargetSampleCount(
1671 4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001672 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001673 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001674 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001675 size = tex->gpuMemorySize();
Greg Daniel81e7bf82017-07-19 14:47:42 -04001676 REPORTER_ASSERT(reporter,
1677 kSize*kSize*4 == size || // msaa4 failed
1678 kSize*kSize*4*sampleCount == size || // auto-resolving
1679 kSize*kSize*4*(sampleCount+1) == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001680 }
1681
Brian Salomonbdecacf2018-02-02 20:32:49 -05001682 tex = make_normal_texture(resourceProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001683 size = tex->gpuMemorySize();
Robert Phillipse78b7252017-04-06 07:59:41 -04001684 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001685 }
1686
Robert Phillipsd6214d42016-11-07 08:23:48 -05001687
1688 // Mipmapped versions
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001689 if (context->contextPriv().caps()->mipMapSupport()) {
Robert Phillipse78b7252017-04-06 07:59:41 -04001690 sk_sp<GrTextureProxy> proxy;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001691
Brian Salomonbdecacf2018-02-02 20:32:49 -05001692 proxy = make_mipmap_proxy(proxyProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001693 size_t size = proxy->gpuMemorySize();
1694 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1695
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001696 size_t sampleCount = (size_t)context->contextPriv().caps()->getRenderTargetSampleCount(
1697 4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001698 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001699 proxy = make_mipmap_proxy(proxyProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001700 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001701 size = proxy->gpuMemorySize();
1702 REPORTER_ASSERT(reporter,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001703 kSize*kSize*4+(kSize*kSize*4)/3 == size || // msaa4 failed
1704 kSize*kSize*4*sampleCount+(kSize*kSize*4)/3 == size || // auto-resolving
1705 kSize*kSize*4*(sampleCount+1)+(kSize*kSize*4)/3 == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001706 }
Robert Phillips1b352562017-04-05 18:56:21 +00001707
Brian Salomonbdecacf2018-02-02 20:32:49 -05001708 proxy = make_mipmap_proxy(proxyProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001709 size = proxy->gpuMemorySize();
1710 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1711 }
Robert Phillipsd6214d42016-11-07 08:23:48 -05001712}