blob: 17e02ba19310fdec9663470c92c6748277a4666e [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"
bsalomon6bc1b5f2015-02-23 09:06:38 -080019#include "GrRenderTarget.h"
20#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"
bsalomonbcf0a522014-10-08 08:40:09 -070024#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080025#include "SkGr.h"
26#include "SkMessageBus.h"
Robert Phillipsd6214d42016-11-07 08:23:48 -050027#include "SkMipMap.h"
reed69f6f002014-09-18 06:09:44 -070028#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000029#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000030
31static const int gWidth = 640;
32static const int gHeight = 480;
33
34////////////////////////////////////////////////////////////////////////////////
bsalomon68d91342016-04-12 09:59:58 -070035DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070036 GrContext* context = ctxInfo.grContext();
kkinnunen15302832015-12-01 04:35:26 -080037 GrSurfaceDesc desc;
Brian Osman777b5632016-10-14 09:16:21 -040038 desc.fConfig = kRGBA_8888_GrPixelConfig;
kkinnunen15302832015-12-01 04:35:26 -080039 desc.fFlags = kRenderTarget_GrSurfaceFlag;
40 desc.fWidth = gWidth;
41 desc.fHeight = gHeight;
42 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
reede8f30622016-03-23 18:59:25 -070043 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info));
kkinnunen15302832015-12-01 04:35:26 -080044 SkCanvas* canvas = surface->getCanvas();
45
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000046 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
47
48 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000049 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000050 src.eraseColor(SK_ColorBLACK);
51 size_t srcSize = src.getSize();
52
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000053 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070054 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000055
56 int oldMaxNum;
57 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000058 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000059
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000060 // Set the cache limits so we can fit 10 "src" images and the
61 // max number of textures doesn't matter
62 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000063 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000064
65 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000066 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000067
68 for (int i = 0; i < 100; ++i) {
69 canvas->drawBitmap(src, 0, 0);
Mike Reed12e946b2017-04-17 10:53:29 -040070 canvas->readPixels(readback, 0, 0);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000071
72 // "modify" the src texture
73 src.notifyPixelsChanged();
74
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000075 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070076 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000077
78 // we should never go over the size limit
79 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
80 }
81
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000082 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000083}
84
bsalomon11abd8d2016-10-14 08:13:48 -070085static bool is_rendering_and_not_angle_es3(sk_gpu_test::GrContextFactory::ContextType type) {
86 if (type == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES3_ContextType ||
87 type == sk_gpu_test::GrContextFactory::kANGLE_GL_ES3_ContextType) {
88 return false;
89 }
90 return sk_gpu_test::GrContextFactory::IsRenderingContext(type);
91}
92
93// This currently fails on ES3 ANGLE contexts
94DEF_GPUTEST_FOR_CONTEXTS(ResourceCacheStencilBuffers, &is_rendering_and_not_angle_es3, reporter,
95 ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070096 GrContext* context = ctxInfo.grContext();
bsalomon02a44a42015-02-19 09:09:00 -080097 GrSurfaceDesc smallDesc;
98 smallDesc.fFlags = kRenderTarget_GrSurfaceFlag;
Brian Osman777b5632016-10-14 09:16:21 -040099 smallDesc.fConfig = kRGBA_8888_GrPixelConfig;
bsalomon02a44a42015-02-19 09:09:00 -0800100 smallDesc.fWidth = 4;
101 smallDesc.fHeight = 4;
102 smallDesc.fSampleCnt = 0;
103
egdanielec00d942015-09-14 12:56:10 -0700104 GrResourceProvider* resourceProvider = context->resourceProvider();
bsalomon02a44a42015-02-19 09:09:00 -0800105 // Test that two budgeted RTs with the same desc share a stencil buffer.
Brian Osman32342f02017-03-04 08:12:46 -0500106 sk_sp<GrTexture> smallRT0(resourceProvider->createTexture(smallDesc, SkBudgeted::kYes));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800107 if (smallRT0 && smallRT0->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700108 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800109 }
110
Brian Osman32342f02017-03-04 08:12:46 -0500111 sk_sp<GrTexture> smallRT1(resourceProvider->createTexture(smallDesc, SkBudgeted::kYes));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800112 if (smallRT1 && smallRT1->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700113 resourceProvider->attachStencilAttachment(smallRT1->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800114 }
115
egdaniel8dc7c3a2015-04-16 11:22:42 -0700116 REPORTER_ASSERT(reporter,
117 smallRT0 && smallRT1 &&
118 smallRT0->asRenderTarget() && smallRT1->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700119 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) ==
120 resourceProvider->attachStencilAttachment(smallRT1->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800121
122 // An unbudgeted RT with the same desc should also share.
Brian Osman32342f02017-03-04 08:12:46 -0500123 sk_sp<GrTexture> smallRT2(resourceProvider->createTexture(smallDesc, SkBudgeted::kNo));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800124 if (smallRT2 && smallRT2->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700125 resourceProvider->attachStencilAttachment(smallRT2->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800126 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700127 REPORTER_ASSERT(reporter,
128 smallRT0 && smallRT2 &&
129 smallRT0->asRenderTarget() && smallRT2->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700130 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) ==
131 resourceProvider->attachStencilAttachment(smallRT2->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800132
133 // An RT with a much larger size should not share.
134 GrSurfaceDesc bigDesc;
135 bigDesc.fFlags = kRenderTarget_GrSurfaceFlag;
Brian Osman777b5632016-10-14 09:16:21 -0400136 bigDesc.fConfig = kRGBA_8888_GrPixelConfig;
bsalomon02a44a42015-02-19 09:09:00 -0800137 bigDesc.fWidth = 400;
138 bigDesc.fHeight = 200;
139 bigDesc.fSampleCnt = 0;
Brian Osman32342f02017-03-04 08:12:46 -0500140 sk_sp<GrTexture> bigRT(resourceProvider->createTexture(bigDesc, SkBudgeted::kNo));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800141 if (bigRT && bigRT->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700142 resourceProvider->attachStencilAttachment(bigRT->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800143 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700144 REPORTER_ASSERT(reporter,
145 smallRT0 && bigRT &&
146 smallRT0->asRenderTarget() && bigRT->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700147 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) !=
148 resourceProvider->attachStencilAttachment(bigRT->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800149
bsalomon76228632015-05-29 08:02:10 -0700150 if (context->caps()->maxSampleCount() >= 4) {
mtklein5f939ab2016-03-16 10:28:35 -0700151 // An RT with a different sample count should not share.
bsalomon02a44a42015-02-19 09:09:00 -0800152 GrSurfaceDesc smallMSAADesc = smallDesc;
153 smallMSAADesc.fSampleCnt = 4;
Brian Osman32342f02017-03-04 08:12:46 -0500154 sk_sp<GrTexture> smallMSAART0(resourceProvider->createTexture(smallMSAADesc,
155 SkBudgeted::kNo));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800156 if (smallMSAART0 && smallMSAART0->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700157 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800158 }
bsalomonb602d4d2015-02-19 12:05:58 -0800159#ifdef SK_BUILD_FOR_ANDROID
160 if (!smallMSAART0) {
161 // The nexus player seems to fail to create MSAA textures.
162 return;
163 }
164#endif
bsalomon6bc1b5f2015-02-23 09:06:38 -0800165 REPORTER_ASSERT(reporter,
166 smallRT0 && smallMSAART0 &&
167 smallRT0->asRenderTarget() && smallMSAART0->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700168 resourceProvider->attachStencilAttachment(smallRT0->asRenderTarget()) !=
169 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800170 // A second MSAA RT should share with the first MSAA RT.
Brian Osman32342f02017-03-04 08:12:46 -0500171 sk_sp<GrTexture> smallMSAART1(resourceProvider->createTexture(smallMSAADesc,
172 SkBudgeted::kNo));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800173 if (smallMSAART1 && smallMSAART1->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700174 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800175 }
176 REPORTER_ASSERT(reporter,
177 smallMSAART0 && smallMSAART1 &&
178 smallMSAART0->asRenderTarget() &&
179 smallMSAART1->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700180 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget()) ==
181 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800182 // But not one with a larger sample count should not. (Also check that the request for 4
183 // samples didn't get rounded up to >= 8 or else they could share.).
bsalomon76228632015-05-29 08:02:10 -0700184 if (context->caps()->maxSampleCount() >= 8 &&
185 smallMSAART0 && smallMSAART0->asRenderTarget() &&
vbuzinovdded6962015-06-12 08:59:45 -0700186 smallMSAART0->asRenderTarget()->numColorSamples() < 8) {
bsalomon02a44a42015-02-19 09:09:00 -0800187 smallMSAADesc.fSampleCnt = 8;
Robert Phillipse78b7252017-04-06 07:59:41 -0400188 smallMSAART1 = resourceProvider->createTexture(smallMSAADesc, SkBudgeted::kNo);
Hal Canary342b7ac2016-11-04 11:49:42 -0400189 sk_sp<GrTexture> smallMSAART1(
Brian Osman32342f02017-03-04 08:12:46 -0500190 resourceProvider->createTexture(smallMSAADesc, SkBudgeted::kNo));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800191 if (smallMSAART1 && smallMSAART1->asRenderTarget()) {
egdanielec00d942015-09-14 12:56:10 -0700192 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget());
bsalomon6bc1b5f2015-02-23 09:06:38 -0800193 }
194 REPORTER_ASSERT(reporter,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700195 smallMSAART0 && smallMSAART1 &&
196 smallMSAART0->asRenderTarget() &&
197 smallMSAART1->asRenderTarget() &&
egdanielec00d942015-09-14 12:56:10 -0700198 resourceProvider->attachStencilAttachment(smallMSAART0->asRenderTarget()) !=
199 resourceProvider->attachStencilAttachment(smallMSAART1->asRenderTarget()));
bsalomon02a44a42015-02-19 09:09:00 -0800200 }
201 }
202}
203
bsalomon68d91342016-04-12 09:59:58 -0700204DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheWrappedResources, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700205 GrContext* context = ctxInfo.grContext();
bsalomone63ffef2016-02-05 07:17:34 -0800206 GrGpu* gpu = context->getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700207 // this test is only valid for GL
208 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700209 return;
210 }
211
Brian Osman766fcbb2017-03-13 09:33:09 -0400212 GrBackendObject texHandles[3];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700213 static const int kW = 100;
214 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700215
bsalomon091f60c2015-11-10 11:54:56 -0800216 texHandles[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
217 texHandles[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
Brian Osman766fcbb2017-03-13 09:33:09 -0400218 texHandles[2] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH, kRGBA_8888_GrPixelConfig);
jvanverth672bb7f2015-07-13 07:19:57 -0700219
bsalomon6dc6f5f2015-06-18 09:12:16 -0700220 context->resetContext();
221
Greg Daniel7ef28f32017-04-20 16:41:55 +0000222 GrBackendTexture backendTex1 = GrTest::CreateBackendTexture(context->contextPriv().getBackend(),
223 kW,
224 kH,
225 kRGBA_8888_GrPixelConfig,
226 texHandles[0]);
Brian Osman32342f02017-03-04 08:12:46 -0500227 sk_sp<GrTexture> borrowed(context->resourceProvider()->wrapBackendTexture(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000228 backendTex1, kTopLeft_GrSurfaceOrigin, kNone_GrBackendTextureFlag, 0,
229 kBorrow_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700230
Greg Daniel7ef28f32017-04-20 16:41:55 +0000231 GrBackendTexture backendTex2 = GrTest::CreateBackendTexture(context->contextPriv().getBackend(),
232 kW,
233 kH,
234 kRGBA_8888_GrPixelConfig,
235 texHandles[1]);
Brian Osman32342f02017-03-04 08:12:46 -0500236 sk_sp<GrTexture> adopted(context->resourceProvider()->wrapBackendTexture(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000237 backendTex2, kTopLeft_GrSurfaceOrigin, kNone_GrBackendTextureFlag, 0,
238 kAdopt_GrWrapOwnership));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700239
Greg Daniel7ef28f32017-04-20 16:41:55 +0000240 GrBackendTexture backendTex3 = GrTest::CreateBackendTexture(context->contextPriv().getBackend(),
241 kW,
242 kH,
243 kRGBA_8888_GrPixelConfig,
244 texHandles[2]);
Brian Osman766fcbb2017-03-13 09:33:09 -0400245 sk_sp<GrTexture> adoptedAndCached(context->resourceProvider()->wrapBackendTexture(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000246 backendTex3, kTopLeft_GrSurfaceOrigin, kNone_GrBackendTextureFlag, 0,
247 kAdoptAndCache_GrWrapOwnership));
Brian Osman766fcbb2017-03-13 09:33:09 -0400248
249 REPORTER_ASSERT(reporter, borrowed != nullptr && adopted != nullptr &&
250 adoptedAndCached != nullptr);
251 if (!borrowed || !adopted || !adoptedAndCached) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700252 return;
253 }
254
halcanary96fcdcc2015-08-27 07:41:13 -0700255 borrowed.reset(nullptr);
256 adopted.reset(nullptr);
Brian Osman766fcbb2017-03-13 09:33:09 -0400257 adoptedAndCached.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700258
259 context->flush();
260
bsalomon091f60c2015-11-10 11:54:56 -0800261 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(texHandles[0]);
262 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(texHandles[1]);
Brian Osman766fcbb2017-03-13 09:33:09 -0400263 bool adoptedAndCachedIsAlive = gpu->isTestingOnlyBackendTexture(texHandles[2]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700264
265 REPORTER_ASSERT(reporter, borrowedIsAlive);
266 REPORTER_ASSERT(reporter, !adoptedIsAlive);
Brian Osman766fcbb2017-03-13 09:33:09 -0400267 REPORTER_ASSERT(reporter, adoptedAndCachedIsAlive); // Still alive because it's in the cache
bsalomon6dc6f5f2015-06-18 09:12:16 -0700268
bsalomon67d76202015-11-11 12:40:42 -0800269 gpu->deleteTestingOnlyBackendTexture(texHandles[0], !borrowedIsAlive);
270 gpu->deleteTestingOnlyBackendTexture(texHandles[1], !adoptedIsAlive);
Brian Osman766fcbb2017-03-13 09:33:09 -0400271 // We can't delete texHandles[2] - we've given control of the lifetime to the context/cache
bsalomon6dc6f5f2015-06-18 09:12:16 -0700272
273 context->resetContext();
Brian Osman766fcbb2017-03-13 09:33:09 -0400274
275 // Purge the cache. This should force texHandles[2] to be deleted
276 context->getResourceCache()->purgeAllUnlocked();
277 adoptedAndCachedIsAlive = gpu->isTestingOnlyBackendTexture(texHandles[2]);
278 REPORTER_ASSERT(reporter, !adoptedAndCachedIsAlive);
279 gpu->deleteTestingOnlyBackendTexture(texHandles[2], !adoptedAndCachedIsAlive);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700280}
281
bsalomon6d3fe022014-07-25 08:35:45 -0700282class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800283 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000284public:
robertphillips6e83ac72015-08-13 05:19:14 -0700285 static const size_t kDefaultSize = 100;
mtklein5f939ab2016-03-16 10:28:35 -0700286
bsalomon1c60dfe2015-01-21 09:32:40 -0800287 /** Property that distinctly categorizes the resource.
288 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800289 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800290
kkinnunen2e6055b2016-04-22 01:48:29 -0700291 TestResource(GrGpu* gpu, SkBudgeted budgeted = SkBudgeted::kYes, size_t size = kDefaultSize)
292 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700293 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800294 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700295 , fProperty(kA_SimulatedProperty)
296 , fIsScratch(false) {
bsalomon5236cf42015-01-14 10:42:08 -0800297 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700298 this->registerWithCache(budgeted);
bsalomon5236cf42015-01-14 10:42:08 -0800299 }
300
kkinnunen2e6055b2016-04-22 01:48:29 -0700301 static TestResource* CreateScratch(GrGpu* gpu, SkBudgeted budgeted,
302 SimulatedProperty property) {
303 return new TestResource(gpu, budgeted, property, kScratchConstructor);
bsalomondace19e2014-11-17 07:34:06 -0800304 }
kkinnunen2e6055b2016-04-22 01:48:29 -0700305 static TestResource* CreateWrapped(GrGpu* gpu, size_t size = kDefaultSize) {
306 return new TestResource(gpu, size);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000307 }
308
Brian Salomond3b65972017-03-22 12:05:03 -0400309 ~TestResource() override {
bsalomon33435572014-11-05 14:47:41 -0800310 --fNumAlive;
bsalomon71cb0c22014-11-14 12:10:14 -0800311 SkSafeUnref(fToDelete);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000312 }
313
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000314 void setSize(size_t size) {
315 fSize = size;
316 this->didChangeGpuMemorySize();
317 }
318
bsalomon33435572014-11-05 14:47:41 -0800319 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000320
bsalomon71cb0c22014-11-14 12:10:14 -0800321 void setUnrefWhenDestroyed(TestResource* resource) {
322 SkRefCnt_SafeAssign(fToDelete, resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000323 }
324
bsalomon1c60dfe2015-01-21 09:32:40 -0800325 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
326 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
327 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800328 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
329 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800330 }
331 }
332
333 static size_t ExpectedScratchKeySize() {
334 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
335 }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000336private:
bsalomon24db3b12015-01-23 04:24:04 -0800337 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800338
kkinnunen2e6055b2016-04-22 01:48:29 -0700339 TestResource(GrGpu* gpu, SkBudgeted budgeted, SimulatedProperty property, ScratchConstructor)
340 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700341 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800342 , fSize(kDefaultSize)
kkinnunen2e6055b2016-04-22 01:48:29 -0700343 , fProperty(property)
344 , fIsScratch(true) {
bsalomon1c60dfe2015-01-21 09:32:40 -0800345 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700346 this->registerWithCache(budgeted);
347 }
348
349 // Constructor for simulating resources that wrap backend objects.
350 TestResource(GrGpu* gpu, size_t size)
351 : INHERITED(gpu)
352 , fToDelete(nullptr)
353 , fSize(size)
354 , fProperty(kA_SimulatedProperty)
355 , fIsScratch(false) {
356 ++fNumAlive;
357 this->registerWithCacheWrapped();
358 }
359
360 void computeScratchKey(GrScratchKey* key) const override {
361 if (fIsScratch) {
362 ComputeScratchKey(fProperty, key);
363 }
bsalomon1c60dfe2015-01-21 09:32:40 -0800364 }
365
mtklein36352bf2015-03-25 18:17:31 -0700366 size_t onGpuMemorySize() const override { return fSize; }
bsalomon69ed47f2014-11-12 11:13:39 -0800367
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000368 TestResource* fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000369 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800370 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800371 SimulatedProperty fProperty;
kkinnunen2e6055b2016-04-22 01:48:29 -0700372 bool fIsScratch;
bsalomon6d3fe022014-07-25 08:35:45 -0700373 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000374};
bsalomon33435572014-11-05 14:47:41 -0800375int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000376
bsalomonc2f35b72015-01-23 07:19:22 -0800377class Mock {
378public:
379 Mock(int maxCnt, size_t maxBytes) {
380 fContext.reset(GrContext::CreateMockContext());
381 SkASSERT(fContext);
382 fContext->setResourceCacheLimits(maxCnt, maxBytes);
bsalomon0ea80f42015-02-11 10:49:59 -0800383 GrResourceCache* cache = fContext->getResourceCache();
384 cache->purgeAllUnlocked();
385 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800386 }
bsalomonc2f35b72015-01-23 07:19:22 -0800387
bsalomon0ea80f42015-02-11 10:49:59 -0800388 GrResourceCache* cache() { return fContext->getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800389
Hal Canary342b7ac2016-11-04 11:49:42 -0400390 GrContext* context() { return fContext.get(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800391
392private:
Hal Canary342b7ac2016-11-04 11:49:42 -0400393 sk_sp<GrContext> fContext;
bsalomonc2f35b72015-01-23 07:19:22 -0800394};
395
396static void test_no_key(skiatest::Reporter* reporter) {
397 Mock mock(10, 30000);
398 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800399 GrResourceCache* cache = mock.cache();
bsalomon71cb0c22014-11-14 12:10:14 -0800400
401 // Create a bunch of resources with no keys
halcanary385fe4d2015-08-26 13:07:48 -0700402 TestResource* a = new TestResource(context->getGpu());
403 TestResource* b = new TestResource(context->getGpu());
404 TestResource* c = new TestResource(context->getGpu());
405 TestResource* d = new TestResource(context->getGpu());
bsalomon71cb0c22014-11-14 12:10:14 -0800406 a->setSize(11);
407 b->setSize(12);
408 c->setSize(13);
409 d->setSize(14);
410
411 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800412 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800413 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800414 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800415
416 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800417 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800418 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
419
bsalomon8718aaf2015-02-19 07:24:21 -0800420 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800421
422 a->unref();
423 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800424 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800425 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800426 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800427
428 c->unref();
429 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800430 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800431 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800432 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800433
434 d->unref();
435 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800436 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
437 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800438
439 b->unref();
440 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800441 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
442 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800443}
444
bsalomon24db3b12015-01-23 04:24:04 -0800445// Each integer passed as a template param creates a new domain.
Brian Salomon1090da62017-01-06 12:04:19 -0500446template <int>
447static void make_unique_key(GrUniqueKey* key, int data, const char* tag = nullptr) {
bsalomon8718aaf2015-02-19 07:24:21 -0800448 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
Brian Salomon1090da62017-01-06 12:04:19 -0500449 GrUniqueKey::Builder builder(key, d, 1, tag);
bsalomon24db3b12015-01-23 04:24:04 -0800450 builder[0] = data;
451}
452
bsalomon84c8e622014-11-17 09:33:27 -0800453static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800454 Mock mock(10, 300);
455 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800456 GrResourceCache* cache = mock.cache();
bsalomondace19e2014-11-17 07:34:06 -0800457
bsalomon8718aaf2015-02-19 07:24:21 -0800458 GrUniqueKey uniqueKey;
459 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800460
bsalomon8718aaf2015-02-19 07:24:21 -0800461 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800462 TestResource* scratch =
kkinnunen2e6055b2016-04-22 01:48:29 -0700463 TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes, TestResource::kB_SimulatedProperty);
bsalomondace19e2014-11-17 07:34:06 -0800464 scratch->setSize(10);
halcanary385fe4d2015-08-26 13:07:48 -0700465 TestResource* unique = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800466 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800467 unique->resourcePriv().setUniqueKey(uniqueKey);
kkinnunen2e6055b2016-04-22 01:48:29 -0700468 TestResource* wrapped = TestResource::CreateWrapped(context->getGpu());
bsalomon5236cf42015-01-14 10:42:08 -0800469 wrapped->setSize(12);
halcanary385fe4d2015-08-26 13:07:48 -0700470 TestResource* unbudgeted =
kkinnunen2e6055b2016-04-22 01:48:29 -0700471 new TestResource(context->getGpu(), SkBudgeted::kNo);
bsalomon84c8e622014-11-17 09:33:27 -0800472 unbudgeted->setSize(13);
bsalomondace19e2014-11-17 07:34:06 -0800473
bsalomon8718aaf2015-02-19 07:24:21 -0800474 // Make sure we can't add a unique key to the wrapped resource
475 GrUniqueKey uniqueKey2;
476 make_unique_key<0>(&uniqueKey2, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800477 wrapped->resourcePriv().setUniqueKey(uniqueKey2);
halcanary96fcdcc2015-08-27 07:41:13 -0700478 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefUniqueResource(uniqueKey2));
bsalomondace19e2014-11-17 07:34:06 -0800479
480 // Make sure sizes are as we expect
bsalomon0ea80f42015-02-11 10:49:59 -0800481 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800482 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800483 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800484 cache->getResourceBytes());
485 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800486 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800487 cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800488
bsalomon63c992f2015-01-23 12:47:59 -0800489 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800490 cache->purgeAllUnlocked();
491 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800492 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon84c8e622014-11-17 09:33:27 -0800493 wrapped->gpuMemorySize() + unbudgeted->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800494 cache->getResourceBytes());
495 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800496 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800497 cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800498
499 // Unreffing the wrapped resource should free it right away.
500 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800501 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800502 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800503 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800504
bsalomon84c8e622014-11-17 09:33:27 -0800505 // Now try freeing the budgeted resources first
kkinnunen2e6055b2016-04-22 01:48:29 -0700506 wrapped = TestResource::CreateWrapped(context->getGpu());
bsalomondace19e2014-11-17 07:34:06 -0800507 scratch->setSize(12);
bsalomon8718aaf2015-02-19 07:24:21 -0800508 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800509 cache->purgeAllUnlocked();
510 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800511 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrapped->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800512 unbudgeted->gpuMemorySize() == cache->getResourceBytes());
513 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
514 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800515
516 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800517 cache->purgeAllUnlocked();
518 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon84c8e622014-11-17 09:33:27 -0800519 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrapped->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800520 cache->getResourceBytes());
521 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
522 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800523
524 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800525 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
526 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
527 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
528 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800529
530 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800531 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
532 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
533 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
534 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomondace19e2014-11-17 07:34:06 -0800535}
536
bsalomon5236cf42015-01-14 10:42:08 -0800537static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800538 Mock mock(10, 30000);
539 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800540 GrResourceCache* cache = mock.cache();
bsalomon5236cf42015-01-14 10:42:08 -0800541
bsalomon8718aaf2015-02-19 07:24:21 -0800542 GrUniqueKey uniqueKey;
543 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800544
545 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800546 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800547 TestResource* wrapped;
548 TestResource* unbudgeted;
549
550 // A large uncached or wrapped resource shouldn't evict anything.
kkinnunen2e6055b2016-04-22 01:48:29 -0700551 scratch = TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes,
552 TestResource::kB_SimulatedProperty);
553
bsalomon5236cf42015-01-14 10:42:08 -0800554 scratch->setSize(10);
555 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800556 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
557 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
558 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
559 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800560
halcanary385fe4d2015-08-26 13:07:48 -0700561 unique = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -0800562 unique->setSize(11);
bsalomonf99e9612015-02-19 08:24:16 -0800563 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800564 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800565 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
566 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
567 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
568 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800569
bsalomon0ea80f42015-02-11 10:49:59 -0800570 size_t large = 2 * cache->getResourceBytes();
kkinnunen2e6055b2016-04-22 01:48:29 -0700571 unbudgeted = new TestResource(context->getGpu(), SkBudgeted::kNo, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800572 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
573 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
574 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
575 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800576
577 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800578 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
579 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
580 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
581 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800582
kkinnunen2e6055b2016-04-22 01:48:29 -0700583 wrapped = TestResource::CreateWrapped(context->getGpu(), large);
bsalomon0ea80f42015-02-11 10:49:59 -0800584 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
585 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
586 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
587 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800588
589 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800590 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
591 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
592 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
593 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800594
bsalomon0ea80f42015-02-11 10:49:59 -0800595 cache->purgeAllUnlocked();
596 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
597 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
598 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
599 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800600}
601
bsalomon3582d3e2015-02-13 14:20:05 -0800602// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
603void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
604/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800605 Mock mock(10, 300);
606 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800607 GrResourceCache* cache = mock.cache();
bsalomonc2f35b72015-01-23 07:19:22 -0800608
609 TestResource* resource =
kkinnunen2e6055b2016-04-22 01:48:29 -0700610 TestResource::CreateScratch(context->getGpu(), SkBudgeted::kNo,
611 TestResource::kA_SimulatedProperty);
bsalomonc2f35b72015-01-23 07:19:22 -0800612 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800613 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800614
615 size_t size = resource->gpuMemorySize();
616 for (int i = 0; i < 2; ++i) {
617 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800618 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800619 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800620 REPORTER_ASSERT(reporter, SkBudgeted::kNo == resource->resourcePriv().isBudgeted());
halcanary96fcdcc2015-08-27 07:41:13 -0700621 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomon0ea80f42015-02-11 10:49:59 -0800622 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
623 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
624 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
625 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800626
627 // Once it is unrefed, it should become available as scratch.
628 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800629 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
630 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
631 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
632 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
robertphillips6e83ac72015-08-13 05:19:14 -0700633 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, 0));
bsalomonc2f35b72015-01-23 07:19:22 -0800634 REPORTER_ASSERT(reporter, resource);
bsalomon3582d3e2015-02-13 14:20:05 -0800635 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800636 REPORTER_ASSERT(reporter, resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800637 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800638
639 if (0 == i) {
mtklein5f939ab2016-03-16 10:28:35 -0700640 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
bsalomonc2f35b72015-01-23 07:19:22 -0800641 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800642 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800643 } else {
644 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800645 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800646 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
647 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
648 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
649 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800650 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800651 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
bsalomon5ec26ae2016-02-25 08:33:02 -0800652 REPORTER_ASSERT(reporter, SkBudgeted::kYes == resource->resourcePriv().isBudgeted());
bsalomonc2f35b72015-01-23 07:19:22 -0800653
654 // now when it is unrefed it should die since it has no key.
655 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800656 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
657 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
658 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
659 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800660 }
bsalomon8b79d232014-11-10 10:19:06 -0800661 }
bsalomonc2f35b72015-01-23 07:19:22 -0800662}
663
664static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
665 Mock mock(5, 30000);
666 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800667 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800668
bsalomon8b79d232014-11-10 10:19:06 -0800669 // Create two resources that have the same scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800670 TestResource* a = TestResource::CreateScratch(context->getGpu(),
kkinnunen2e6055b2016-04-22 01:48:29 -0700671 SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800672 TestResource::kB_SimulatedProperty);
673 TestResource* b = TestResource::CreateScratch(context->getGpu(),
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();
bsalomon10e23ca2014-11-25 05:52:06 -0800715
bsalomon10e23ca2014-11-25 05:52:06 -0800716 // Create two resources that have the same scratch key.
kkinnunen2e6055b2016-04-22 01:48:29 -0700717 TestResource* a = TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800718 TestResource::kB_SimulatedProperty);
kkinnunen2e6055b2016-04-22 01:48:29 -0700719 TestResource* b = TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800720 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800721 a->unref();
722 b->unref();
723
bsalomon1c60dfe2015-01-21 09:32:40 -0800724 GrScratchKey scratchKey;
725 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800726 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800727 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700728 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800729
bsalomon0ea80f42015-02-11 10:49:59 -0800730 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800731 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800732 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800733 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
734 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800735
736 // Find the first resource and remove its scratch key
737 GrGpuResource* find;
robertphillips6e83ac72015-08-13 05:19:14 -0700738 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800739 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800740 // It's still alive, but not cached by scratch key anymore
741 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800742 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
743 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800744
745 // The cache should immediately delete it when it's unrefed since it isn't accessible.
746 find->unref();
747 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800748 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
749 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800750
751 // Repeat for the second resource.
robertphillips6e83ac72015-08-13 05:19:14 -0700752 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon3582d3e2015-02-13 14:20:05 -0800753 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800754 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800755 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
756 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800757
758 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800759 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800760 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800761 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
762 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800763
764 find->unref();
765 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800766 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
767 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800768}
769
bsalomon1c60dfe2015-01-21 09:32:40 -0800770static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800771 Mock mock(5, 30000);
772 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800773 GrResourceCache* cache = mock.cache();
bsalomon1c60dfe2015-01-21 09:32:40 -0800774
775 // Create two resources that have the same scratch key.
kkinnunen2e6055b2016-04-22 01:48:29 -0700776 TestResource* a = TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800777 TestResource::kB_SimulatedProperty);
kkinnunen2e6055b2016-04-22 01:48:29 -0700778 TestResource* b = TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800779 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800780 a->unref();
781 b->unref();
782
783 GrScratchKey scratchKey;
784 // Ensure that scratch key comparison and assignment is consistent.
785 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800786 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800787 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800788 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800789 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
790 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
791 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
792 scratchKey = scratchKey1;
793 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
794 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
795 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
796 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
797 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
798 scratchKey = scratchKey2;
799 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
800 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
801 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
802 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
803 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
804
805 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800806 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800807 // (following leaks upon test failure).
halcanary96fcdcc2015-08-27 07:41:13 -0700808 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800809
810 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800811 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700812 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700813 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800814 find->unref();
815
816 scratchKey2 = scratchKey;
robertphillips6e83ac72015-08-13 05:19:14 -0700817 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700818 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800819 REPORTER_ASSERT(reporter, find == a || find == b);
820
robertphillips6e83ac72015-08-13 05:19:14 -0700821 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700822 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800823 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
824 REPORTER_ASSERT(reporter, find2 != find);
825 find2->unref();
826 find->unref();
827}
828
bsalomon8718aaf2015-02-19 07:24:21 -0800829static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800830 Mock mock(5, 30000);
831 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800832 GrResourceCache* cache = mock.cache();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000833
bsalomon8718aaf2015-02-19 07:24:21 -0800834 GrUniqueKey key;
835 make_unique_key<0>(&key, 0);
mtklein5f939ab2016-03-16 10:28:35 -0700836
bsalomon8718aaf2015-02-19 07:24:21 -0800837 // Create two resources that we will attempt to register with the same unique key.
halcanary385fe4d2015-08-26 13:07:48 -0700838 TestResource* a = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -0800839 a->setSize(11);
mtklein5f939ab2016-03-16 10:28:35 -0700840
bsalomonf99e9612015-02-19 08:24:16 -0800841 // Set key on resource a.
842 a->resourcePriv().setUniqueKey(key);
843 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
844 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800845
bsalomonf99e9612015-02-19 08:24:16 -0800846 // Make sure that redundantly setting a's key works.
847 a->resourcePriv().setUniqueKey(key);
848 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800849 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800850 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
851 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800852 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
853
bsalomonf99e9612015-02-19 08:24:16 -0800854 // Create resource b and set the same key. It should replace a's unique key cache entry.
halcanary385fe4d2015-08-26 13:07:48 -0700855 TestResource* b = new TestResource(context->getGpu());
bsalomonf99e9612015-02-19 08:24:16 -0800856 b->setSize(12);
857 b->resourcePriv().setUniqueKey(key);
858 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
859 b->unref();
860
861 // Still have two resources because a is still reffed.
862 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
863 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
864 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
865
866 a->unref();
867 // Now a should be gone.
868 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
869 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
870 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
871
872 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
873 // Also make b be unreffed when replacement occurs.
874 b->unref();
halcanary385fe4d2015-08-26 13:07:48 -0700875 TestResource* c = new TestResource(context->getGpu());
bsalomonf99e9612015-02-19 08:24:16 -0800876 GrUniqueKey differentKey;
877 make_unique_key<0>(&differentKey, 1);
878 c->setSize(13);
879 c->resourcePriv().setUniqueKey(differentKey);
880 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
881 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
882 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
883 // c replaces b and b should be immediately purged.
884 c->resourcePriv().setUniqueKey(key);
885 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
886 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
887 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
888
889 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800890 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800891 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
892 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
893 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
894
895 // Drop the ref on c, it should be kept alive because it has a unique key.
896 c->unref();
897 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
898 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
899 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
900
901 // Verify that we can find c, then remove its unique key. It should get purged immediately.
902 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
903 c->resourcePriv().removeUniqueKey();
904 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800905 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
906 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -0800907 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -0700908
909 {
910 GrUniqueKey key2;
911 make_unique_key<0>(&key2, 0);
Hal Canary342b7ac2016-11-04 11:49:42 -0400912 sk_sp<TestResource> d(new TestResource(context->getGpu()));
senorblanco84cd6212015-08-04 10:01:58 -0700913 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -0700914 key2.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -0700915 d->resourcePriv().setUniqueKey(key2);
916 }
917
918 GrUniqueKey key3;
919 make_unique_key<0>(&key3, 0);
Hal Canary342b7ac2016-11-04 11:49:42 -0400920 sk_sp<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
senorblanco84cd6212015-08-04 10:01:58 -0700921 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000922}
923
bsalomon8b79d232014-11-10 10:19:06 -0800924static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800925 Mock mock(5, 30000);
926 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800927 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800928
bsalomon8718aaf2015-02-19 07:24:21 -0800929 GrUniqueKey key1, key2, key3;
930 make_unique_key<0>(&key1, 1);
931 make_unique_key<0>(&key2, 2);
932 make_unique_key<0>(&key3, 3);
mtklein5f939ab2016-03-16 10:28:35 -0700933
bsalomon23e619c2015-02-06 11:54:28 -0800934 // Add three resources to the cache. Only c is usable as scratch.
halcanary385fe4d2015-08-26 13:07:48 -0700935 TestResource* a = new TestResource(context->getGpu());
936 TestResource* b = new TestResource(context->getGpu());
kkinnunen2e6055b2016-04-22 01:48:29 -0700937 TestResource* c = TestResource::CreateScratch(context->getGpu(), SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800938 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -0800939 a->resourcePriv().setUniqueKey(key1);
940 b->resourcePriv().setUniqueKey(key2);
941 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -0800942 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -0800943 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -0800944 c->unref();
945
bsalomon8718aaf2015-02-19 07:24:21 -0800946 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
947 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
948 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800949 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -0800950
bsalomon8718aaf2015-02-19 07:24:21 -0800951 typedef GrUniqueKeyInvalidatedMessage Msg;
952 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -0800953
954 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
955 Bus::Post(Msg(key1));
956 Bus::Post(Msg(key2));
bsalomon0ea80f42015-02-11 10:49:59 -0800957 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800958 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -0800959 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
960 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -0800961 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800962 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -0800963
964 // Invalidate the third.
bsalomon23e619c2015-02-06 11:54:28 -0800965 Bus::Post(Msg(key3));
bsalomon0ea80f42015-02-11 10:49:59 -0800966 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800967 // we still have a ref on b, c should be recycled as scratch.
968 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -0800969 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -0800970
bsalomon23e619c2015-02-06 11:54:28 -0800971 // make b purgeable. It should be immediately deleted since it has no key.
972 b->unref();
973 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
974
975 // Make sure we actually get to c via it's scratch key, before we say goodbye.
976 GrScratchKey scratchKey;
977 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
robertphillips6e83ac72015-08-13 05:19:14 -0700978 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon23e619c2015-02-06 11:54:28 -0800979 REPORTER_ASSERT(reporter, scratch == c);
980 SkSafeUnref(scratch);
981
982 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -0800983 cache->purgeAllUnlocked();
robertphillips6e83ac72015-08-13 05:19:14 -0700984 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, 0);
bsalomon71cb0c22014-11-14 12:10:14 -0800985 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800986 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
987 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -0800988 REPORTER_ASSERT(reporter, !scratch);
989 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -0800990}
991
bsalomon71cb0c22014-11-14 12:10:14 -0800992static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800993 Mock mock(3, 30000);
994 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800995 GrResourceCache* cache = mock.cache();
bsalomon8b79d232014-11-10 10:19:06 -0800996
bsalomon8718aaf2015-02-19 07:24:21 -0800997 GrUniqueKey key1, key2;
998 make_unique_key<0>(&key1, 1);
999 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001000
halcanary385fe4d2015-08-26 13:07:48 -07001001 TestResource* a = new TestResource(context->getGpu());
1002 TestResource* b = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001003 a->resourcePriv().setUniqueKey(key1);
1004 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -08001005
bsalomonc2f35b72015-01-23 07:19:22 -08001006 // Make a cycle
1007 a->setUnrefWhenDestroyed(b);
1008 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -08001009
bsalomonc2f35b72015-01-23 07:19:22 -08001010 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001011
bsalomonc2f35b72015-01-23 07:19:22 -08001012 a->unref();
1013 b->unref();
bsalomon8b79d232014-11-10 10:19:06 -08001014
bsalomonc2f35b72015-01-23 07:19:22 -08001015 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001016
bsalomon0ea80f42015-02-11 10:49:59 -08001017 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001018 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001019
bsalomonc2f35b72015-01-23 07:19:22 -08001020 // Break the cycle
halcanary96fcdcc2015-08-27 07:41:13 -07001021 a->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -08001022 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001023
bsalomon0ea80f42015-02-11 10:49:59 -08001024 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001025 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001026}
1027
bsalomon8b79d232014-11-10 10:19:06 -08001028static void test_resource_size_changed(skiatest::Reporter* reporter) {
bsalomon8718aaf2015-02-19 07:24:21 -08001029 GrUniqueKey key1, key2;
1030 make_unique_key<0>(&key1, 1);
1031 make_unique_key<0>(&key2, 2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001032
1033 // Test changing resources sizes (both increase & decrease).
1034 {
bsalomonc2f35b72015-01-23 07:19:22 -08001035 Mock mock(3, 30000);
1036 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001037 GrResourceCache* cache = mock.cache();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001038
halcanary385fe4d2015-08-26 13:07:48 -07001039 TestResource* a = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001040 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001041 a->unref();
1042
halcanary385fe4d2015-08-26 13:07:48 -07001043 TestResource* b = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001044 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001045 b->unref();
1046
bsalomon0ea80f42015-02-11 10:49:59 -08001047 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1048 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -08001049 {
Hal Canary342b7ac2016-11-04 11:49:42 -04001050 sk_sp<TestResource> find2(
bsalomon8718aaf2015-02-19 07:24:21 -08001051 static_cast<TestResource*>(cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001052 find2->setSize(200);
Hal Canary342b7ac2016-11-04 11:49:42 -04001053 sk_sp<TestResource> find1(
bsalomon8718aaf2015-02-19 07:24:21 -08001054 static_cast<TestResource*>(cache->findAndRefUniqueResource(key1)));
bsalomon8b79d232014-11-10 10:19:06 -08001055 find1->setSize(50);
1056 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001057
bsalomon0ea80f42015-02-11 10:49:59 -08001058 REPORTER_ASSERT(reporter, 250 == cache->getResourceBytes());
1059 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001060 }
1061
1062 // Test increasing a resources size beyond the cache budget.
1063 {
bsalomonc2f35b72015-01-23 07:19:22 -08001064 Mock mock(2, 300);
1065 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001066 GrResourceCache* cache = mock.cache();
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001067
halcanary385fe4d2015-08-26 13:07:48 -07001068 TestResource* a = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -08001069 a->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001070 a->resourcePriv().setUniqueKey(key1);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001071 a->unref();
1072
halcanary385fe4d2015-08-26 13:07:48 -07001073 TestResource* b = new TestResource(context->getGpu());
bsalomon8b79d232014-11-10 10:19:06 -08001074 b->setSize(100);
bsalomon8718aaf2015-02-19 07:24:21 -08001075 b->resourcePriv().setUniqueKey(key2);
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001076 b->unref();
1077
bsalomon0ea80f42015-02-11 10:49:59 -08001078 REPORTER_ASSERT(reporter, 200 == cache->getResourceBytes());
1079 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001080
bsalomon8b79d232014-11-10 10:19:06 -08001081 {
Hal Canary342b7ac2016-11-04 11:49:42 -04001082 sk_sp<TestResource> find2(static_cast<TestResource*>(
bsalomon8718aaf2015-02-19 07:24:21 -08001083 cache->findAndRefUniqueResource(key2)));
bsalomon8b79d232014-11-10 10:19:06 -08001084 find2->setSize(201);
1085 }
bsalomon8718aaf2015-02-19 07:24:21 -08001086 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001087
bsalomon0ea80f42015-02-11 10:49:59 -08001088 REPORTER_ASSERT(reporter, 201 == cache->getResourceBytes());
1089 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001090 }
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +00001091}
1092
bsalomonddf30e62015-02-19 11:38:44 -08001093static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1094 static const int kCount = 50;
1095 static const int kBudgetCnt = kCount / 2;
1096 static const int kLockedFreq = 8;
1097 static const int kBudgetSize = 0x80000000;
1098
1099 SkRandom random;
1100
1101 // Run the test 2*kCount times;
1102 for (int i = 0; i < 2 * kCount; ++i ) {
1103 Mock mock(kBudgetCnt, kBudgetSize);
1104 GrContext* context = mock.context();
1105 GrResourceCache* cache = mock.cache();
1106
1107 // Pick a random number of resources to add before the timestamp will wrap.
1108 cache->changeTimestamp(SK_MaxU32 - random.nextULessThan(kCount + 1));
1109
1110 static const int kNumToPurge = kCount - kBudgetCnt;
1111
1112 SkTDArray<int> shouldPurgeIdxs;
1113 int purgeableCnt = 0;
1114 SkTDArray<GrGpuResource*> resourcesToUnref;
1115
1116 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1117 // unpurgeable resources.
1118 for (int j = 0; j < kCount; ++j) {
1119 GrUniqueKey key;
1120 make_unique_key<0>(&key, j);
1121
halcanary385fe4d2015-08-26 13:07:48 -07001122 TestResource* r = new TestResource(context->getGpu());
bsalomonddf30e62015-02-19 11:38:44 -08001123 r->resourcePriv().setUniqueKey(key);
1124 if (random.nextU() % kLockedFreq) {
1125 // Make this is purgeable.
1126 r->unref();
1127 ++purgeableCnt;
1128 if (purgeableCnt <= kNumToPurge) {
1129 *shouldPurgeIdxs.append() = j;
1130 }
1131 } else {
1132 *resourcesToUnref.append() = r;
1133 }
1134 }
1135
1136 // Verify that the correct resources were purged.
1137 int currShouldPurgeIdx = 0;
1138 for (int j = 0; j < kCount; ++j) {
1139 GrUniqueKey key;
1140 make_unique_key<0>(&key, j);
1141 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1142 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1143 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1144 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001145 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001146 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001147 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001148 }
1149 SkSafeUnref(res);
1150 }
1151
1152 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1153 resourcesToUnref[j]->unref();
1154 }
1155 }
1156}
1157
bsalomon3f324322015-04-08 11:01:54 -07001158static void test_flush(skiatest::Reporter* reporter) {
1159 Mock mock(1000000, 1000000);
1160 GrContext* context = mock.context();
1161 GrResourceCache* cache = mock.cache();
1162
1163 // The current cache impl will round the max flush count to the next power of 2. So we choose a
1164 // power of two here to keep things simpler.
1165 static const int kFlushCount = 16;
1166 cache->setLimits(1000000, 1000000, kFlushCount);
1167
1168 {
1169 // Insert a resource and send a flush notification kFlushCount times.
1170 for (int i = 0; i < kFlushCount; ++i) {
halcanary385fe4d2015-08-26 13:07:48 -07001171 TestResource* r = new TestResource(context->getGpu());
bsalomon3f324322015-04-08 11:01:54 -07001172 GrUniqueKey k;
1173 make_unique_key<1>(&k, i);
1174 r->resourcePriv().setUniqueKey(k);
1175 r->unref();
bsalomonb77a9072016-09-07 10:02:04 -07001176 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001177 }
1178
1179 // Send flush notifications to the cache. Each flush should purge the oldest resource.
bsalomone2e87f32016-09-22 12:42:11 -07001180 for (int i = 0; i < kFlushCount; ++i) {
1181 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001182 REPORTER_ASSERT(reporter, kFlushCount - i - 1 == cache->getResourceCount());
1183 for (int j = 0; j < i; ++j) {
1184 GrUniqueKey k;
1185 make_unique_key<1>(&k, j);
1186 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1187 REPORTER_ASSERT(reporter, !SkToBool(r));
1188 SkSafeUnref(r);
1189 }
bsalomon3f324322015-04-08 11:01:54 -07001190 }
1191
1192 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1193 cache->purgeAllUnlocked();
1194 }
1195
1196 // Do a similar test but where we leave refs on some resources to prevent them from being
1197 // purged.
1198 {
1199 GrGpuResource* refedResources[kFlushCount >> 1];
1200 for (int i = 0; i < kFlushCount; ++i) {
halcanary385fe4d2015-08-26 13:07:48 -07001201 TestResource* r = new TestResource(context->getGpu());
bsalomon3f324322015-04-08 11:01:54 -07001202 GrUniqueKey k;
1203 make_unique_key<1>(&k, i);
1204 r->resourcePriv().setUniqueKey(k);
1205 // Leave a ref on every other resource, beginning with the first.
1206 if (SkToBool(i & 0x1)) {
1207 refedResources[i/2] = r;
1208 } else {
1209 r->unref();
1210 }
bsalomonb77a9072016-09-07 10:02:04 -07001211 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001212 }
1213
1214 for (int i = 0; i < kFlushCount; ++i) {
1215 // Should get a resource purged every other flush.
bsalomonb77a9072016-09-07 10:02:04 -07001216 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomone2e87f32016-09-22 12:42:11 -07001217 REPORTER_ASSERT(reporter, kFlushCount - i/2 - 1 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001218 }
1219
1220 // Unref all the resources that we kept refs on in the first loop.
1221 for (int i = 0; i < kFlushCount >> 1; ++i) {
1222 refedResources[i]->unref();
1223 }
1224
bsalomone2e87f32016-09-22 12:42:11 -07001225 // After kFlushCount + 1 flushes they all will have sat in the purgeable queue for
1226 // kFlushCount full flushes.
1227 for (int i = 0; i < kFlushCount + 1; ++i) {
bsalomon3f324322015-04-08 11:01:54 -07001228 REPORTER_ASSERT(reporter, kFlushCount >> 1 == cache->getResourceCount());
bsalomonb77a9072016-09-07 10:02:04 -07001229 cache->notifyFlushOccurred(GrResourceCache::kExternal);
bsalomon3f324322015-04-08 11:01:54 -07001230 }
1231 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1232
1233 cache->purgeAllUnlocked();
1234 }
1235
1236 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomondc438982016-08-31 11:53:49 -07001237
1238 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1239 // eviction.
1240 context->flush();
1241 for (int i = 0; i < 10; ++i) {
1242 TestResource* r = new TestResource(context->getGpu());
1243 GrUniqueKey k;
1244 make_unique_key<1>(&k, i);
1245 r->resourcePriv().setUniqueKey(k);
1246 r->unref();
1247 }
1248 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1249 for (int i = 0; i < 10 * kFlushCount; ++i) {
1250 context->flush();
1251 }
1252 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
bsalomon3f324322015-04-08 11:01:54 -07001253}
1254
Brian Salomon5e150852017-03-22 14:53:13 -04001255static void test_time_purge(skiatest::Reporter* reporter) {
1256 Mock mock(1000000, 1000000);
1257 GrContext* context = mock.context();
1258 GrResourceCache* cache = mock.cache();
1259
1260 static constexpr int kCnts[] = {1, 10, 1024};
1261 auto nowish = []() {
1262 // We sleep so that we ensure we get a value that is greater than the last call to
1263 // GrStdSteadyClock::now().
1264 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1265 auto result = GrStdSteadyClock::now();
1266 // Also sleep afterwards so we don't get this value again.
1267 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1268 return result;
1269 };
1270
1271 for (int cnt : kCnts) {
1272 std::unique_ptr<GrStdSteadyClock::time_point[]> timeStamps(
1273 new GrStdSteadyClock::time_point[cnt]);
1274 {
1275 // Insert resources and get time points between each addition.
1276 for (int i = 0; i < cnt; ++i) {
1277 TestResource* r = new TestResource(context->getGpu());
1278 GrUniqueKey k;
1279 make_unique_key<1>(&k, i);
1280 r->resourcePriv().setUniqueKey(k);
1281 r->unref();
1282 timeStamps.get()[i] = nowish();
1283 }
1284
1285 // Purge based on the time points between resource additions. Each purge should remove
1286 // the oldest resource.
1287 for (int i = 0; i < cnt; ++i) {
1288 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1289 REPORTER_ASSERT(reporter, cnt - i - 1 == cache->getResourceCount());
1290 for (int j = 0; j < i; ++j) {
1291 GrUniqueKey k;
1292 make_unique_key<1>(&k, j);
1293 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1294 REPORTER_ASSERT(reporter, !SkToBool(r));
1295 SkSafeUnref(r);
1296 }
1297 }
1298
1299 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1300 cache->purgeAllUnlocked();
1301 }
1302
1303 // Do a similar test but where we leave refs on some resources to prevent them from being
1304 // purged.
1305 {
1306 std::unique_ptr<GrGpuResource* []> refedResources(new GrGpuResource*[cnt / 2]);
1307 for (int i = 0; i < cnt; ++i) {
1308 TestResource* r = new TestResource(context->getGpu());
1309 GrUniqueKey k;
1310 make_unique_key<1>(&k, i);
1311 r->resourcePriv().setUniqueKey(k);
1312 // Leave a ref on every other resource, beginning with the first.
1313 if (SkToBool(i & 0x1)) {
1314 refedResources.get()[i / 2] = r;
1315 } else {
1316 r->unref();
1317 }
1318 timeStamps.get()[i] = nowish();
1319 }
1320
1321 for (int i = 0; i < cnt; ++i) {
1322 // Should get a resource purged every other frame.
1323 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1324 REPORTER_ASSERT(reporter, cnt - i / 2 - 1 == cache->getResourceCount());
1325 }
1326
1327 // Unref all the resources that we kept refs on in the first loop.
1328 for (int i = 0; i < (cnt / 2); ++i) {
1329 refedResources.get()[i]->unref();
1330 cache->purgeResourcesNotUsedSince(nowish());
1331 REPORTER_ASSERT(reporter, cnt / 2 - i - 1 == cache->getResourceCount());
1332 }
1333
1334 cache->purgeAllUnlocked();
1335 }
1336
1337 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1338
1339 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1340 // eviction
1341 context->flush();
1342 for (int i = 0; i < 10; ++i) {
1343 TestResource* r = new TestResource(context->getGpu());
1344 GrUniqueKey k;
1345 make_unique_key<1>(&k, i);
1346 r->resourcePriv().setUniqueKey(k);
1347 r->unref();
1348 }
1349 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1350 context->flush();
1351 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1352 cache->purgeResourcesNotUsedSince(nowish());
1353 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1354 }
1355}
1356
bsalomon10e23ca2014-11-25 05:52:06 -08001357static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001358 // Set the cache size to double the resource count because we're going to create 2x that number
1359 // resources, using two different key domains. Add a little slop to the bytes because we resize
1360 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001361 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001362
bsalomonc2f35b72015-01-23 07:19:22 -08001363 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1364 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001365 GrResourceCache* cache = mock.cache();
bsalomon10e23ca2014-11-25 05:52:06 -08001366
1367 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001368 GrUniqueKey key1, key2;
1369 make_unique_key<1>(&key1, i);
1370 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001371
bsalomon24db3b12015-01-23 04:24:04 -08001372 TestResource* resource;
1373
halcanary385fe4d2015-08-26 13:07:48 -07001374 resource = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001375 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001376 resource->setSize(1);
1377 resource->unref();
1378
halcanary385fe4d2015-08-26 13:07:48 -07001379 resource = new TestResource(context->getGpu());
bsalomon8718aaf2015-02-19 07:24:21 -08001380 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001381 resource->setSize(1);
1382 resource->unref();
1383 }
1384
1385 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001386 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1387 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1388 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1389 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001390 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001391 GrUniqueKey key1, key2;
1392 make_unique_key<1>(&key1, i);
1393 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001394
bsalomon8718aaf2015-02-19 07:24:21 -08001395 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1396 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001397 }
1398
bsalomon0ea80f42015-02-11 10:49:59 -08001399 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001400 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001401 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1402 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1403 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1404 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001405
1406 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001407 GrUniqueKey key1, key2;
1408 make_unique_key<1>(&key1, i);
1409 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001410
bsalomon8718aaf2015-02-19 07:24:21 -08001411 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1412 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001413 }
1414}
1415
senorblanco84cd6212015-08-04 10:01:58 -07001416static void test_custom_data(skiatest::Reporter* reporter) {
1417 GrUniqueKey key1, key2;
1418 make_unique_key<0>(&key1, 1);
1419 make_unique_key<0>(&key2, 2);
1420 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -07001421 key1.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -07001422 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1423 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1424
1425 // Test that copying a key also takes a ref on its custom data.
1426 GrUniqueKey key3 = key1;
1427 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1428}
1429
bsalomonc6363ef2015-09-24 07:07:40 -07001430static void test_abandoned(skiatest::Reporter* reporter) {
1431 Mock mock(10, 300);
1432 GrContext* context = mock.context();
Hal Canary342b7ac2016-11-04 11:49:42 -04001433 sk_sp<GrGpuResource> resource(new TestResource(context->getGpu()));
bsalomonc6363ef2015-09-24 07:07:40 -07001434 context->abandonContext();
1435
1436 REPORTER_ASSERT(reporter, resource->wasDestroyed());
1437
1438 // Call all the public methods on resource in the abandoned state. They shouldn't crash.
1439
robertphillips8abb3702016-08-31 14:04:06 -07001440 resource->uniqueID();
bsalomonc6363ef2015-09-24 07:07:40 -07001441 resource->getUniqueKey();
1442 resource->wasDestroyed();
1443 resource->gpuMemorySize();
1444 resource->getContext();
1445
1446 resource->abandon();
1447 resource->resourcePriv().getScratchKey();
1448 resource->resourcePriv().isBudgeted();
1449 resource->resourcePriv().makeBudgeted();
1450 resource->resourcePriv().makeUnbudgeted();
1451 resource->resourcePriv().removeScratchKey();
1452 GrUniqueKey key;
1453 make_unique_key<0>(&key, 1);
1454 resource->resourcePriv().setUniqueKey(key);
1455 resource->resourcePriv().removeUniqueKey();
1456}
1457
Brian Salomon1090da62017-01-06 12:04:19 -05001458static void test_tags(skiatest::Reporter* reporter) {
1459#ifdef SK_DEBUG
1460 // We will insert 1 resource with tag "tag1", 2 with "tag2", and so on, up through kLastTagIdx.
1461 static constexpr int kLastTagIdx = 10;
1462 static constexpr int kNumResources = kLastTagIdx * (kLastTagIdx + 1) / 2;
1463
1464 Mock mock(kNumResources, kNumResources * TestResource::kDefaultSize);
1465 GrContext* context = mock.context();
1466 GrResourceCache* cache = mock.cache();
1467
1468 SkString tagStr;
1469 int tagIdx = 0;
1470 int currTagCnt = 0;
1471
1472 for (int i = 0; i < kNumResources; ++i, ++currTagCnt) {
1473 sk_sp<GrGpuResource> resource(new TestResource(context->getGpu()));
1474 GrUniqueKey key;
1475 if (currTagCnt == tagIdx) {
1476 tagIdx += 1;
1477 currTagCnt = 0;
1478 tagStr.printf("tag%d", tagIdx);
1479 }
1480 make_unique_key<1>(&key, i, tagStr.c_str());
1481 resource->resourcePriv().setUniqueKey(key);
1482 }
1483 SkASSERT(kLastTagIdx == tagIdx);
1484 SkASSERT(currTagCnt == kLastTagIdx);
1485
1486 // Test i = 0 to exercise unused tag string.
1487 for (int i = 0; i <= kLastTagIdx; ++i) {
1488 tagStr.printf("tag%d", i);
1489 REPORTER_ASSERT(reporter, cache->countUniqueKeysWithTag(tagStr.c_str()) == i);
1490 }
1491#endif
1492}
1493
kkinnunen15302832015-12-01 04:35:26 -08001494DEF_GPUTEST(ResourceCacheMisc, reporter, factory) {
bsalomon8b79d232014-11-10 10:19:06 -08001495 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001496 test_no_key(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001497 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001498 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001499 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001500 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001501 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001502 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001503 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001504 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001505 test_cache_chained_purge(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001506 test_resource_size_changed(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001507 test_timestamp_wrap(reporter);
bsalomon3f324322015-04-08 11:01:54 -07001508 test_flush(reporter);
Brian Salomon5e150852017-03-22 14:53:13 -04001509 test_time_purge(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001510 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001511 test_custom_data(reporter);
bsalomonc6363ef2015-09-24 07:07:40 -07001512 test_abandoned(reporter);
Brian Salomon1090da62017-01-06 12:04:19 -05001513 test_tags(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001514}
1515
Robert Phillipsd6214d42016-11-07 08:23:48 -05001516////////////////////////////////////////////////////////////////////////////////
Brian Osman32342f02017-03-04 08:12:46 -05001517static sk_sp<GrTexture> make_normal_texture(GrResourceProvider* provider,
Robert Phillipsd6214d42016-11-07 08:23:48 -05001518 GrSurfaceFlags flags,
1519 int width, int height,
1520 int sampleCnt) {
1521 GrSurfaceDesc desc;
1522 desc.fFlags = flags;
1523 desc.fWidth = width;
1524 desc.fHeight = height;
1525 desc.fConfig = kRGBA_8888_GrPixelConfig;
1526 desc.fSampleCnt = sampleCnt;
1527
Robert Phillipse78b7252017-04-06 07:59:41 -04001528 return provider->createTexture(desc, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001529}
1530
Robert Phillipse78b7252017-04-06 07:59:41 -04001531static sk_sp<GrTextureProxy> make_mipmap_proxy(GrResourceProvider* provider,
1532 GrSurfaceFlags flags,
1533 int width, int height,
1534 int sampleCnt) {
Robert Phillipsd6214d42016-11-07 08:23:48 -05001535 SkBitmap bm;
1536
1537 bm.allocN32Pixels(width, height, true);
1538 bm.eraseColor(SK_ColorBLUE);
1539
Brian Osman7b8400d2016-11-08 17:08:54 -05001540 sk_sp<SkMipMap> mipmaps(SkMipMap::Build(bm, SkDestinationSurfaceColorMode::kLegacy, nullptr));
Robert Phillipsd6214d42016-11-07 08:23:48 -05001541 SkASSERT(mipmaps);
1542 SkASSERT(mipmaps->countLevels() > 1);
1543
1544 int mipLevelCount = mipmaps->countLevels() + 1;
1545
1546 std::unique_ptr<GrMipLevel[]> texels(new GrMipLevel[mipLevelCount]);
1547
1548 texels[0].fPixels = bm.getPixels();
1549 texels[0].fRowBytes = bm.rowBytes();
1550
1551 for (int i = 1; i < mipLevelCount; ++i) {
1552 SkMipMap::Level generatedMipLevel;
1553 mipmaps->getLevel(i - 1, &generatedMipLevel);
1554 texels[i].fPixels = generatedMipLevel.fPixmap.addr();
1555 texels[i].fRowBytes = generatedMipLevel.fPixmap.rowBytes();
1556 }
1557
1558 GrSurfaceDesc desc;
1559 desc.fFlags = flags;
1560 desc.fWidth = width;
1561 desc.fHeight = height;
1562 desc.fConfig = kRGBA_8888_GrPixelConfig;
1563 desc.fSampleCnt = sampleCnt;
1564 desc.fIsMipMapped = true;
1565
Robert Phillipse78b7252017-04-06 07:59:41 -04001566 return provider->createMipMappedTexture(desc, SkBudgeted::kYes, texels.get(), mipLevelCount);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001567}
1568
1569// Exercise GrSurface::gpuMemorySize for different combos of MSAA, RT-only,
1570// Texture-only, both-RT-and-Texture and MIPmapped
1571DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GPUMemorySize, reporter, ctxInfo) {
1572 GrContext* context = ctxInfo.grContext();
Brian Osman32342f02017-03-04 08:12:46 -05001573 GrResourceProvider* provider = context->resourceProvider();
Robert Phillipsd6214d42016-11-07 08:23:48 -05001574
Robert Phillipsd6214d42016-11-07 08:23:48 -05001575 static const int kSize = 64;
1576
Robert Phillipsd6214d42016-11-07 08:23:48 -05001577 // Normal versions
Robert Phillipse78b7252017-04-06 07:59:41 -04001578 {
1579 sk_sp<GrTexture> tex;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001580
Robert Phillipse78b7252017-04-06 07:59:41 -04001581 tex = make_normal_texture(provider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 0);
1582 size_t size = tex->gpuMemorySize();
1583 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
1584
1585 if (context->caps()->maxSampleCount() >= 4) {
1586 tex = make_normal_texture(provider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 4);
1587 size = tex->gpuMemorySize();
1588 REPORTER_ASSERT(reporter, kSize*kSize*4 == size || // msaa4 failed
1589 kSize*kSize*4*4 == size || // auto-resolving
1590 kSize*kSize*4*5 == size); // explicit resolve buffer
1591 }
1592
1593 tex = make_normal_texture(provider, kNone_GrSurfaceFlags, kSize, kSize, 0);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001594 size = tex->gpuMemorySize();
Robert Phillipse78b7252017-04-06 07:59:41 -04001595 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001596 }
1597
Robert Phillipsd6214d42016-11-07 08:23:48 -05001598
1599 // Mipmapped versions
Robert Phillipse78b7252017-04-06 07:59:41 -04001600 {
1601 sk_sp<GrTextureProxy> proxy;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001602
Robert Phillipse78b7252017-04-06 07:59:41 -04001603 proxy = make_mipmap_proxy(provider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 0);
1604 size_t size = proxy->gpuMemorySize();
1605 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1606
1607 if (context->caps()->maxSampleCount() >= 4) {
1608 proxy = make_mipmap_proxy(provider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 4);
1609 size = proxy->gpuMemorySize();
1610 REPORTER_ASSERT(reporter,
Robert Phillipsd6214d42016-11-07 08:23:48 -05001611 kSize*kSize*4+(kSize*kSize*4)/3 == size || // msaa4 failed
1612 kSize*kSize*4*4+(kSize*kSize*4)/3 == size || // auto-resolving
1613 kSize*kSize*4*5+(kSize*kSize*4)/3 == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001614 }
Robert Phillips1b352562017-04-05 18:56:21 +00001615
Robert Phillipse78b7252017-04-06 07:59:41 -04001616 proxy = make_mipmap_proxy(provider, kNone_GrSurfaceFlags, kSize, kSize, 0);
1617 size = proxy->gpuMemorySize();
1618 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1619 }
Robert Phillipsd6214d42016-11-07 08:23:48 -05001620}
1621
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001622#endif