Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 1 | /* |
| 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 | |
| 10 | #include "Test.h" |
| 11 | |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 12 | #include "GrBackendSurface.h" |
| 13 | #include "GrContextPriv.h" |
| 14 | #include "GrResourceCache.h" |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 15 | #include "GrProxyProvider.h" |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 16 | #include "GrResourceProvider.h" |
| 17 | #include "GrTest.h" |
| 18 | #include "GrTexture.h" |
| 19 | #include "GrTextureProxy.h" |
| 20 | |
| 21 | #include "SkGr.h" |
| 22 | #include "SkImage.h" |
| 23 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 24 | int GrProxyProvider::numUniqueKeyProxies_TestOnly() const { |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 25 | return fUniquelyKeyedProxies.count(); |
| 26 | } |
| 27 | |
Robert Phillips | fe0253f | 2018-03-16 16:47:25 -0400 | [diff] [blame] | 28 | static GrSurfaceDesc make_desc(GrSurfaceDescFlags descFlags) { |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 29 | GrSurfaceDesc desc; |
Robert Phillips | fe0253f | 2018-03-16 16:47:25 -0400 | [diff] [blame] | 30 | desc.fFlags = descFlags; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 31 | desc.fWidth = 64; |
| 32 | desc.fHeight = 64; |
| 33 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 34 | desc.fSampleCnt = 1; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 35 | |
| 36 | return desc; |
| 37 | } |
| 38 | |
| 39 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 40 | // Basic test |
| 41 | |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 42 | static sk_sp<GrTextureProxy> deferred_tex(skiatest::Reporter* reporter, |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 43 | GrProxyProvider* proxyProvider, SkBackingFit fit) { |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 44 | const GrSurfaceDesc desc = make_desc(kNone_GrSurfaceFlags); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 45 | |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 46 | sk_sp<GrTextureProxy> proxy = |
| 47 | proxyProvider->createProxy(desc, kBottomLeft_GrSurfaceOrigin, fit, SkBudgeted::kYes); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 48 | // Only budgeted & wrapped external proxies get to carry uniqueKeys |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 49 | REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); |
| 50 | return proxy; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 51 | } |
| 52 | |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 53 | static sk_sp<GrTextureProxy> deferred_texRT(skiatest::Reporter* reporter, |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 54 | GrProxyProvider* proxyProvider, SkBackingFit fit) { |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 55 | const GrSurfaceDesc desc = make_desc(kRenderTarget_GrSurfaceFlag); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 56 | |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 57 | sk_sp<GrTextureProxy> proxy = |
| 58 | proxyProvider->createProxy(desc, kBottomLeft_GrSurfaceOrigin, fit, SkBudgeted::kYes); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 59 | // Only budgeted & wrapped external proxies get to carry uniqueKeys |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 60 | REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); |
| 61 | return proxy; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 62 | } |
| 63 | |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 64 | static sk_sp<GrTextureProxy> wrapped(skiatest::Reporter* reporter, |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 65 | GrProxyProvider* proxyProvider, SkBackingFit fit) { |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 66 | const GrSurfaceDesc desc = make_desc(kNone_GrSurfaceFlags); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 67 | |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 68 | sk_sp<GrTextureProxy> proxy = proxyProvider->createInstantiatedProxy( |
| 69 | desc, kBottomLeft_GrSurfaceOrigin, fit, SkBudgeted::kYes); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 70 | // Only budgeted & wrapped external proxies get to carry uniqueKeys |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 71 | REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); |
| 72 | return proxy; |
| 73 | } |
| 74 | |
| 75 | static sk_sp<GrTextureProxy> wrapped_with_key(skiatest::Reporter* reporter, |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 76 | GrProxyProvider* proxyProvider, SkBackingFit fit) { |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 77 | static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain(); |
| 78 | static int kUniqueKeyData = 0; |
| 79 | |
| 80 | GrUniqueKey key; |
| 81 | |
| 82 | GrUniqueKey::Builder builder(&key, d, 1, nullptr); |
| 83 | builder[0] = kUniqueKeyData++; |
| 84 | builder.finish(); |
| 85 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 86 | const GrSurfaceDesc desc = make_desc(kNone_GrSurfaceFlags); |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 87 | |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 88 | // Only budgeted & wrapped external proxies get to carry uniqueKeys |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 89 | sk_sp<GrTextureProxy> proxy = proxyProvider->createInstantiatedProxy( |
Robert Phillips | fe0253f | 2018-03-16 16:47:25 -0400 | [diff] [blame] | 90 | desc, kBottomLeft_GrSurfaceOrigin, fit, SkBudgeted::kYes); |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 91 | SkAssertResult(proxyProvider->assignUniqueKeyToProxy(key, proxy.get())); |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 92 | REPORTER_ASSERT(reporter, proxy->getUniqueKey().isValid()); |
| 93 | return proxy; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static sk_sp<GrTextureProxy> create_wrapped_backend(GrContext* context, SkBackingFit fit, |
| 97 | sk_sp<GrTexture>* backingSurface) { |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 98 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 99 | GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider(); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 100 | |
Robert Phillips | b67821d | 2017-12-13 15:00:45 -0500 | [diff] [blame] | 101 | const GrSurfaceDesc desc = make_desc(kNone_GrSurfaceFlags); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 102 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 103 | *backingSurface = resourceProvider->createTexture(desc, SkBudgeted::kNo); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 104 | if (!(*backingSurface)) { |
| 105 | return nullptr; |
| 106 | } |
| 107 | |
Robert Phillips | b67821d | 2017-12-13 15:00:45 -0500 | [diff] [blame] | 108 | GrBackendTexture backendTex = (*backingSurface)->getBackendTexture(); |
Greg Daniel | 108bb23 | 2018-07-03 16:18:29 -0400 | [diff] [blame] | 109 | backendTex.setPixelConfig(desc.fConfig); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 110 | |
Brian Salomon | 7578f3e | 2018-03-07 14:39:54 -0500 | [diff] [blame] | 111 | return proxyProvider->wrapBackendTexture(backendTex, kBottomLeft_GrSurfaceOrigin); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | |
| 115 | // This tests the basic capabilities of the uniquely keyed texture proxies. Does assigning |
| 116 | // and looking them up work, etc. |
| 117 | static void basic_test(GrContext* context, |
| 118 | skiatest::Reporter* reporter, |
| 119 | sk_sp<GrTextureProxy> proxy, bool proxyIsCached) { |
| 120 | static int id = 1; |
| 121 | |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 122 | GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider(); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 123 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 124 | GrResourceCache* cache = context->contextPriv().getResourceCache(); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 125 | |
| 126 | int startCacheCount = cache->getResourceCount(); |
| 127 | |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 128 | GrUniqueKey key; |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 129 | if (proxy->getUniqueKey().isValid()) { |
| 130 | key = proxy->getUniqueKey(); |
| 131 | } else { |
| 132 | GrMakeKeyFromImageID(&key, id, SkIRect::MakeWH(64, 64)); |
| 133 | ++id; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 134 | |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 135 | // Assigning the uniqueKey adds the proxy to the hash but doesn't force instantiation |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 136 | REPORTER_ASSERT(reporter, !proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 137 | SkAssertResult(proxyProvider->assignUniqueKeyToProxy(key, proxy.get())); |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 138 | } |
| 139 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 140 | REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 141 | REPORTER_ASSERT(reporter, startCacheCount == cache->getResourceCount()); |
| 142 | |
| 143 | // setUniqueKey had better stick |
| 144 | REPORTER_ASSERT(reporter, key == proxy->getUniqueKey()); |
| 145 | |
| 146 | // We just added it, surely we can find it |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 147 | REPORTER_ASSERT(reporter, proxyProvider->findOrCreateProxyByUniqueKey( |
| 148 | key, kBottomLeft_GrSurfaceOrigin)); |
| 149 | REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 150 | |
| 151 | // Once instantiated, the backing resource should have the same key |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 152 | SkAssertResult(proxy->instantiate(resourceProvider)); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 153 | const GrUniqueKey& texKey = proxy->priv().peekSurface()->getUniqueKey(); |
| 154 | REPORTER_ASSERT(reporter, texKey.isValid()); |
| 155 | REPORTER_ASSERT(reporter, key == texKey); |
| 156 | if (proxyIsCached) { |
| 157 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 158 | } |
| 159 | |
| 160 | // deleting the proxy should delete it from the hash but not the cache |
| 161 | proxy = nullptr; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 162 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 163 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 164 | |
| 165 | // If the proxy was cached refinding it should bring it back to life |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 166 | proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kBottomLeft_GrSurfaceOrigin); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 167 | if (proxyIsCached) { |
| 168 | REPORTER_ASSERT(reporter, proxy); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 169 | REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 170 | } else { |
| 171 | REPORTER_ASSERT(reporter, !proxy); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 172 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 173 | } |
| 174 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 175 | |
| 176 | // Mega-purging it should remove it from both the hash and the cache |
| 177 | proxy = nullptr; |
| 178 | cache->purgeAllUnlocked(); |
| 179 | if (proxyIsCached) { |
| 180 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 181 | } else { |
| 182 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 183 | } |
| 184 | |
| 185 | // We can bring neither the texture nor proxy back from perma-death |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 186 | proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kBottomLeft_GrSurfaceOrigin); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 187 | REPORTER_ASSERT(reporter, !proxy); |
| 188 | if (proxyIsCached) { |
| 189 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 190 | } else { |
| 191 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 196 | // Invalidation test |
| 197 | |
| 198 | // Test if invalidating unique ids operates as expected for texture proxies. |
| 199 | static void invalidation_test(GrContext* context, skiatest::Reporter* reporter) { |
| 200 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 201 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 202 | GrResourceCache* cache = context->contextPriv().getResourceCache(); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 203 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 204 | |
| 205 | sk_sp<SkImage> rasterImg; |
| 206 | |
| 207 | { |
| 208 | SkImageInfo ii = SkImageInfo::Make(64, 64, kRGBA_8888_SkColorType, kOpaque_SkAlphaType); |
| 209 | |
| 210 | SkBitmap bm; |
| 211 | bm.allocPixels(ii); |
| 212 | |
| 213 | rasterImg = SkImage::MakeFromBitmap(bm); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 214 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 215 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 216 | } |
| 217 | |
| 218 | sk_sp<SkImage> textureImg = rasterImg->makeTextureImage(context, nullptr); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 219 | REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 220 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 221 | |
| 222 | rasterImg = nullptr; // this invalidates the uniqueKey |
| 223 | |
| 224 | // this forces the cache to respond to the inval msg |
| 225 | int maxNum; |
| 226 | size_t maxBytes; |
| 227 | context->getResourceCacheLimits(&maxNum, &maxBytes); |
| 228 | context->setResourceCacheLimits(maxNum-1, maxBytes); |
| 229 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 230 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 231 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 232 | |
| 233 | textureImg = nullptr; |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 234 | context->contextPriv().purgeAllUnlockedResources_ForTesting(); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 235 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 236 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 237 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 238 | } |
| 239 | |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 240 | // Test if invalidating unique ids prior to instantiating operates as expected |
| 241 | static void invalidation_and_instantiation_test(GrContext* context, skiatest::Reporter* reporter) { |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 242 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 243 | GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider(); |
| 244 | GrResourceCache* cache = context->contextPriv().getResourceCache(); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 245 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 246 | |
| 247 | static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain(); |
| 248 | GrUniqueKey key; |
| 249 | GrUniqueKey::Builder builder(&key, d, 1, nullptr); |
| 250 | builder[0] = 0; |
| 251 | builder.finish(); |
| 252 | |
| 253 | // Create proxy, assign unique key |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 254 | sk_sp<GrTextureProxy> proxy = deferred_tex(reporter, proxyProvider, SkBackingFit::kExact); |
| 255 | SkAssertResult(proxyProvider->assignUniqueKeyToProxy(key, proxy.get())); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 256 | |
| 257 | // Send an invalidation message, which will be sitting in the cache's inbox |
Brian Salomon | 143cf8e | 2018-07-11 20:01:19 +0000 | [diff] [blame] | 258 | SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(GrUniqueKeyInvalidatedMessage(key)); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 259 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 260 | REPORTER_ASSERT(reporter, 1 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 261 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 262 | |
| 263 | // Instantiate the proxy. This will trigger the message to be processed, so the resulting |
| 264 | // texture should *not* have the unique key on it! |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 265 | SkAssertResult(proxy->instantiate(resourceProvider)); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 266 | |
| 267 | REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); |
| 268 | REPORTER_ASSERT(reporter, !proxy->priv().peekTexture()->getUniqueKey().isValid()); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 269 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 270 | REPORTER_ASSERT(reporter, 1 == cache->getResourceCount()); |
| 271 | |
| 272 | proxy = nullptr; |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 273 | context->contextPriv().purgeAllUnlockedResources_ForTesting(); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 274 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 275 | REPORTER_ASSERT(reporter, 0 == proxyProvider->numUniqueKeyProxies_TestOnly()); |
Brian Osman | 28c434b | 2017-09-27 13:11:16 -0400 | [diff] [blame] | 276 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 277 | } |
| 278 | |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 279 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(TextureProxyTest, reporter, ctxInfo) { |
| 280 | GrContext* context = ctxInfo.grContext(); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 281 | GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider(); |
Robert Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 282 | GrResourceCache* cache = context->contextPriv().getResourceCache(); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 283 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 284 | REPORTER_ASSERT(reporter, !proxyProvider->numUniqueKeyProxies_TestOnly()); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 285 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 286 | |
| 287 | for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) { |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame] | 288 | for (auto create : { deferred_tex, deferred_texRT, wrapped, wrapped_with_key }) { |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 289 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 290 | basic_test(context, reporter, create(reporter, proxyProvider, fit), true); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | REPORTER_ASSERT(reporter, 0 == cache->getResourceCount()); |
| 294 | sk_sp<GrTexture> backingTex; |
| 295 | sk_sp<GrTextureProxy> proxy = create_wrapped_backend(context, fit, &backingTex); |
| 296 | basic_test(context, reporter, std::move(proxy), false); |
| 297 | |
| 298 | backingTex = nullptr; |
| 299 | cache->purgeAllUnlocked(); |
| 300 | } |
| 301 | |
| 302 | invalidation_test(context, reporter); |
Robert Phillips | fa8c080 | 2017-10-04 08:42:28 -0400 | [diff] [blame] | 303 | invalidation_and_instantiation_test(context, reporter); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 304 | } |