blob: ca5aadd4066c50fa225cd2d313246f2364d6834d [file] [log] [blame]
Robert Phillipsae7d3f32017-09-21 08:26:08 -04001/*
2 * Copyright 2017 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
8// This is a GPU-backend specific test.
9
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "tests/Test.h"
Robert Phillipsae7d3f32017-09-21 08:26:08 -040011
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/gpu/GrBackendSurface.h"
13#include "include/gpu/GrTexture.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/gpu/GrContextPriv.h"
15#include "src/gpu/GrProxyProvider.h"
16#include "src/gpu/GrResourceCache.h"
17#include "src/gpu/GrResourceProvider.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040018#include "src/gpu/GrTextureProxy.h"
Robert Phillipsae7d3f32017-09-21 08:26:08 -040019
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "include/core/SkImage.h"
21#include "src/gpu/SkGr.h"
Robert Phillipsae7d3f32017-09-21 08:26:08 -040022
Robert Phillips1afd4cd2018-01-08 13:40:32 -050023int GrProxyProvider::numUniqueKeyProxies_TestOnly() const {
Robert Phillipsae7d3f32017-09-21 08:26:08 -040024 return fUniquelyKeyedProxies.count();
25}
26
Brian Salomon4eb38b72019-08-05 12:58:39 -040027static constexpr auto kColorType = GrColorType::kRGBA_8888;
28static constexpr auto kSize = SkISize::Make(64, 64);
Brian Salomonf2c2ba92019-07-17 09:59:59 -040029static GrSurfaceDesc make_desc() {
Robert Phillipsae7d3f32017-09-21 08:26:08 -040030 GrSurfaceDesc desc;
Brian Salomon4eb38b72019-08-05 12:58:39 -040031 desc.fWidth = kSize.width();
32 desc.fHeight = kSize.height();
33 desc.fConfig = GrColorTypeToPixelConfig(kColorType);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040034 return desc;
35}
36
37///////////////////////////////////////////////////////////////////////////////////////////////////
38// Basic test
39
Greg Daniel4065d452018-11-16 15:43:41 -050040static sk_sp<GrTextureProxy> deferred_tex(skiatest::Reporter* reporter, GrContext* ctx,
Robert Phillipsadbe1322018-01-17 13:35:46 -050041 GrProxyProvider* proxyProvider, SkBackingFit fit) {
Robert Phillips0a15cc62019-07-30 12:49:10 -040042 const GrCaps* caps = ctx->priv().caps();
43
Brian Salomonf2c2ba92019-07-17 09:59:59 -040044 const GrSurfaceDesc desc = make_desc();
Brian Salomon4eb38b72019-08-05 12:58:39 -040045 GrBackendFormat format = caps->getDefaultBackendFormat(kColorType, GrRenderable::kNo);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040046
Brian Salomonbeb7f522019-08-30 16:19:42 -040047 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(
48 format, desc, GrRenderable::kNo, 1, kBottomLeft_GrSurfaceOrigin, GrMipMapped::kNo, fit,
49 SkBudgeted::kYes, GrProtected::kNo);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040050 // Only budgeted & wrapped external proxies get to carry uniqueKeys
Greg Danielcd871402017-09-26 12:49:26 -040051 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid());
52 return proxy;
Robert Phillipsae7d3f32017-09-21 08:26:08 -040053}
54
Greg Daniel4065d452018-11-16 15:43:41 -050055static sk_sp<GrTextureProxy> deferred_texRT(skiatest::Reporter* reporter, GrContext* ctx,
Robert Phillipsadbe1322018-01-17 13:35:46 -050056 GrProxyProvider* proxyProvider, SkBackingFit fit) {
Robert Phillips0a15cc62019-07-30 12:49:10 -040057 const GrCaps* caps = ctx->priv().caps();
58
Brian Salomonf2c2ba92019-07-17 09:59:59 -040059 const GrSurfaceDesc desc = make_desc();
Robert Phillips0a15cc62019-07-30 12:49:10 -040060
Brian Salomon4eb38b72019-08-05 12:58:39 -040061 GrBackendFormat format = caps->getDefaultBackendFormat(kColorType, GrRenderable::kYes);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040062
Brian Salomonbeb7f522019-08-30 16:19:42 -040063 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(
64 format, desc, GrRenderable::kYes, 1, kBottomLeft_GrSurfaceOrigin, GrMipMapped::kNo, fit,
65 SkBudgeted::kYes, GrProtected::kNo);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040066 // Only budgeted & wrapped external proxies get to carry uniqueKeys
Greg Danielcd871402017-09-26 12:49:26 -040067 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid());
68 return proxy;
Robert Phillipsae7d3f32017-09-21 08:26:08 -040069}
70
Greg Daniel4065d452018-11-16 15:43:41 -050071static sk_sp<GrTextureProxy> wrapped(skiatest::Reporter* reporter, GrContext* ctx,
Robert Phillipsadbe1322018-01-17 13:35:46 -050072 GrProxyProvider* proxyProvider, SkBackingFit fit) {
Chris Daltond004e0b2018-09-27 09:28:03 -060073 sk_sp<GrTextureProxy> proxy = proxyProvider->testingOnly_createInstantiatedProxy(
Brian Salomon4eb38b72019-08-05 12:58:39 -040074 kSize, kColorType, GrRenderable::kNo, 1, kBottomLeft_GrSurfaceOrigin, fit,
75 SkBudgeted::kYes, GrProtected::kNo);
Robert Phillips0bd24dc2018-01-16 08:06:32 -050076 // Only budgeted & wrapped external proxies get to carry uniqueKeys
Greg Danielcd871402017-09-26 12:49:26 -040077 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid());
78 return proxy;
79}
80
Greg Daniel4065d452018-11-16 15:43:41 -050081static sk_sp<GrTextureProxy> wrapped_with_key(skiatest::Reporter* reporter, GrContext* ctx,
Robert Phillipsadbe1322018-01-17 13:35:46 -050082 GrProxyProvider* proxyProvider, SkBackingFit fit) {
Greg Danielcd871402017-09-26 12:49:26 -040083 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
84 static int kUniqueKeyData = 0;
85
86 GrUniqueKey key;
87
88 GrUniqueKey::Builder builder(&key, d, 1, nullptr);
89 builder[0] = kUniqueKeyData++;
90 builder.finish();
91
Robert Phillipsadbe1322018-01-17 13:35:46 -050092 // Only budgeted & wrapped external proxies get to carry uniqueKeys
Chris Daltond004e0b2018-09-27 09:28:03 -060093 sk_sp<GrTextureProxy> proxy = proxyProvider->testingOnly_createInstantiatedProxy(
Brian Salomon4eb38b72019-08-05 12:58:39 -040094 kSize, kColorType, GrRenderable::kNo, 1, kBottomLeft_GrSurfaceOrigin, fit,
95 SkBudgeted::kYes, GrProtected::kNo);
Robert Phillipsadbe1322018-01-17 13:35:46 -050096 SkAssertResult(proxyProvider->assignUniqueKeyToProxy(key, proxy.get()));
Greg Danielcd871402017-09-26 12:49:26 -040097 REPORTER_ASSERT(reporter, proxy->getUniqueKey().isValid());
98 return proxy;
Robert Phillipsae7d3f32017-09-21 08:26:08 -040099}
100
101static sk_sp<GrTextureProxy> create_wrapped_backend(GrContext* context, SkBackingFit fit,
102 sk_sp<GrTexture>* backingSurface) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500103 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
104 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400105
Brian Salomonf2c2ba92019-07-17 09:59:59 -0400106 const GrSurfaceDesc desc = make_desc();
Brian Salomon4eb38b72019-08-05 12:58:39 -0400107 GrBackendFormat format =
108 proxyProvider->caps()->getDefaultBackendFormat(kColorType, GrRenderable::kYes);
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400109
Brian Salomona90382f2019-09-17 09:01:56 -0400110 *backingSurface =
111 resourceProvider->createTexture(desc, format, GrRenderable::kNo, 1, GrMipMapped::kNo,
112 SkBudgeted::kNo, GrProtected::kNo);
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400113 if (!(*backingSurface)) {
114 return nullptr;
115 }
116
Robert Phillipsb67821d2017-12-13 15:00:45 -0500117 GrBackendTexture backendTex = (*backingSurface)->getBackendTexture();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400118
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400119 return proxyProvider->wrapBackendTexture(backendTex, GrColorType::kRGBA_8888,
120 kBottomLeft_GrSurfaceOrigin, kBorrow_GrWrapOwnership,
121 GrWrapCacheable::kYes, kRead_GrIOType);
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400122}
123
124
125// This tests the basic capabilities of the uniquely keyed texture proxies. Does assigning
126// and looking them up work, etc.
127static void basic_test(GrContext* context,
128 skiatest::Reporter* reporter,
Greg Daniel303e83e2018-09-10 14:10:19 -0400129 sk_sp<GrTextureProxy> proxy) {
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400130 static int id = 1;
131
Robert Phillips9da87e02019-02-04 13:26:26 -0500132 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
133 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
134 GrResourceCache* cache = context->priv().getResourceCache();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400135
136 int startCacheCount = cache->getResourceCount();
137
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400138 GrUniqueKey key;
Greg Danielcd871402017-09-26 12:49:26 -0400139 if (proxy->getUniqueKey().isValid()) {
140 key = proxy->getUniqueKey();
141 } else {
142 GrMakeKeyFromImageID(&key, id, SkIRect::MakeWH(64, 64));
143 ++id;
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400144
Greg Danielcd871402017-09-26 12:49:26 -0400145 // Assigning the uniqueKey adds the proxy to the hash but doesn't force instantiation
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500146 REPORTER_ASSERT(reporter, !proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsadbe1322018-01-17 13:35:46 -0500147 SkAssertResult(proxyProvider->assignUniqueKeyToProxy(key, proxy.get()));
Greg Danielcd871402017-09-26 12:49:26 -0400148 }
149
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500150 REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400151 REPORTER_ASSERT(reporter, startCacheCount == cache->getResourceCount());
152
153 // setUniqueKey had better stick
154 REPORTER_ASSERT(reporter, key == proxy->getUniqueKey());
155
156 // We just added it, surely we can find it
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500157 REPORTER_ASSERT(reporter, proxyProvider->findOrCreateProxyByUniqueKey(
Brian Salomon2af3e702019-08-11 19:10:31 -0400158 key, kColorType, kBottomLeft_GrSurfaceOrigin));
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500159 REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400160
Greg Daniel303e83e2018-09-10 14:10:19 -0400161 int expectedCacheCount = startCacheCount + (proxy->isInstantiated() ? 0 : 1);
162
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400163 // Once instantiated, the backing resource should have the same key
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500164 SkAssertResult(proxy->instantiate(resourceProvider));
Brian Salomon9bc76d92019-01-24 12:18:33 -0500165 const GrUniqueKey texKey = proxy->peekSurface()->getUniqueKey();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400166 REPORTER_ASSERT(reporter, texKey.isValid());
167 REPORTER_ASSERT(reporter, key == texKey);
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400168
Brian Salomon9bc76d92019-01-24 12:18:33 -0500169 // An Unbudgeted-cacheable resource will not get purged when a proxy with the same key is
170 // deleted.
171 bool expectResourceToOutliveProxy = proxy->peekSurface()->resourcePriv().budgetedType() ==
172 GrBudgetedType::kUnbudgetedCacheable;
173
174 // An Unbudgeted-uncacheable resource is never kept alive if it's ref cnt reaches zero even if
175 // it has a key.
176 bool expectDeletingProxyToDeleteResource =
177 proxy->peekSurface()->resourcePriv().budgetedType() ==
178 GrBudgetedType::kUnbudgetedUncacheable;
179
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400180 // deleting the proxy should delete it from the hash but not the cache
181 proxy = nullptr;
Brian Salomon9bc76d92019-01-24 12:18:33 -0500182 if (expectDeletingProxyToDeleteResource) {
183 expectedCacheCount -= 1;
184 }
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500185 REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly());
Greg Daniel303e83e2018-09-10 14:10:19 -0400186 REPORTER_ASSERT(reporter, expectedCacheCount == cache->getResourceCount());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400187
188 // If the proxy was cached refinding it should bring it back to life
Brian Salomon2af3e702019-08-11 19:10:31 -0400189 proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kColorType,
190 kBottomLeft_GrSurfaceOrigin);
Greg Daniel303e83e2018-09-10 14:10:19 -0400191 REPORTER_ASSERT(reporter, proxy);
192 REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly());
193 REPORTER_ASSERT(reporter, expectedCacheCount == cache->getResourceCount());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400194
195 // Mega-purging it should remove it from both the hash and the cache
196 proxy = nullptr;
197 cache->purgeAllUnlocked();
Brian Salomon9bc76d92019-01-24 12:18:33 -0500198 if (!expectResourceToOutliveProxy) {
199 expectedCacheCount--;
200 }
Greg Daniel303e83e2018-09-10 14:10:19 -0400201 REPORTER_ASSERT(reporter, expectedCacheCount == cache->getResourceCount());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400202
Brian Salomon9bc76d92019-01-24 12:18:33 -0500203 // If the texture was deleted then the proxy should no longer be findable. Otherwise, it should
204 // be.
Brian Salomon2af3e702019-08-11 19:10:31 -0400205 proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kColorType,
206 kBottomLeft_GrSurfaceOrigin);
Brian Salomon9bc76d92019-01-24 12:18:33 -0500207 REPORTER_ASSERT(reporter, expectResourceToOutliveProxy ? (bool)proxy : !proxy);
Greg Daniel303e83e2018-09-10 14:10:19 -0400208 REPORTER_ASSERT(reporter, expectedCacheCount == cache->getResourceCount());
Brian Salomon9bc76d92019-01-24 12:18:33 -0500209
210 if (expectResourceToOutliveProxy) {
211 proxy.reset();
Robert Phillips9da87e02019-02-04 13:26:26 -0500212 GrUniqueKeyInvalidatedMessage msg(texKey, context->priv().contextID());
Brian Salomon9bc76d92019-01-24 12:18:33 -0500213 SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(msg);
214 cache->purgeAsNeeded();
215 expectedCacheCount--;
Brian Salomon2af3e702019-08-11 19:10:31 -0400216 proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kColorType,
217 kBottomLeft_GrSurfaceOrigin);
Brian Salomon9bc76d92019-01-24 12:18:33 -0500218 REPORTER_ASSERT(reporter, !proxy);
219 REPORTER_ASSERT(reporter, expectedCacheCount == cache->getResourceCount());
220 }
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400221}
222
223///////////////////////////////////////////////////////////////////////////////////////////////////
224// Invalidation test
225
226// Test if invalidating unique ids operates as expected for texture proxies.
227static void invalidation_test(GrContext* context, skiatest::Reporter* reporter) {
228
Robert Phillips9da87e02019-02-04 13:26:26 -0500229 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
230 GrResourceCache* cache = context->priv().getResourceCache();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400231 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
232
233 sk_sp<SkImage> rasterImg;
234
235 {
236 SkImageInfo ii = SkImageInfo::Make(64, 64, kRGBA_8888_SkColorType, kOpaque_SkAlphaType);
237
238 SkBitmap bm;
239 bm.allocPixels(ii);
240
241 rasterImg = SkImage::MakeFromBitmap(bm);
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500242 REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400243 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
244 }
245
Brian Osmand566e2e2019-08-14 13:19:04 -0400246 sk_sp<SkImage> textureImg = rasterImg->makeTextureImage(context);
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500247 REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400248 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
249
250 rasterImg = nullptr; // this invalidates the uniqueKey
251
252 // this forces the cache to respond to the inval msg
Robert Phillipscf39f372019-09-03 10:29:20 -0400253 size_t maxBytes = context->getResourceCacheLimit();
254 context->setResourceCacheLimit(maxBytes-1);
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400255
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500256 REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400257 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
258
259 textureImg = nullptr;
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500260 context->priv().testingOnly_purgeAllUnlockedResources();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400261
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500262 REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400263 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
264}
265
Brian Osman28c434b2017-09-27 13:11:16 -0400266// Test if invalidating unique ids prior to instantiating operates as expected
267static void invalidation_and_instantiation_test(GrContext* context, skiatest::Reporter* reporter) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500268 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
269 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
270 GrResourceCache* cache = context->priv().getResourceCache();
Brian Osman28c434b2017-09-27 13:11:16 -0400271 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
272
273 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
274 GrUniqueKey key;
275 GrUniqueKey::Builder builder(&key, d, 1, nullptr);
276 builder[0] = 0;
277 builder.finish();
278
279 // Create proxy, assign unique key
Greg Daniel4065d452018-11-16 15:43:41 -0500280 sk_sp<GrTextureProxy> proxy = deferred_tex(reporter, context, proxyProvider,
281 SkBackingFit::kExact);
Robert Phillipsadbe1322018-01-17 13:35:46 -0500282 SkAssertResult(proxyProvider->assignUniqueKeyToProxy(key, proxy.get()));
Brian Osman28c434b2017-09-27 13:11:16 -0400283
284 // Send an invalidation message, which will be sitting in the cache's inbox
Brian Salomon238069b2018-07-11 15:58:57 -0400285 SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(
Robert Phillips9da87e02019-02-04 13:26:26 -0500286 GrUniqueKeyInvalidatedMessage(key, context->priv().contextID()));
Brian Osman28c434b2017-09-27 13:11:16 -0400287
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500288 REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly());
Brian Osman28c434b2017-09-27 13:11:16 -0400289 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
290
291 // Instantiate the proxy. This will trigger the message to be processed, so the resulting
292 // texture should *not* have the unique key on it!
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500293 SkAssertResult(proxy->instantiate(resourceProvider));
Brian Osman28c434b2017-09-27 13:11:16 -0400294
295 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid());
Brian Salomonfd98c2c2018-07-31 17:25:29 -0400296 REPORTER_ASSERT(reporter, !proxy->peekTexture()->getUniqueKey().isValid());
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500297 REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly());
Brian Osman28c434b2017-09-27 13:11:16 -0400298 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
299
300 proxy = nullptr;
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500301 context->priv().testingOnly_purgeAllUnlockedResources();
Brian Osman28c434b2017-09-27 13:11:16 -0400302
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500303 REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly());
Brian Osman28c434b2017-09-27 13:11:16 -0400304 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
305}
306
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400307DEF_GPUTEST_FOR_RENDERING_CONTEXTS(TextureProxyTest, reporter, ctxInfo) {
308 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500309 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
310 GrResourceCache* cache = context->priv().getResourceCache();
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400311
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500312 REPORTER_ASSERT(reporter, !proxyProvider->numUniqueKeyProxies_TestOnly());
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400313 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
314
315 for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) {
Greg Danielcd871402017-09-26 12:49:26 -0400316 for (auto create : { deferred_tex, deferred_texRT, wrapped, wrapped_with_key }) {
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400317 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
Greg Daniel4065d452018-11-16 15:43:41 -0500318 basic_test(context, reporter, create(reporter, context, proxyProvider, fit));
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400319 }
320
321 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
322 sk_sp<GrTexture> backingTex;
323 sk_sp<GrTextureProxy> proxy = create_wrapped_backend(context, fit, &backingTex);
Greg Daniel303e83e2018-09-10 14:10:19 -0400324 basic_test(context, reporter, std::move(proxy));
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400325
326 backingTex = nullptr;
327 cache->purgeAllUnlocked();
328 }
329
330 invalidation_test(context, reporter);
Robert Phillipsfa8c0802017-10-04 08:42:28 -0400331 invalidation_and_instantiation_test(context, reporter);
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400332}