blob: f6ff21853b25c1f6a97556d70769b410e2d36d2d [file] [log] [blame]
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
bsalomon3f324322015-04-08 11:01:54 -07008// Include here to ensure SK_SUPPORT_GPU is set correctly before it is examined.
9#include "SkTypes.h"
10
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000011#if SK_SUPPORT_GPU
Brian Salomon5e150852017-03-22 14:53:13 -040012#include <thread>
bsalomonbcf0a522014-10-08 08:40:09 -070013#include "GrContext.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000014#include "GrContextPriv.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000015#include "GrContextFactory.h"
bsalomonbcf0a522014-10-08 08:40:09 -070016#include "GrGpu.h"
bsalomon3582d3e2015-02-13 14:20:05 -080017#include "GrGpuResourceCacheAccess.h"
18#include "GrGpuResourcePriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050019#include "GrProxyProvider.h"
Robert Phillipsc0192e32017-09-21 12:00:26 -040020#include "GrRenderTargetPriv.h"
bsalomon0ea80f42015-02-11 10:49:59 -080021#include "GrResourceCache.h"
bsalomon473addf2015-10-02 07:49:05 -070022#include "GrResourceProvider.h"
bsalomon6dc6f5f2015-06-18 09:12:16 -070023#include "GrTest.h"
Robert Phillips646e4292017-06-13 12:44:56 -040024#include "GrTexture.h"
25
bsalomonbcf0a522014-10-08 08:40:09 -070026#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080027#include "SkGr.h"
28#include "SkMessageBus.h"
Robert Phillipsd6214d42016-11-07 08:23:48 -050029#include "SkMipMap.h"
reed69f6f002014-09-18 06:09:44 -070030#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000031#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000032
33static const int gWidth = 640;
34static const int gHeight = 480;
35
36////////////////////////////////////////////////////////////////////////////////
bsalomon68d91342016-04-12 09:59:58 -070037DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070038 GrContext* context = ctxInfo.grContext();
kkinnunen15302832015-12-01 04:35:26 -080039 GrSurfaceDesc desc;
Brian Osman777b5632016-10-14 09:16:21 -040040 desc.fConfig = kRGBA_8888_GrPixelConfig;
kkinnunen15302832015-12-01 04:35:26 -080041 desc.fFlags = kRenderTarget_GrSurfaceFlag;
42 desc.fWidth = gWidth;
43 desc.fHeight = gHeight;
44 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
reede8f30622016-03-23 18:59:25 -070045 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info));
kkinnunen15302832015-12-01 04:35:26 -080046 SkCanvas* canvas = surface->getCanvas();
47
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000048 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
49
50 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000051 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000052 src.eraseColor(SK_ColorBLACK);
Mike Reedf0ffb892017-10-03 14:47:21 -040053 size_t srcSize = src.computeByteSize();
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000054
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000055 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070056 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000057
58 int oldMaxNum;
59 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000060 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000061
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000062 // Set the cache limits so we can fit 10 "src" images and the
63 // max number of textures doesn't matter
64 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000065 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000066
67 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000068 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000069
70 for (int i = 0; i < 100; ++i) {
71 canvas->drawBitmap(src, 0, 0);
Mike Reedf1942192017-07-21 14:24:29 -040072 surface->readPixels(readback, 0, 0);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000073
74 // "modify" the src texture
75 src.notifyPixelsChanged();
76
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000077 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070078 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000079
80 // we should never go over the size limit
81 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
82 }
83
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000084 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000085}
86
bsalomon11abd8d2016-10-14 08:13:48 -070087static bool is_rendering_and_not_angle_es3(sk_gpu_test::GrContextFactory::ContextType type) {
88 if (type == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES3_ContextType ||
89 type == sk_gpu_test::GrContextFactory::kANGLE_GL_ES3_ContextType) {
90 return false;
91 }
92 return sk_gpu_test::GrContextFactory::IsRenderingContext(type);
93}
94
Robert Phillipsc0192e32017-09-21 12:00:26 -040095static GrStencilAttachment* get_SB(GrRenderTarget* rt) {
96 return rt->renderTargetPriv().getStencilAttachment();
97}
98
99static sk_sp<GrRenderTarget> create_RT_with_SB(GrResourceProvider* provider,
100 int size, int sampleCount, SkBudgeted budgeted) {
101 GrSurfaceDesc desc;
102 desc.fFlags = kRenderTarget_GrSurfaceFlag;
103 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
104 desc.fWidth = size;
105 desc.fHeight = size;
106 desc.fConfig = kRGBA_8888_GrPixelConfig;
107 desc.fSampleCnt = sampleCount;
108
109 sk_sp<GrTexture> tex(provider->createTexture(desc, budgeted));
110 if (!tex || !tex->asRenderTarget()) {
111 return nullptr;
112 }
113
114 if (!provider->attachStencilAttachment(tex->asRenderTarget())) {
115 return nullptr;
116 }
117 SkASSERT(get_SB(tex->asRenderTarget()));
118
119 return sk_ref_sp(tex->asRenderTarget());
120}
121
bsalomon11abd8d2016-10-14 08:13:48 -0700122// This currently fails on ES3 ANGLE contexts
123DEF_GPUTEST_FOR_CONTEXTS(ResourceCacheStencilBuffers, &is_rendering_and_not_angle_es3, reporter,
Robert Phillipsec325342017-10-30 18:02:48 +0000124 ctxInfo, nullptr) {
bsalomon8b7451a2016-05-11 06:33:06 -0700125 GrContext* context = ctxInfo.grContext();
Eric Karl5c779752017-05-08 12:02:07 -0700126 if (context->caps()->avoidStencilBuffers()) {
127 return;
128 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400129
Robert Phillips6be756b2018-01-16 15:07:54 -0500130 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsc0192e32017-09-21 12:00:26 -0400131
Brian Salomonbdecacf2018-02-02 20:32:49 -0500132 sk_sp<GrRenderTarget> smallRT0 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400133 REPORTER_ASSERT(reporter, smallRT0);
134
135 {
136 // Two budgeted RTs with the same desc should share a stencil buffer.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500137 sk_sp<GrRenderTarget> smallRT1 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
138 REPORTER_ASSERT(reporter, smallRT1);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400139
Brian Salomonbdecacf2018-02-02 20:32:49 -0500140 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800141 }
142
Robert Phillipsc0192e32017-09-21 12:00:26 -0400143 {
144 // An unbudgeted RT with the same desc should also share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500145 sk_sp<GrRenderTarget> smallRT2 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400146 REPORTER_ASSERT(reporter, smallRT2);
147
148 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT2.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800149 }
150
Robert Phillipsc0192e32017-09-21 12:00:26 -0400151 {
152 // An RT with a much larger size should not share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500153 sk_sp<GrRenderTarget> bigRT = create_RT_with_SB(resourceProvider, 400, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400154 REPORTER_ASSERT(reporter, bigRT);
bsalomon02a44a42015-02-19 09:09:00 -0800155
Robert Phillipsc0192e32017-09-21 12:00:26 -0400156 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(bigRT.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800157 }
bsalomon02a44a42015-02-19 09:09:00 -0800158
Brian Salomonbdecacf2018-02-02 20:32:49 -0500159 int smallSampleCount = context->caps()->getRenderTargetSampleCount(2, kRGBA_8888_GrPixelConfig);
160 if (smallSampleCount > 1) {
mtklein5f939ab2016-03-16 10:28:35 -0700161 // An RT with a different sample count should not share.
Robert Phillips6be756b2018-01-16 15:07:54 -0500162 sk_sp<GrRenderTarget> smallMSAART0 = create_RT_with_SB(resourceProvider, 4,
163 smallSampleCount, SkBudgeted::kNo);
bsalomonb602d4d2015-02-19 12:05:58 -0800164#ifdef SK_BUILD_FOR_ANDROID
165 if (!smallMSAART0) {
166 // The nexus player seems to fail to create MSAA textures.
167 return;
168 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400169#else
170 REPORTER_ASSERT(reporter, smallMSAART0);
bsalomonb602d4d2015-02-19 12:05:58 -0800171#endif
Robert Phillipsc0192e32017-09-21 12:00:26 -0400172
173 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(smallMSAART0.get()));
174
175 {
176 // A second MSAA RT should share with the first MSAA RT.
Robert Phillips6be756b2018-01-16 15:07:54 -0500177 sk_sp<GrRenderTarget> smallMSAART1 = create_RT_with_SB(resourceProvider, 4,
178 smallSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400179 SkBudgeted::kNo);
180 REPORTER_ASSERT(reporter, smallMSAART1);
181
182 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) == get_SB(smallMSAART1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800183 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400184
Brian Salomonbdecacf2018-02-02 20:32:49 -0500185 // But one with a larger sample count should not. (Also check that the two requests didn't
186 // rounded up to the same actual sample count or else they could share.).
187 int bigSampleCount =
188 context->caps()->getRenderTargetSampleCount(5, kRGBA_8888_GrPixelConfig);
189 if (bigSampleCount > 0 && bigSampleCount != smallSampleCount) {
Robert Phillips6be756b2018-01-16 15:07:54 -0500190 sk_sp<GrRenderTarget> smallMSAART2 = create_RT_with_SB(resourceProvider, 4,
191 bigSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400192 SkBudgeted::kNo);
193 REPORTER_ASSERT(reporter, smallMSAART2);
194
195 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) != get_SB(smallMSAART2.get()));
bsalomon02a44a42015-02-19 09:09:00 -0800196 }
197 }
198}
199
bsalomon68d91342016-04-12 09:59:58 -0700200DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheWrappedResources, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700201 GrContext* context = ctxInfo.grContext();
Robert Phillips6be756b2018-01-16 15:07:54 -0500202 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500203 GrGpu* gpu = context->contextPriv().getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700204 // this test is only valid for GL
205 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700206 return;
207 }
208
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500209 GrBackendTexture backendTextures[2];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700210 static const int kW = 100;
211 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700212
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500213 backendTextures[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
214 kRGBA_8888_GrPixelConfig,
215 false, GrMipMapped::kNo);
216 backendTextures[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
217 kRGBA_8888_GrPixelConfig,
218 false, GrMipMapped::kNo);
Greg Daniel5366e592018-01-10 09:57:53 -0500219 REPORTER_ASSERT(reporter, backendTextures[0].isValid());
220 REPORTER_ASSERT(reporter, backendTextures[1].isValid());
221 if (!backendTextures[0].isValid() || !backendTextures[1].isValid()) {
222 return;
223 }
jvanverth672bb7f2015-07-13 07:19:57 -0700224
bsalomon6dc6f5f2015-06-18 09:12:16 -0700225 context->resetContext();
226
Robert Phillips6be756b2018-01-16 15:07:54 -0500227 sk_sp<GrTexture> borrowed(resourceProvider->wrapBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500228 backendTextures[0], kBorrow_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700229
Robert Phillips6be756b2018-01-16 15:07:54 -0500230 sk_sp<GrTexture> adopted(resourceProvider->wrapBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500231 backendTextures[1], kAdopt_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700232
Brian Osman85d34b22017-05-10 12:06:26 -0400233 REPORTER_ASSERT(reporter, borrowed != nullptr && adopted != nullptr);
234 if (!borrowed || !adopted) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700235 return;
236 }
237
halcanary96fcdcc2015-08-27 07:41:13 -0700238 borrowed.reset(nullptr);
239 adopted.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700240
241 context->flush();
242
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500243 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[0]);
244 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[1]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700245
246 REPORTER_ASSERT(reporter, borrowedIsAlive);
247 REPORTER_ASSERT(reporter, !adoptedIsAlive);
248
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500249 gpu->deleteTestingOnlyBackendTexture(&(backendTextures[0]), !borrowedIsAlive);
250 gpu->deleteTestingOnlyBackendTexture(&(backendTextures[1]), !adoptedIsAlive);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700251
252 context->resetContext();
253}
254
bsalomon6d3fe022014-07-25 08:35:45 -0700255class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800256 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000257public:
robertphillips6e83ac72015-08-13 05:19:14 -0700258 static const size_t kDefaultSize = 100;
mtklein5f939ab2016-03-16 10:28:35 -0700259
bsalomon1c60dfe2015-01-21 09:32:40 -0800260 /** Property that distinctly categorizes the resource.
261 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800262 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800263
kkinnunen2e6055b2016-04-22 01:48:29 -0700264 TestResource(GrGpu* gpu, SkBudgeted budgeted = SkBudgeted::kYes, size_t size = kDefaultSize)
265 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700266 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800267 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700268 , fProperty(kA_SimulatedProperty)
269 , fIsScratch(false) {
bsalomon5236cf42015-01-14 10:42:08 -0800270 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700271 this->registerWithCache(budgeted);
bsalomon5236cf42015-01-14 10:42:08 -0800272 }
273
kkinnunen2e6055b2016-04-22 01:48:29 -0700274 static TestResource* CreateScratch(GrGpu* gpu, SkBudgeted budgeted,
275 SimulatedProperty property) {
276 return new TestResource(gpu, budgeted, property, kScratchConstructor);
bsalomondace19e2014-11-17 07:34:06 -0800277 }
kkinnunen2e6055b2016-04-22 01:48:29 -0700278 static TestResource* CreateWrapped(GrGpu* gpu, size_t size = kDefaultSize) {
279 return new TestResource(gpu, size);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000280 }
281
Brian Salomond3b65972017-03-22 12:05:03 -0400282 ~TestResource() override {
bsalomon33435572014-11-05 14:47:41 -0800283 --fNumAlive;
bsalomon71cb0c22014-11-14 12:10:14 -0800284 SkSafeUnref(fToDelete);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000285 }
286
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000287 void setSize(size_t size) {
288 fSize = size;
289 this->didChangeGpuMemorySize();
290 }
291
bsalomon33435572014-11-05 14:47:41 -0800292 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000293
bsalomon71cb0c22014-11-14 12:10:14 -0800294 void setUnrefWhenDestroyed(TestResource* resource) {
295 SkRefCnt_SafeAssign(fToDelete, resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000296 }
297
bsalomon1c60dfe2015-01-21 09:32:40 -0800298 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
299 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
300 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800301 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
302 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800303 }
304 }
305
306 static size_t ExpectedScratchKeySize() {
307 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
308 }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000309private:
bsalomon24db3b12015-01-23 04:24:04 -0800310 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800311
kkinnunen2e6055b2016-04-22 01:48:29 -0700312 TestResource(GrGpu* gpu, SkBudgeted budgeted, SimulatedProperty property, ScratchConstructor)
313 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700314 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800315 , fSize(kDefaultSize)
kkinnunen2e6055b2016-04-22 01:48:29 -0700316 , fProperty(property)
317 , fIsScratch(true) {
bsalomon1c60dfe2015-01-21 09:32:40 -0800318 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700319 this->registerWithCache(budgeted);
320 }
321
322 // Constructor for simulating resources that wrap backend objects.
323 TestResource(GrGpu* gpu, size_t size)
324 : INHERITED(gpu)
325 , fToDelete(nullptr)
326 , fSize(size)
327 , fProperty(kA_SimulatedProperty)
328 , fIsScratch(false) {
329 ++fNumAlive;
330 this->registerWithCacheWrapped();
331 }
332
333 void computeScratchKey(GrScratchKey* key) const override {
334 if (fIsScratch) {
335 ComputeScratchKey(fProperty, key);
336 }
bsalomon1c60dfe2015-01-21 09:32:40 -0800337 }
338
mtklein36352bf2015-03-25 18:17:31 -0700339 size_t onGpuMemorySize() const override { return fSize; }
bsalomon69ed47f2014-11-12 11:13:39 -0800340
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000341 TestResource* fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000342 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800343 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800344 SimulatedProperty fProperty;
kkinnunen2e6055b2016-04-22 01:48:29 -0700345 bool fIsScratch;
bsalomon6d3fe022014-07-25 08:35:45 -0700346 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000347};
bsalomon33435572014-11-05 14:47:41 -0800348int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000349
bsalomonc2f35b72015-01-23 07:19:22 -0800350class Mock {
351public:
352 Mock(int maxCnt, size_t maxBytes) {
Greg Daniel02611d92017-07-25 10:05:01 -0400353 fContext = GrContext::MakeMock(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -0800354 SkASSERT(fContext);
355 fContext->setResourceCacheLimits(maxCnt, maxBytes);
Robert Phillips6be756b2018-01-16 15:07:54 -0500356 GrResourceCache* cache = fContext->contextPriv().getResourceCache();
bsalomon0ea80f42015-02-11 10:49:59 -0800357 cache->purgeAllUnlocked();
358 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800359 }
bsalomonc2f35b72015-01-23 07:19:22 -0800360
Robert Phillips6be756b2018-01-16 15:07:54 -0500361 GrResourceCache* cache() { return fContext->contextPriv().getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800362
Hal Canary342b7ac2016-11-04 11:49:42 -0400363 GrContext* context() { return fContext.get(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800364
365private:
Hal Canary342b7ac2016-11-04 11:49:42 -0400366 sk_sp<GrContext> fContext;
bsalomonc2f35b72015-01-23 07:19:22 -0800367};
368
369static void test_no_key(skiatest::Reporter* reporter) {
370 Mock mock(10, 30000);
371 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800372 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500373 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon71cb0c22014-11-14 12:10:14 -0800374
375 // Create a bunch of resources with no keys
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500376 TestResource* a = new TestResource(gpu);
377 TestResource* b = new TestResource(gpu);
378 TestResource* c = new TestResource(gpu);
379 TestResource* d = new TestResource(gpu);
bsalomon71cb0c22014-11-14 12:10:14 -0800380 a->setSize(11);
381 b->setSize(12);
382 c->setSize(13);
383 d->setSize(14);
384
385 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800386 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800387 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800388 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800389
390 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800391 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800392 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
393
bsalomon8718aaf2015-02-19 07:24:21 -0800394 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800395
396 a->unref();
397 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800398 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800399 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800400 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800401
402 c->unref();
403 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800404 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800405 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800406 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800407
408 d->unref();
409 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800410 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
411 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800412
413 b->unref();
414 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800415 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
416 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800417}
418
bsalomon24db3b12015-01-23 04:24:04 -0800419// Each integer passed as a template param creates a new domain.
Brian Salomon1090da62017-01-06 12:04:19 -0500420template <int>
421static void make_unique_key(GrUniqueKey* key, int data, const char* tag = nullptr) {
bsalomon8718aaf2015-02-19 07:24:21 -0800422 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
Brian Salomon1090da62017-01-06 12:04:19 -0500423 GrUniqueKey::Builder builder(key, d, 1, tag);
bsalomon24db3b12015-01-23 04:24:04 -0800424 builder[0] = data;
425}
426
bsalomon84c8e622014-11-17 09:33:27 -0800427static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800428 Mock mock(10, 300);
429 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800430 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500431 GrGpu* gpu = context->contextPriv().getGpu();
bsalomondace19e2014-11-17 07:34:06 -0800432
bsalomon8718aaf2015-02-19 07:24:21 -0800433 GrUniqueKey uniqueKey;
434 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800435
bsalomon8718aaf2015-02-19 07:24:21 -0800436 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800437 TestResource* scratch =
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500438 TestResource::CreateScratch(gpu, SkBudgeted::kYes, TestResource::kB_SimulatedProperty);
bsalomondace19e2014-11-17 07:34:06 -0800439 scratch->setSize(10);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500440 TestResource* unique = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -0800441 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800442 unique->resourcePriv().setUniqueKey(uniqueKey);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500443 TestResource* wrapped = TestResource::CreateWrapped(gpu);
bsalomon5236cf42015-01-14 10:42:08 -0800444 wrapped->setSize(12);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500445 TestResource* unbudgeted = new TestResource(gpu, SkBudgeted::kNo);
bsalomon84c8e622014-11-17 09:33:27 -0800446 unbudgeted->setSize(13);
bsalomondace19e2014-11-17 07:34:06 -0800447
Brian Osman0562eb92017-05-08 11:16:39 -0400448 // Make sure we can add a unique key to the wrapped resource
bsalomon8718aaf2015-02-19 07:24:21 -0800449 GrUniqueKey uniqueKey2;
450 make_unique_key<0>(&uniqueKey2, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800451 wrapped->resourcePriv().setUniqueKey(uniqueKey2);
Brian Osman0562eb92017-05-08 11:16:39 -0400452 GrGpuResource* wrappedViaKey = cache->findAndRefUniqueResource(uniqueKey2);
453 REPORTER_ASSERT(reporter, wrappedViaKey != nullptr);
454
455 // Remove the extra ref we just added.
456 wrappedViaKey->unref();
bsalomondace19e2014-11-17 07:34:06 -0800457
458 // Make sure sizes are as we expect
bsalomon0ea80f42015-02-11 10:49:59 -0800459 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800460 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800461 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800462 cache->getResourceBytes());
463 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800464 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800465 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400466 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800467
bsalomon63c992f2015-01-23 12:47:59 -0800468 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800469 cache->purgeAllUnlocked();
470 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800471 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800472 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800473 cache->getResourceBytes());
474 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800475 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800476 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400477 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800478
479 // Unreffing the wrapped resource should free it right away.
480 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800481 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800482 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800483 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400484 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800485
bsalomon84c8e622014-11-17 09:33:27 -0800486 // Now try freeing the budgeted resources first
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500487 wrapped = TestResource::CreateWrapped(gpu);
bsalomondace19e2014-11-17 07:34:06 -0800488 scratch->setSize(12);
bsalomon8718aaf2015-02-19 07:24:21 -0800489 unique->unref();
Derek Sollenbergeree479142017-05-24 11:41:33 -0400490 REPORTER_ASSERT(reporter, 11 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800491 cache->purgeAllUnlocked();
492 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800493 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrapped->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800494 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
495 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
496 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400497 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800498
499 scratch->unref();
Derek Sollenbergeree479142017-05-24 11:41:33 -0400500 REPORTER_ASSERT(reporter, 12 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800501 cache->purgeAllUnlocked();
502 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800503 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrapped->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800504 cache->getResourceBytes());
505 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
506 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400507 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800508
509 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800510 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
511 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
512 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
513 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400514 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800515
516 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800517 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
518 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
519 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
520 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400521 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800522}
523
bsalomon5236cf42015-01-14 10:42:08 -0800524static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800525 Mock mock(10, 30000);
526 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800527 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500528 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon5236cf42015-01-14 10:42:08 -0800529
bsalomon8718aaf2015-02-19 07:24:21 -0800530 GrUniqueKey uniqueKey;
531 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800532
533 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800534 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800535 TestResource* wrapped;
536 TestResource* unbudgeted;
537
538 // A large uncached or wrapped resource shouldn't evict anything.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500539 scratch = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
kkinnunen2e6055b2016-04-22 01:48:29 -0700540 TestResource::kB_SimulatedProperty);
541
bsalomon5236cf42015-01-14 10:42:08 -0800542 scratch->setSize(10);
543 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800544 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
545 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
546 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
547 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400548 REPORTER_ASSERT(reporter, 10 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800549
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500550 unique = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -0800551 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800552 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800553 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800554 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
555 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
556 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
557 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400558 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800559
bsalomon0ea80f42015-02-11 10:49:59 -0800560 size_t large = 2 * cache->getResourceBytes();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500561 unbudgeted = new TestResource(gpu, SkBudgeted::kNo, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800562 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
563 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
564 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
565 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400566 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800567
568 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800569 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
570 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
571 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
572 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400573 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800574
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500575 wrapped = TestResource::CreateWrapped(gpu, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800576 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
577 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
578 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
579 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400580 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800581
582 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800583 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
584 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
585 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
586 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400587 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800588
bsalomon0ea80f42015-02-11 10:49:59 -0800589 cache->purgeAllUnlocked();
590 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
591 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
592 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
593 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400594 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800595}
596
bsalomon3582d3e2015-02-13 14:20:05 -0800597// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
598void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
599/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800600 Mock mock(10, 300);
601 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800602 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500603 GrGpu* gpu = context->contextPriv().getGpu();
bsalomonc2f35b72015-01-23 07:19:22 -0800604
605 TestResource* resource =
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500606 TestResource::CreateScratch(gpu, SkBudgeted::kNo, TestResource::kA_SimulatedProperty);
bsalomonc2f35b72015-01-23 07:19:22 -0800607 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800608 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800609
610 size_t size = resource->gpuMemorySize();
611 for (int i = 0; i < 2; ++i) {
612 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800613 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800614 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800615 REPORTER_ASSERT(reporter, SkBudgeted::kNo == resource->resourcePriv().isBudgeted());
halcanary96fcdcc2015-08-27 07:41:13 -0700616 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomon0ea80f42015-02-11 10:49:59 -0800617 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
618 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
619 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
620 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400621 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800622
623 // Once it is unrefed, it should become available as scratch.
624 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800625 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
626 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
627 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
628 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400629 REPORTER_ASSERT(reporter, size == cache->getPurgeableBytes());
robertphillips6e83ac72015-08-13 05:19:14 -0700630 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomonc2f35b72015-01-23 07:19:22 -0800631 REPORTER_ASSERT(reporter, resource);
bsalomon3582d3e2015-02-13 14:20:05 -0800632 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800633 REPORTER_ASSERT(reporter, resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800634 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800635
636 if (0 == i) {
mtklein5f939ab2016-03-16 10:28:35 -0700637 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
bsalomonc2f35b72015-01-23 07:19:22 -0800638 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800639 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800640 } else {
641 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800642 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800643 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
644 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
645 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
646 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400647 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800648 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800649 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800650 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800651
652 // now when it is unrefed it should die since it has no key.
653 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800654 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
655 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
656 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
657 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400658 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800659 }
bsalomon8b79d232014-11-10 10:19:06 -0800660 }
bsalomonc2f35b72015-01-23 07:19:22 -0800661}
662
663static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
664 Mock mock(5, 30000);
665 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800666 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500667 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -0800668
bsalomon8b79d232014-11-10 10:19:06 -0800669 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500670 TestResource* a = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700671 SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800672 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500673 TestResource* b = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700674 SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800675 TestResource::kB_SimulatedProperty);
bsalomon8b79d232014-11-10 10:19:06 -0800676 a->setSize(11);
677 b->setSize(12);
bsalomon1c60dfe2015-01-21 09:32:40 -0800678 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800679 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800680 // Check for negative case consistency. (leaks upon test failure.)
halcanary96fcdcc2015-08-27 07:41:13 -0700681 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(scratchKey1, TestResource::kDefaultSize, 0));
bsalomon1c60dfe2015-01-21 09:32:40 -0800682
683 GrScratchKey scratchKey;
bsalomon23e619c2015-02-06 11:54:28 -0800684 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800685
bsalomon0ea80f42015-02-11 10:49:59 -0800686 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon8b79d232014-11-10 10:19:06 -0800687 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800688 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
689 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800690 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800691 cache->getResourceBytes());
bsalomon8b79d232014-11-10 10:19:06 -0800692
bsalomon63c992f2015-01-23 12:47:59 -0800693 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800694 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800695 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800696 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800697
698 // Unref but don't purge
699 a->unref();
700 b->unref();
701 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800702 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800703
bsalomon63c992f2015-01-23 12:47:59 -0800704 // Purge again. This time resources should be purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800705 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800706 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800707 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
708 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800709}
710
bsalomon10e23ca2014-11-25 05:52:06 -0800711static void test_remove_scratch_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800712 Mock mock(5, 30000);
713 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800714 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500715 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -0800716
bsalomon10e23ca2014-11-25 05:52:06 -0800717 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500718 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800719 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500720 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800721 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800722 a->unref();
723 b->unref();
724
bsalomon1c60dfe2015-01-21 09:32:40 -0800725 GrScratchKey scratchKey;
726 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800727 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800728 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700729 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800730
bsalomon0ea80f42015-02-11 10:49:59 -0800731 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800732 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800733 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800734 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
735 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800736
737 // Find the first resource and remove its scratch key
738 GrGpuResource* find;
robertphillips6e83ac72015-08-13 05:19:14 -0700739 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800740 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800741 // It's still alive, but not cached by scratch key anymore
742 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800743 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
744 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800745
746 // The cache should immediately delete it when it's unrefed since it isn't accessible.
747 find->unref();
748 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800749 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
750 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800751
752 // Repeat for the second resource.
robertphillips6e83ac72015-08-13 05:19:14 -0700753 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800754 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800755 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800756 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
757 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800758
759 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800760 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800761 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800762 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
763 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800764
765 find->unref();
766 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800767 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
768 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800769}
770
bsalomon1c60dfe2015-01-21 09:32:40 -0800771static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800772 Mock mock(5, 30000);
773 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800774 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500775 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon1c60dfe2015-01-21 09:32:40 -0800776
777 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500778 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800779 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500780 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800781 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800782 a->unref();
783 b->unref();
784
785 GrScratchKey scratchKey;
786 // Ensure that scratch key comparison and assignment is consistent.
787 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800788 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800789 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800790 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800791 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
792 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
793 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
794 scratchKey = scratchKey1;
795 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
796 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
797 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
798 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
799 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
800 scratchKey = scratchKey2;
801 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
802 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
803 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
804 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
805 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
806
807 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800808 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800809 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700810 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800811
812 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800813 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700814 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700815 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800816 find->unref();
817
818 scratchKey2 = scratchKey;
robertphillips6e83ac72015-08-13 05:19:14 -0700819 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700820 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800821 REPORTER_ASSERT(reporter, find == a || find == b);
822
robertphillips6e83ac72015-08-13 05:19:14 -0700823 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700824 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800825 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
826 REPORTER_ASSERT(reporter, find2 != find);
827 find2->unref();
828 find->unref();
829}
830
bsalomon8718aaf2015-02-19 07:24:21 -0800831static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800832 Mock mock(5, 30000);
833 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800834 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500835 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000836
bsalomon8718aaf2015-02-19 07:24:21 -0800837 GrUniqueKey key;
838 make_unique_key<0>(&key, 0);
mtklein5f939ab2016-03-16 10:28:35 -0700839
bsalomon8718aaf2015-02-19 07:24:21 -0800840 // Create two resources that we will attempt to register with the same unique key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500841 TestResource* a = new TestResource(gpu);
bsalomon8b79d232014-11-10 10:19:06 -0800842 a->setSize(11);
mtklein5f939ab2016-03-16 10:28:35 -0700843
bsalomonf99e9612015-02-19 08:24:16 -0800844 // Set key on resource a.
845 a->resourcePriv().setUniqueKey(key);
846 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
847 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800848
bsalomonf99e9612015-02-19 08:24:16 -0800849 // Make sure that redundantly setting a's key works.
850 a->resourcePriv().setUniqueKey(key);
851 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800852 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800853 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
854 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800855 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
856
bsalomonf99e9612015-02-19 08:24:16 -0800857 // Create resource b and set the same key. It should replace a's unique key cache entry.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500858 TestResource* b = new TestResource(gpu);
bsalomonf99e9612015-02-19 08:24:16 -0800859 b->setSize(12);
860 b->resourcePriv().setUniqueKey(key);
861 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
862 b->unref();
863
864 // Still have two resources because a is still reffed.
865 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
866 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
867 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
868
869 a->unref();
870 // Now a should be gone.
871 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
872 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
873 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
874
875 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
876 // Also make b be unreffed when replacement occurs.
877 b->unref();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500878 TestResource* c = new TestResource(gpu);
bsalomonf99e9612015-02-19 08:24:16 -0800879 GrUniqueKey differentKey;
880 make_unique_key<0>(&differentKey, 1);
881 c->setSize(13);
882 c->resourcePriv().setUniqueKey(differentKey);
883 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
884 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
885 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
886 // c replaces b and b should be immediately purged.
887 c->resourcePriv().setUniqueKey(key);
888 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
889 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
890 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
891
892 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800893 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800894 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
895 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
896 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
897
898 // Drop the ref on c, it should be kept alive because it has a unique key.
899 c->unref();
900 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
901 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
902 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
903
904 // Verify that we can find c, then remove its unique key. It should get purged immediately.
905 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
906 c->resourcePriv().removeUniqueKey();
907 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800908 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
909 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -0800910 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -0700911
912 {
913 GrUniqueKey key2;
914 make_unique_key<0>(&key2, 0);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500915 sk_sp<TestResource> d(new TestResource(gpu));
senorblanco84cd6212015-08-04 10:01:58 -0700916 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -0700917 key2.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -0700918 d->resourcePriv().setUniqueKey(key2);
919 }
920
921 GrUniqueKey key3;
922 make_unique_key<0>(&key3, 0);
Hal Canary342b7ac2016-11-04 11:49:42 -0400923 sk_sp<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
senorblanco84cd6212015-08-04 10:01:58 -0700924 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000925}
926
bsalomon8b79d232014-11-10 10:19:06 -0800927static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800928 Mock mock(5, 30000);
929 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800930 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500931 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -0800932
bsalomon8718aaf2015-02-19 07:24:21 -0800933 GrUniqueKey key1, key2, key3;
934 make_unique_key<0>(&key1, 1);
935 make_unique_key<0>(&key2, 2);
936 make_unique_key<0>(&key3, 3);
mtklein5f939ab2016-03-16 10:28:35 -0700937
bsalomon23e619c2015-02-06 11:54:28 -0800938 // Add three resources to the cache. Only c is usable as scratch.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500939 TestResource* a = new TestResource(gpu);
940 TestResource* b = new TestResource(gpu);
941 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800942 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -0800943 a->resourcePriv().setUniqueKey(key1);
944 b->resourcePriv().setUniqueKey(key2);
945 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -0800946 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -0800947 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -0800948 c->unref();
949
bsalomon8718aaf2015-02-19 07:24:21 -0800950 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
951 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
952 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800953 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -0800954
bsalomon8718aaf2015-02-19 07:24:21 -0800955 typedef GrUniqueKeyInvalidatedMessage Msg;
956 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -0800957
958 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
959 Bus::Post(Msg(key1));
960 Bus::Post(Msg(key2));
bsalomon0ea80f42015-02-11 10:49:59 -0800961 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800962 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -0800963 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
964 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -0800965 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800966 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800967
968 // Invalidate the third.
bsalomon23e619c2015-02-06 11:54:28 -0800969 Bus::Post(Msg(key3));
bsalomon0ea80f42015-02-11 10:49:59 -0800970 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800971 // we still have a ref on b, c should be recycled as scratch.
972 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800973 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -0800974
bsalomon23e619c2015-02-06 11:54:28 -0800975 // make b purgeable. It should be immediately deleted since it has no key.
976 b->unref();
977 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
978
979 // Make sure we actually get to c via it's scratch key, before we say goodbye.
980 GrScratchKey scratchKey;
981 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700982 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon23e619c2015-02-06 11:54:28 -0800983 REPORTER_ASSERT(reporter, scratch == c);
984 SkSafeUnref(scratch);
985
986 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -0800987 cache->purgeAllUnlocked();
robertphillips6e83ac72015-08-13 05:19:14 -0700988 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon71cb0c22014-11-14 12:10:14 -0800989 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800990 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
991 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -0800992 REPORTER_ASSERT(reporter, !scratch);
993 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -0800994}
995
bsalomon71cb0c22014-11-14 12:10:14 -0800996static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800997 Mock mock(3, 30000);
998 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800999 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001000 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -08001001
bsalomon8718aaf2015-02-19 07:24:21 -08001002 GrUniqueKey key1, key2;
1003 make_unique_key<0>(&key1, 1);
1004 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001005
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001006 TestResource* a = new TestResource(gpu);
1007 TestResource* b = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001008 a->resourcePriv().setUniqueKey(key1);
1009 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -08001010
bsalomonc2f35b72015-01-23 07:19:22 -08001011 // Make a cycle
1012 a->setUnrefWhenDestroyed(b);
1013 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -08001014
bsalomonc2f35b72015-01-23 07:19:22 -08001015 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001016
bsalomonc2f35b72015-01-23 07:19:22 -08001017 a->unref();
1018 b->unref();
bsalomon8b79d232014-11-10 10:19:06 -08001019
bsalomonc2f35b72015-01-23 07:19:22 -08001020 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001021
bsalomon0ea80f42015-02-11 10:49:59 -08001022 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001023 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001024
bsalomonc2f35b72015-01-23 07:19:22 -08001025 // Break the cycle
halcanary96fcdcc2015-08-27 07:41:13 -07001026 a->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -08001027 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001028
bsalomon0ea80f42015-02-11 10:49:59 -08001029 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001030 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001031}
1032
bsalomon8b79d232014-11-10 10:19:06 -08001033static void test_resource_size_changed(skiatest::Reporter* reporter) {
bsalomon8718aaf2015-02-19 07:24:21 -08001034 GrUniqueKey key1, key2;
1035 make_unique_key<0>(&key1, 1);
1036 make_unique_key<0>(&key2, 2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001037
1038 // Test changing resources sizes (both increase & decrease).
1039 {
bsalomonc2f35b72015-01-23 07:19:22 -08001040 Mock mock(3, 30000);
1041 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001042 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001043 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001044
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001045 TestResource* a = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001046 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001047 a->unref();
1048
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001049 TestResource* b = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001050 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001051 b->unref();
1052
bsalomon0ea80f42015-02-11 10:49:59 -08001053 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1054 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -08001055 {
Hal Canary342b7ac2016-11-04 11:49:42 -04001056 sk_sp<TestResource> find2(
bsalomon8718aaf2015-02-19 07:24:21 -08001057 static_cast<TestResource*>(cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001058 find2->setSize(200);
Hal Canary342b7ac2016-11-04 11:49:42 -04001059 sk_sp<TestResource> find1(
bsalomon8718aaf2015-02-19 07:24:21 -08001060 static_cast<TestResource*>(cache->findAndRefUniqueResource(key1)));
bsalomon8b79d232014-11-10 10:19:06 -08001061 find1->setSize(50);
1062 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001063
bsalomon0ea80f42015-02-11 10:49:59 -08001064 REPORTER_ASSERT(reporter, 250 == cache->getResourceBytes());
1065 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001066 }
1067
1068 // Test increasing a resources size beyond the cache budget.
1069 {
bsalomonc2f35b72015-01-23 07:19:22 -08001070 Mock mock(2, 300);
1071 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001072 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001073 GrGpu* gpu = context->contextPriv().getGpu();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001074
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001075 TestResource* a = new TestResource(gpu);
bsalomon8b79d232014-11-10 10:19:06 -08001076 a->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001077 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001078 a->unref();
1079
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001080 TestResource* b = new TestResource(gpu);
bsalomon8b79d232014-11-10 10:19:06 -08001081 b->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001082 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001083 b->unref();
1084
bsalomon0ea80f42015-02-11 10:49:59 -08001085 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1086 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001087
bsalomon8b79d232014-11-10 10:19:06 -08001088 {
Hal Canary342b7ac2016-11-04 11:49:42 -04001089 sk_sp<TestResource> find2(static_cast<TestResource*>(
bsalomon8718aaf2015-02-19 07:24:21 -08001090 cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001091 find2->setSize(201);
1092 }
bsalomon8718aaf2015-02-19 07:24:21 -08001093 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001094
bsalomon0ea80f42015-02-11 10:49:59 -08001095 REPORTER_ASSERT(reporter, 201 == cache->getResourceBytes());
1096 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001097 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001098}
1099
bsalomonddf30e62015-02-19 11:38:44 -08001100static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1101 static const int kCount = 50;
1102 static const int kBudgetCnt = kCount / 2;
1103 static const int kLockedFreq = 8;
1104 static const int kBudgetSize = 0x80000000;
1105
1106 SkRandom random;
1107
1108 // Run the test 2*kCount times;
1109 for (int i = 0; i < 2 * kCount; ++i ) {
1110 Mock mock(kBudgetCnt, kBudgetSize);
1111 GrContext* context = mock.context();
1112 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001113 GrGpu* gpu = context->contextPriv().getGpu();
bsalomonddf30e62015-02-19 11:38:44 -08001114
1115 // Pick a random number of resources to add before the timestamp will wrap.
1116 cache->changeTimestamp(SK_MaxU32 - random.nextULessThan(kCount + 1));
1117
1118 static const int kNumToPurge = kCount - kBudgetCnt;
1119
1120 SkTDArray<int> shouldPurgeIdxs;
1121 int purgeableCnt = 0;
1122 SkTDArray<GrGpuResource*> resourcesToUnref;
1123
1124 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1125 // unpurgeable resources.
1126 for (int j = 0; j < kCount; ++j) {
1127 GrUniqueKey key;
1128 make_unique_key<0>(&key, j);
1129
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001130 TestResource* r = new TestResource(gpu);
bsalomonddf30e62015-02-19 11:38:44 -08001131 r->resourcePriv().setUniqueKey(key);
1132 if (random.nextU() % kLockedFreq) {
1133 // Make this is purgeable.
1134 r->unref();
1135 ++purgeableCnt;
1136 if (purgeableCnt <= kNumToPurge) {
1137 *shouldPurgeIdxs.append() = j;
1138 }
1139 } else {
1140 *resourcesToUnref.append() = r;
1141 }
1142 }
1143
1144 // Verify that the correct resources were purged.
1145 int currShouldPurgeIdx = 0;
1146 for (int j = 0; j < kCount; ++j) {
1147 GrUniqueKey key;
1148 make_unique_key<0>(&key, j);
1149 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1150 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1151 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1152 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001153 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001154 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001155 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001156 }
1157 SkSafeUnref(res);
1158 }
1159
1160 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1161 resourcesToUnref[j]->unref();
1162 }
1163 }
1164}
1165
bsalomon3f324322015-04-08 11:01:54 -07001166static void test_flush(skiatest::Reporter* reporter) {
1167 Mock mock(1000000, 1000000);
1168 GrContext* context = mock.context();
1169 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001170 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon3f324322015-04-08 11:01:54 -07001171
1172 // The current cache impl will round the max flush count to the next power of 2. So we choose a
1173 // power of two here to keep things simpler.
1174 static const int kFlushCount = 16;
1175 cache->setLimits(1000000, 1000000, kFlushCount);
1176
1177 {
1178 // Insert a resource and send a flush notification kFlushCount times.
1179 for (int i = 0; i < kFlushCount; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001180 TestResource* r = new TestResource(gpu);
bsalomon3f324322015-04-08 11:01:54 -07001181 GrUniqueKey k;
1182 make_unique_key<1>(&k, i);
1183 r->resourcePriv().setUniqueKey(k);
1184 r->unref();
bsalomonb77a9072016-09-07 10:02:04 -07001185 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001186 }
1187
1188 // Send flush notifications to the cache. Each flush should purge the oldest resource.
bsalomone2e87f32016-09-22 12:42:11 -07001189 for (int i = 0; i < kFlushCount; ++i) {
1190 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001191 REPORTER_ASSERT(reporter, kFlushCount - i - 1 == cache->getResourceCount());
1192 for (int j = 0; j < i; ++j) {
1193 GrUniqueKey k;
1194 make_unique_key<1>(&k, j);
1195 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1196 REPORTER_ASSERT(reporter, !SkToBool(r));
1197 SkSafeUnref(r);
1198 }
bsalomon3f324322015-04-08 11:01:54 -07001199 }
1200
1201 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1202 cache->purgeAllUnlocked();
1203 }
1204
1205 // Do a similar test but where we leave refs on some resources to prevent them from being
1206 // purged.
1207 {
1208 GrGpuResource* refedResources[kFlushCount >> 1];
1209 for (int i = 0; i < kFlushCount; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001210 TestResource* r = new TestResource(gpu);
bsalomon3f324322015-04-08 11:01:54 -07001211 GrUniqueKey k;
1212 make_unique_key<1>(&k, i);
1213 r->resourcePriv().setUniqueKey(k);
1214 // Leave a ref on every other resource, beginning with the first.
1215 if (SkToBool(i & 0x1)) {
1216 refedResources[i/2] = r;
1217 } else {
1218 r->unref();
1219 }
bsalomonb77a9072016-09-07 10:02:04 -07001220 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001221 }
1222
1223 for (int i = 0; i < kFlushCount; ++i) {
1224 // Should get a resource purged every other flush.
bsalomonb77a9072016-09-07 10:02:04 -07001225 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomone2e87f32016-09-22 12:42:11 -07001226 REPORTER_ASSERT(reporter, kFlushCount - i/2 - 1 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001227 }
1228
1229 // Unref all the resources that we kept refs on in the first loop.
1230 for (int i = 0; i < kFlushCount >> 1; ++i) {
1231 refedResources[i]->unref();
1232 }
1233
bsalomone2e87f32016-09-22 12:42:11 -07001234 // After kFlushCount + 1 flushes they all will have sat in the purgeable queue for
1235 // kFlushCount full flushes.
1236 for (int i = 0; i < kFlushCount + 1; ++i) {
bsalomon3f324322015-04-08 11:01:54 -07001237 REPORTER_ASSERT(reporter, kFlushCount >> 1 == cache->getResourceCount());
bsalomonb77a9072016-09-07 10:02:04 -07001238 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001239 }
1240 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1241
1242 cache->purgeAllUnlocked();
1243 }
1244
1245 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomondc438982016-08-31 11:53:49 -07001246
1247 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1248 // eviction.
1249 context->flush();
1250 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001251 TestResource* r = new TestResource(gpu);
bsalomondc438982016-08-31 11:53:49 -07001252 GrUniqueKey k;
1253 make_unique_key<1>(&k, i);
1254 r->resourcePriv().setUniqueKey(k);
1255 r->unref();
1256 }
1257 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1258 for (int i = 0; i < 10 * kFlushCount; ++i) {
1259 context->flush();
1260 }
1261 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001262}
1263
Brian Salomon5e150852017-03-22 14:53:13 -04001264static void test_time_purge(skiatest::Reporter* reporter) {
1265 Mock mock(1000000, 1000000);
1266 GrContext* context = mock.context();
1267 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001268 GrGpu* gpu = context->contextPriv().getGpu();
Brian Salomon5e150852017-03-22 14:53:13 -04001269
1270 static constexpr int kCnts[] = {1, 10, 1024};
1271 auto nowish = []() {
1272 // We sleep so that we ensure we get a value that is greater than the last call to
1273 // GrStdSteadyClock::now().
1274 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1275 auto result = GrStdSteadyClock::now();
1276 // Also sleep afterwards so we don't get this value again.
1277 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1278 return result;
1279 };
1280
1281 for (int cnt : kCnts) {
1282 std::unique_ptr<GrStdSteadyClock::time_point[]> timeStamps(
1283 new GrStdSteadyClock::time_point[cnt]);
1284 {
1285 // Insert resources and get time points between each addition.
1286 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001287 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001288 GrUniqueKey k;
1289 make_unique_key<1>(&k, i);
1290 r->resourcePriv().setUniqueKey(k);
1291 r->unref();
1292 timeStamps.get()[i] = nowish();
1293 }
1294
1295 // Purge based on the time points between resource additions. Each purge should remove
1296 // the oldest resource.
1297 for (int i = 0; i < cnt; ++i) {
1298 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1299 REPORTER_ASSERT(reporter, cnt - i - 1 == cache->getResourceCount());
1300 for (int j = 0; j < i; ++j) {
1301 GrUniqueKey k;
1302 make_unique_key<1>(&k, j);
1303 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1304 REPORTER_ASSERT(reporter, !SkToBool(r));
1305 SkSafeUnref(r);
1306 }
1307 }
1308
1309 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1310 cache->purgeAllUnlocked();
1311 }
1312
1313 // Do a similar test but where we leave refs on some resources to prevent them from being
1314 // purged.
1315 {
1316 std::unique_ptr<GrGpuResource* []> refedResources(new GrGpuResource*[cnt / 2]);
1317 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001318 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001319 GrUniqueKey k;
1320 make_unique_key<1>(&k, i);
1321 r->resourcePriv().setUniqueKey(k);
1322 // Leave a ref on every other resource, beginning with the first.
1323 if (SkToBool(i & 0x1)) {
1324 refedResources.get()[i / 2] = r;
1325 } else {
1326 r->unref();
1327 }
1328 timeStamps.get()[i] = nowish();
1329 }
1330
1331 for (int i = 0; i < cnt; ++i) {
1332 // Should get a resource purged every other frame.
1333 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1334 REPORTER_ASSERT(reporter, cnt - i / 2 - 1 == cache->getResourceCount());
1335 }
1336
1337 // Unref all the resources that we kept refs on in the first loop.
1338 for (int i = 0; i < (cnt / 2); ++i) {
1339 refedResources.get()[i]->unref();
1340 cache->purgeResourcesNotUsedSince(nowish());
1341 REPORTER_ASSERT(reporter, cnt / 2 - i - 1 == cache->getResourceCount());
1342 }
1343
1344 cache->purgeAllUnlocked();
1345 }
1346
1347 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1348
1349 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1350 // eviction
1351 context->flush();
1352 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001353 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001354 GrUniqueKey k;
1355 make_unique_key<1>(&k, i);
1356 r->resourcePriv().setUniqueKey(k);
1357 r->unref();
1358 }
1359 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1360 context->flush();
1361 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1362 cache->purgeResourcesNotUsedSince(nowish());
1363 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1364 }
1365}
1366
Derek Sollenberger5480a182017-05-25 16:43:59 -04001367static void test_partial_purge(skiatest::Reporter* reporter) {
1368 Mock mock(6, 100);
1369 GrContext* context = mock.context();
1370 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001371 GrGpu* gpu = context->contextPriv().getGpu();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001372
1373 enum TestsCase {
1374 kOnlyScratch_TestCase = 0,
1375 kPartialScratch_TestCase = 1,
1376 kAllScratch_TestCase = 2,
1377 kPartial_TestCase = 3,
1378 kAll_TestCase = 4,
1379 kNone_TestCase = 5,
1380 kEndTests_TestCase = kNone_TestCase + 1
1381 };
1382
1383 for (int testCase = 0; testCase < kEndTests_TestCase; testCase++) {
1384
1385 GrUniqueKey key1, key2, key3;
1386 make_unique_key<0>(&key1, 1);
1387 make_unique_key<0>(&key2, 2);
1388 make_unique_key<0>(&key3, 3);
1389
1390 // Add three unique resources to the cache.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001391 TestResource *unique1 = new TestResource(gpu);
1392 TestResource *unique2 = new TestResource(gpu);
1393 TestResource *unique3 = new TestResource(gpu);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001394
1395 unique1->resourcePriv().setUniqueKey(key1);
1396 unique2->resourcePriv().setUniqueKey(key2);
1397 unique3->resourcePriv().setUniqueKey(key3);
1398
1399 unique1->setSize(10);
1400 unique2->setSize(11);
1401 unique3->setSize(12);
1402
1403 // Add two scratch resources to the cache.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001404 TestResource *scratch1 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Derek Sollenberger5480a182017-05-25 16:43:59 -04001405 TestResource::kA_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001406 TestResource *scratch2 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Derek Sollenberger5480a182017-05-25 16:43:59 -04001407 TestResource::kB_SimulatedProperty);
1408 scratch1->setSize(13);
1409 scratch2->setSize(14);
1410
1411
1412 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1413 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1414 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1415
1416 // Add resources to the purgeable queue
1417 unique1->unref();
1418 scratch1->unref();
1419 unique2->unref();
1420 scratch2->unref();
1421 unique3->unref();
1422
1423 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1424 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1425 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1426
1427 switch(testCase) {
1428 case kOnlyScratch_TestCase: {
1429 context->purgeUnlockedResources(14, true);
1430 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1431 REPORTER_ASSERT(reporter, 33 == cache->getBudgetedResourceBytes());
1432 break;
1433 }
1434 case kPartialScratch_TestCase: {
1435 context->purgeUnlockedResources(3, true);
1436 REPORTER_ASSERT(reporter, 4 == cache->getBudgetedResourceCount());
1437 REPORTER_ASSERT(reporter, 47 == cache->getBudgetedResourceBytes());
1438 break;
1439 }
1440 case kAllScratch_TestCase: {
1441 context->purgeUnlockedResources(50, true);
1442 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1443 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1444 break;
1445 }
1446 case kPartial_TestCase: {
1447 context->purgeUnlockedResources(13, false);
1448 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1449 REPORTER_ASSERT(reporter, 37 == cache->getBudgetedResourceBytes());
1450 break;
1451 }
1452 case kAll_TestCase: {
1453 context->purgeUnlockedResources(50, false);
1454 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1455 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1456 break;
1457 }
1458 case kNone_TestCase: {
1459 context->purgeUnlockedResources(0, true);
1460 context->purgeUnlockedResources(0, false);
1461 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1462 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1463 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1464 break;
1465 }
1466 };
1467
1468 // ensure all are purged before the next
1469 context->purgeAllUnlockedResources();
1470 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1471 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1472
1473 }
1474}
1475
bsalomon10e23ca2014-11-25 05:52:06 -08001476static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001477 // Set the cache size to double the resource count because we're going to create 2x that number
1478 // resources, using two different key domains. Add a little slop to the bytes because we resize
1479 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001480 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001481
bsalomonc2f35b72015-01-23 07:19:22 -08001482 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1483 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001484 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001485 GrGpu* gpu = context->contextPriv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -08001486
1487 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001488 GrUniqueKey key1, key2;
1489 make_unique_key<1>(&key1, i);
1490 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001491
bsalomon24db3b12015-01-23 04:24:04 -08001492 TestResource* resource;
1493
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001494 resource = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001495 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001496 resource->setSize(1);
1497 resource->unref();
1498
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001499 resource = new TestResource(gpu);
bsalomon8718aaf2015-02-19 07:24:21 -08001500 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001501 resource->setSize(1);
1502 resource->unref();
1503 }
1504
1505 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001506 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001507 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1508 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1509 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1510 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001511 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001512 GrUniqueKey key1, key2;
1513 make_unique_key<1>(&key1, i);
1514 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001515
bsalomon8718aaf2015-02-19 07:24:21 -08001516 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1517 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001518 }
1519
bsalomon0ea80f42015-02-11 10:49:59 -08001520 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001521 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001522 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001523 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1524 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1525 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1526 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001527
1528 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001529 GrUniqueKey key1, key2;
1530 make_unique_key<1>(&key1, i);
1531 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001532
bsalomon8718aaf2015-02-19 07:24:21 -08001533 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1534 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001535 }
1536}
1537
senorblanco84cd6212015-08-04 10:01:58 -07001538static void test_custom_data(skiatest::Reporter* reporter) {
1539 GrUniqueKey key1, key2;
1540 make_unique_key<0>(&key1, 1);
1541 make_unique_key<0>(&key2, 2);
1542 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -07001543 key1.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -07001544 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1545 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1546
1547 // Test that copying a key also takes a ref on its custom data.
1548 GrUniqueKey key3 = key1;
1549 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1550}
1551
bsalomonc6363ef2015-09-24 07:07:40 -07001552static void test_abandoned(skiatest::Reporter* reporter) {
1553 Mock mock(10, 300);
1554 GrContext* context = mock.context();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001555 GrGpu* gpu = context->contextPriv().getGpu();
1556
1557 sk_sp<GrGpuResource> resource(new TestResource(gpu));
bsalomonc6363ef2015-09-24 07:07:40 -07001558 context->abandonContext();
1559
1560 REPORTER_ASSERT(reporter, resource->wasDestroyed());
1561
1562 // Call all the public methods on resource in the abandoned state. They shouldn't crash.
1563
robertphillips8abb3702016-08-31 14:04:06 -07001564 resource->uniqueID();
bsalomonc6363ef2015-09-24 07:07:40 -07001565 resource->getUniqueKey();
1566 resource->wasDestroyed();
1567 resource->gpuMemorySize();
1568 resource->getContext();
1569
1570 resource->abandon();
1571 resource->resourcePriv().getScratchKey();
1572 resource->resourcePriv().isBudgeted();
1573 resource->resourcePriv().makeBudgeted();
1574 resource->resourcePriv().makeUnbudgeted();
1575 resource->resourcePriv().removeScratchKey();
1576 GrUniqueKey key;
1577 make_unique_key<0>(&key, 1);
1578 resource->resourcePriv().setUniqueKey(key);
1579 resource->resourcePriv().removeUniqueKey();
1580}
1581
Brian Salomon1090da62017-01-06 12:04:19 -05001582static void test_tags(skiatest::Reporter* reporter) {
1583#ifdef SK_DEBUG
1584 // We will insert 1 resource with tag "tag1", 2 with "tag2", and so on, up through kLastTagIdx.
1585 static constexpr int kLastTagIdx = 10;
1586 static constexpr int kNumResources = kLastTagIdx * (kLastTagIdx + 1) / 2;
1587
1588 Mock mock(kNumResources, kNumResources * TestResource::kDefaultSize);
1589 GrContext* context = mock.context();
1590 GrResourceCache* cache = mock.cache();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001591 GrGpu* gpu = context->contextPriv().getGpu();
Brian Salomon1090da62017-01-06 12:04:19 -05001592
1593 SkString tagStr;
1594 int tagIdx = 0;
1595 int currTagCnt = 0;
1596
1597 for (int i = 0; i < kNumResources; ++i, ++currTagCnt) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001598 sk_sp<GrGpuResource> resource(new TestResource(gpu));
Brian Salomon1090da62017-01-06 12:04:19 -05001599 GrUniqueKey key;
1600 if (currTagCnt == tagIdx) {
1601 tagIdx += 1;
1602 currTagCnt = 0;
1603 tagStr.printf("tag%d", tagIdx);
1604 }
1605 make_unique_key<1>(&key, i, tagStr.c_str());
1606 resource->resourcePriv().setUniqueKey(key);
1607 }
1608 SkASSERT(kLastTagIdx == tagIdx);
1609 SkASSERT(currTagCnt == kLastTagIdx);
1610
1611 // Test i = 0 to exercise unused tag string.
1612 for (int i = 0; i <= kLastTagIdx; ++i) {
1613 tagStr.printf("tag%d", i);
1614 REPORTER_ASSERT(reporter, cache->countUniqueKeysWithTag(tagStr.c_str()) == i);
1615 }
1616#endif
1617}
1618
Brian Salomondcfca432017-11-15 15:48:03 -05001619DEF_GPUTEST(ResourceCacheMisc, reporter, /* options */) {
bsalomon8b79d232014-11-10 10:19:06 -08001620 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001621 test_no_key(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001622 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001623 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001624 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001625 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001626 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001627 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001628 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001629 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001630 test_cache_chained_purge(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001631 test_resource_size_changed(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001632 test_timestamp_wrap(reporter);
bsalomon3f324322015-04-08 11:01:54 -07001633 test_flush(reporter);
Brian Salomon5e150852017-03-22 14:53:13 -04001634 test_time_purge(reporter);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001635 test_partial_purge(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001636 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001637 test_custom_data(reporter);
bsalomonc6363ef2015-09-24 07:07:40 -07001638 test_abandoned(reporter);
Brian Salomon1090da62017-01-06 12:04:19 -05001639 test_tags(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001640}
1641
Robert Phillipsd6214d42016-11-07 08:23:48 -05001642////////////////////////////////////////////////////////////////////////////////
Brian Osman32342f02017-03-04 08:12:46 -05001643static sk_sp<GrTexture> make_normal_texture(GrResourceProvider* provider,
Robert Phillipsd6214d42016-11-07 08:23:48 -05001644 GrSurfaceFlags flags,
1645 int width, int height,
1646 int sampleCnt) {
1647 GrSurfaceDesc desc;
1648 desc.fFlags = flags;
Robert Phillipsb0e93a22017-08-29 08:26:54 -04001649 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001650 desc.fWidth = width;
1651 desc.fHeight = height;
1652 desc.fConfig = kRGBA_8888_GrPixelConfig;
1653 desc.fSampleCnt = sampleCnt;
1654
Robert Phillipse78b7252017-04-06 07:59:41 -04001655 return provider->createTexture(desc, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001656}
1657
Robert Phillips0bd24dc2018-01-16 08:06:32 -05001658static sk_sp<GrTextureProxy> make_mipmap_proxy(GrProxyProvider* proxyProvider,
Robert Phillipse78b7252017-04-06 07:59:41 -04001659 GrSurfaceFlags flags,
1660 int width, int height,
1661 int sampleCnt) {
Robert Phillipsd6214d42016-11-07 08:23:48 -05001662 GrSurfaceDesc desc;
1663 desc.fFlags = flags;
Robert Phillipse44ef102017-07-21 15:37:19 -04001664 desc.fOrigin = (flags & kRenderTarget_GrSurfaceFlag) ? kBottomLeft_GrSurfaceOrigin
1665 : kTopLeft_GrSurfaceOrigin;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001666 desc.fWidth = width;
1667 desc.fHeight = height;
1668 desc.fConfig = kRGBA_8888_GrPixelConfig;
1669 desc.fSampleCnt = sampleCnt;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001670
Greg Daniel30815082018-02-09 16:08:30 -05001671 return proxyProvider->createMipMapProxy(desc, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001672}
1673
1674// Exercise GrSurface::gpuMemorySize for different combos of MSAA, RT-only,
1675// Texture-only, both-RT-and-Texture and MIPmapped
1676DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GPUMemorySize, reporter, ctxInfo) {
1677 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001678 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -05001679 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsd6214d42016-11-07 08:23:48 -05001680
Robert Phillipsd6214d42016-11-07 08:23:48 -05001681 static const int kSize = 64;
1682
Robert Phillipsd6214d42016-11-07 08:23:48 -05001683 // Normal versions
Robert Phillipse78b7252017-04-06 07:59:41 -04001684 {
1685 sk_sp<GrTexture> tex;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001686
Brian Salomonbdecacf2018-02-02 20:32:49 -05001687 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001688 size_t size = tex->gpuMemorySize();
1689 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
1690
Brian Salomonbdecacf2018-02-02 20:32:49 -05001691 size_t sampleCount =
1692 (size_t)context->caps()->getRenderTargetSampleCount(4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001693 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001694 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001695 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001696 size = tex->gpuMemorySize();
Greg Daniel81e7bf82017-07-19 14:47:42 -04001697 REPORTER_ASSERT(reporter,
1698 kSize*kSize*4 == size || // msaa4 failed
1699 kSize*kSize*4*sampleCount == size || // auto-resolving
1700 kSize*kSize*4*(sampleCount+1) == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001701 }
1702
Brian Salomonbdecacf2018-02-02 20:32:49 -05001703 tex = make_normal_texture(resourceProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001704 size = tex->gpuMemorySize();
Robert Phillipse78b7252017-04-06 07:59:41 -04001705 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001706 }
1707
Robert Phillipsd6214d42016-11-07 08:23:48 -05001708
1709 // Mipmapped versions
Brian Osman48c99192017-06-02 08:45:06 -04001710 if (context->caps()->mipMapSupport()) {
Robert Phillipse78b7252017-04-06 07:59:41 -04001711 sk_sp<GrTextureProxy> proxy;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001712
Brian Salomonbdecacf2018-02-02 20:32:49 -05001713 proxy = make_mipmap_proxy(proxyProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001714 size_t size = proxy->gpuMemorySize();
1715 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1716
Brian Salomonbdecacf2018-02-02 20:32:49 -05001717 size_t sampleCount =
1718 (size_t)context->caps()->getRenderTargetSampleCount(4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001719 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001720 proxy = make_mipmap_proxy(proxyProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001721 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001722 size = proxy->gpuMemorySize();
1723 REPORTER_ASSERT(reporter,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001724 kSize*kSize*4+(kSize*kSize*4)/3 == size || // msaa4 failed
1725 kSize*kSize*4*sampleCount+(kSize*kSize*4)/3 == size || // auto-resolving
1726 kSize*kSize*4*(sampleCount+1)+(kSize*kSize*4)/3 == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001727 }
Robert Phillips1b352562017-04-05 18:56:21 +00001728
Brian Salomonbdecacf2018-02-02 20:32:49 -05001729 proxy = make_mipmap_proxy(proxyProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001730 size = proxy->gpuMemorySize();
1731 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1732 }
Robert Phillipsd6214d42016-11-07 08:23:48 -05001733}
1734
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001735#endif