Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018 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 | #ifndef GrProxyProvider_DEFINED |
| 9 | #define GrProxyProvider_DEFINED |
| 10 | |
Robert Phillips | c4039ea | 2018-03-01 11:36:45 -0500 | [diff] [blame] | 11 | #include "GrCaps.h" |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 12 | #include "GrResourceKey.h" |
| 13 | #include "GrTextureProxy.h" |
| 14 | #include "GrTypes.h" |
| 15 | #include "SkRefCnt.h" |
| 16 | #include "SkTDynamicHash.h" |
| 17 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 18 | class GrResourceProvider; |
| 19 | class GrSingleOwner; |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 20 | class GrBackendRenderTarget; |
Greg Daniel | a4ead65 | 2018-02-07 10:21:48 -0500 | [diff] [blame] | 21 | class SkBitmap; |
Greg Daniel | 9d86f1d | 2018-01-29 09:33:59 -0500 | [diff] [blame] | 22 | class SkImage; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | * A factory for creating GrSurfaceProxy-derived objects. |
| 26 | */ |
| 27 | class GrProxyProvider { |
| 28 | public: |
| 29 | GrProxyProvider(GrResourceProvider*, GrResourceCache*, sk_sp<const GrCaps>, GrSingleOwner*); |
Brian Salomon | 238069b | 2018-07-11 15:58:57 -0400 | [diff] [blame] | 30 | GrProxyProvider(uint32_t contextUniqueID, sk_sp<const GrCaps>, GrSingleOwner*); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 31 | |
| 32 | ~GrProxyProvider(); |
| 33 | |
| 34 | /* |
| 35 | * Assigns a unique key to a proxy. The proxy will be findable via this key using |
| 36 | * findProxyByUniqueKey(). It is an error if an existing proxy already has a key. |
| 37 | */ |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 38 | bool assignUniqueKeyToProxy(const GrUniqueKey&, GrTextureProxy*); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Sets the unique key of the provided proxy to the unique key of the surface. The surface must |
| 42 | * have a valid unique key. |
| 43 | */ |
| 44 | void adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface*); |
| 45 | |
| 46 | /* |
| 47 | * Removes a unique key from a proxy. If the proxy has already been instantiated, it will |
| 48 | * also remove the unique key from the target GrSurface. |
| 49 | */ |
Chris Dalton | 2de13dd | 2019-01-03 15:11:59 -0700 | [diff] [blame] | 50 | void removeUniqueKeyFromProxy(GrTextureProxy*); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 51 | |
| 52 | /* |
| 53 | * Finds a proxy by unique key. |
| 54 | */ |
| 55 | sk_sp<GrTextureProxy> findProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin); |
| 56 | |
| 57 | /* |
| 58 | * Finds a proxy by unique key or creates a new one that wraps a resource matching the unique |
| 59 | * key. |
| 60 | */ |
| 61 | sk_sp<GrTextureProxy> findOrCreateProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin); |
| 62 | |
| 63 | /* |
Greg Daniel | 9d86f1d | 2018-01-29 09:33:59 -0500 | [diff] [blame] | 64 | * Create an un-mipmapped texture proxy with data. The SkImage must be a raster backend image. |
| 65 | * Since the SkImage is ref counted, we simply take a ref on it to keep the data alive until we |
| 66 | * actually upload the data to the gpu. |
| 67 | */ |
Chris Dalton | d004e0b | 2018-09-27 09:28:03 -0600 | [diff] [blame] | 68 | sk_sp<GrTextureProxy> createTextureProxy( |
| 69 | sk_sp<SkImage> srcImage, GrSurfaceDescFlags, int sampleCnt, SkBudgeted, SkBackingFit, |
| 70 | GrInternalSurfaceFlags = GrInternalSurfaceFlags::kNone); |
Greg Daniel | 9d86f1d | 2018-01-29 09:33:59 -0500 | [diff] [blame] | 71 | |
| 72 | /* |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 73 | * Create a mipmapped texture proxy without any data. |
| 74 | * |
| 75 | * Like the call above but there are no texels to upload. A texture proxy is returned that |
| 76 | * simply has space allocated for the mips. We will allocated the full amount of mip levels |
| 77 | * based on the width and height in the GrSurfaceDesc. |
| 78 | */ |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 79 | sk_sp<GrTextureProxy> createMipMapProxy(const GrBackendFormat&, const GrSurfaceDesc&, |
| 80 | GrSurfaceOrigin, SkBudgeted); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 81 | |
| 82 | /* |
Greg Daniel | a4ead65 | 2018-02-07 10:21:48 -0500 | [diff] [blame] | 83 | * Creates a new mipmapped texture proxy for the bitmap with mip levels generated by the cpu. |
| 84 | */ |
Brian Osman | 2b23c4b | 2018-06-01 12:25:08 -0400 | [diff] [blame] | 85 | sk_sp<GrTextureProxy> createMipMapProxyFromBitmap(const SkBitmap& bitmap); |
Greg Daniel | a4ead65 | 2018-02-07 10:21:48 -0500 | [diff] [blame] | 86 | |
| 87 | /* |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 88 | * Create a GrSurfaceProxy without any data. |
| 89 | */ |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 90 | sk_sp<GrTextureProxy> createProxy(const GrBackendFormat&, const GrSurfaceDesc&, GrSurfaceOrigin, |
| 91 | GrMipMapped, SkBackingFit, SkBudgeted, |
| 92 | GrInternalSurfaceFlags); |
Greg Daniel | f6f7b67 | 2018-02-15 13:06:26 -0500 | [diff] [blame] | 93 | |
Robert Phillips | fe0253f | 2018-03-16 16:47:25 -0400 | [diff] [blame] | 94 | sk_sp<GrTextureProxy> createProxy( |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 95 | const GrBackendFormat& format, const GrSurfaceDesc& desc, |
| 96 | GrSurfaceOrigin origin, SkBackingFit fit, SkBudgeted budgeted, |
Robert Phillips | fe0253f | 2018-03-16 16:47:25 -0400 | [diff] [blame] | 97 | GrInternalSurfaceFlags surfaceFlags = GrInternalSurfaceFlags::kNone) { |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 98 | return this->createProxy(format, desc, origin, GrMipMapped::kNo, fit, budgeted, |
| 99 | surfaceFlags); |
Greg Daniel | f6f7b67 | 2018-02-15 13:06:26 -0500 | [diff] [blame] | 100 | } |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 101 | |
Jim Van Verth | ee06b33 | 2019-01-18 10:36:32 -0500 | [diff] [blame] | 102 | /* |
| 103 | * Create a texture proxy with data. It's assumed that the data is packed tightly. |
| 104 | */ |
| 105 | sk_sp<GrTextureProxy> createProxy(sk_sp<SkData>, const GrSurfaceDesc& desc); |
| 106 | |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 107 | // These match the definitions in SkImage & GrTexture.h, for whence they came |
| 108 | typedef void* ReleaseContext; |
| 109 | typedef void (*ReleaseProc)(ReleaseContext); |
| 110 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 111 | /* |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 112 | * Create a texture proxy that wraps a (non-renderable) backend texture. GrIOType must be |
| 113 | * kRead or kRW. |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 114 | */ |
Brian Salomon | 7578f3e | 2018-03-07 14:39:54 -0500 | [diff] [blame] | 115 | sk_sp<GrTextureProxy> wrapBackendTexture(const GrBackendTexture&, GrSurfaceOrigin, |
Brian Salomon | aa6ca0a | 2019-01-24 16:03:07 -0500 | [diff] [blame^] | 116 | GrWrapOwnership, GrWrapCacheable, GrIOType, |
| 117 | ReleaseProc = nullptr, ReleaseContext = nullptr); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 118 | |
| 119 | /* |
| 120 | * Create a texture proxy that wraps a backend texture and is both texture-able and renderable |
| 121 | */ |
Brian Salomon | aa6ca0a | 2019-01-24 16:03:07 -0500 | [diff] [blame^] | 122 | sk_sp<GrTextureProxy> wrapRenderableBackendTexture(const GrBackendTexture&, GrSurfaceOrigin, |
| 123 | int sampleCnt, GrWrapOwnership, |
| 124 | GrWrapCacheable); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 125 | |
| 126 | /* |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 127 | * Create a render target proxy that wraps a backend render target |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 128 | */ |
Brian Salomon | 7578f3e | 2018-03-07 14:39:54 -0500 | [diff] [blame] | 129 | sk_sp<GrSurfaceProxy> wrapBackendRenderTarget(const GrBackendRenderTarget&, GrSurfaceOrigin); |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 130 | |
| 131 | /* |
Brian Salomon | 7578f3e | 2018-03-07 14:39:54 -0500 | [diff] [blame] | 132 | * Create a render target proxy that wraps a backend texture |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 133 | */ |
Kevin Lubick | b5502b2 | 2018-03-12 10:17:06 -0400 | [diff] [blame] | 134 | sk_sp<GrSurfaceProxy> wrapBackendTextureAsRenderTarget(const GrBackendTexture& backendTex, |
Brian Salomon | 7578f3e | 2018-03-07 14:39:54 -0500 | [diff] [blame] | 135 | GrSurfaceOrigin origin, |
| 136 | int sampleCnt); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 137 | |
Greg Daniel | b46add8 | 2019-01-02 14:51:29 -0500 | [diff] [blame] | 138 | sk_sp<GrRenderTargetProxy> wrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&, |
| 139 | const GrVkDrawableInfo&); |
| 140 | |
Robert Phillips | ce5209a | 2018-02-13 11:13:51 -0500 | [diff] [blame] | 141 | using LazyInstantiateCallback = std::function<sk_sp<GrSurface>(GrResourceProvider*)>; |
Robert Phillips | e8fabb2 | 2018-02-04 14:33:21 -0500 | [diff] [blame] | 142 | |
Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 143 | enum class Renderable : bool { |
| 144 | kNo = false, |
| 145 | kYes = true |
| 146 | }; |
| 147 | |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 148 | struct TextureInfo { |
| 149 | GrMipMapped fMipMapped; |
| 150 | GrTextureType fTextureType; |
| 151 | }; |
| 152 | |
Greg Daniel | a8d9211 | 2018-03-09 12:05:04 -0500 | [diff] [blame] | 153 | using LazyInstantiationType = GrSurfaceProxy::LazyInstantiationType; |
Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 154 | /** |
| 155 | * Creates a texture proxy that will be instantiated by a user-supplied callback during flush. |
| 156 | * (Stencil is not supported by this method.) The width and height must either both be greater |
| 157 | * than 0 or both less than or equal to zero. A non-positive value is a signal that the width |
| 158 | * and height are currently unknown. |
| 159 | * |
| 160 | * When called, the callback must be able to cleanup any resources that it captured at creation. |
| 161 | * It also must support being passed in a null GrResourceProvider. When this happens, the |
| 162 | * callback should cleanup any resources it captured and return an empty sk_sp<GrTextureProxy>. |
| 163 | */ |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 164 | sk_sp<GrTextureProxy> createLazyProxy(LazyInstantiateCallback&&, const GrBackendFormat&, |
| 165 | const GrSurfaceDesc&, GrSurfaceOrigin, GrMipMapped, |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 166 | GrInternalSurfaceFlags, SkBackingFit, SkBudgeted, |
| 167 | LazyInstantiationType); |
Greg Daniel | a8d9211 | 2018-03-09 12:05:04 -0500 | [diff] [blame] | 168 | |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 169 | sk_sp<GrTextureProxy> createLazyProxy(LazyInstantiateCallback&&, const GrBackendFormat&, |
| 170 | const GrSurfaceDesc&, GrSurfaceOrigin, GrMipMapped, |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 171 | GrInternalSurfaceFlags, SkBackingFit, SkBudgeted); |
Greg Daniel | 2a30390 | 2018-02-20 10:25:54 -0500 | [diff] [blame] | 172 | |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 173 | sk_sp<GrTextureProxy> createLazyProxy(LazyInstantiateCallback&&, const GrBackendFormat&, |
| 174 | const GrSurfaceDesc&, GrSurfaceOrigin, GrMipMapped, |
| 175 | SkBackingFit, SkBudgeted); |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 176 | |
| 177 | /** A null TextureInfo indicates a non-textureable render target. */ |
Robert Phillips | e8fabb2 | 2018-02-04 14:33:21 -0500 | [diff] [blame] | 178 | sk_sp<GrRenderTargetProxy> createLazyRenderTargetProxy(LazyInstantiateCallback&&, |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 179 | const GrBackendFormat&, |
Greg Daniel | 2a30390 | 2018-02-20 10:25:54 -0500 | [diff] [blame] | 180 | const GrSurfaceDesc&, |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 181 | GrSurfaceOrigin origin, |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 182 | GrInternalSurfaceFlags, |
| 183 | const TextureInfo*, |
| 184 | SkBackingFit, |
| 185 | SkBudgeted); |
Robert Phillips | e8fabb2 | 2018-02-04 14:33:21 -0500 | [diff] [blame] | 186 | |
Chris Dalton | 4c458b1 | 2018-06-16 17:22:59 -0600 | [diff] [blame] | 187 | /** |
| 188 | * Fully lazy proxies have unspecified width and height. Methods that rely on those values |
| 189 | * (e.g., width, height, getBoundsRect) should be avoided. |
| 190 | */ |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 191 | static sk_sp<GrTextureProxy> MakeFullyLazyProxy(LazyInstantiateCallback&&, |
| 192 | const GrBackendFormat&, Renderable, |
Chris Dalton | 4c458b1 | 2018-06-16 17:22:59 -0600 | [diff] [blame] | 193 | GrSurfaceOrigin, GrPixelConfig, const GrCaps&); |
| 194 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 195 | // 'proxy' is about to be used as a texture src or drawn to. This query can be used to |
| 196 | // determine if it is going to need a texture domain or a full clear. |
| 197 | static bool IsFunctionallyExact(GrSurfaceProxy* proxy); |
| 198 | |
Robert Phillips | 427966a | 2018-12-20 17:20:43 -0500 | [diff] [blame] | 199 | enum class InvalidateGPUResource : bool { kNo = false, kYes = true }; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 200 | |
Robert Phillips | 427966a | 2018-12-20 17:20:43 -0500 | [diff] [blame] | 201 | /* |
| 202 | * This method ensures that, if a proxy w/ the supplied unique key exists, it is removed from |
| 203 | * the proxy provider's map and its unique key is removed. If 'invalidateSurface' is true, it |
| 204 | * will independently ensure that the unique key is removed from any GrGpuResources that may |
| 205 | * have it. |
| 206 | * |
| 207 | * If 'proxy' is provided (as an optimization to stop re-looking it up), its unique key must be |
| 208 | * valid and match the provided unique key. |
| 209 | * |
| 210 | * This method is called if either the proxy attached to the unique key is being deleted |
| 211 | * (in which case we don't want it cluttering up the hash table) or the client has indicated |
| 212 | * that it will never refer to the unique key again. |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 213 | */ |
Chris Dalton | 2de13dd | 2019-01-03 15:11:59 -0700 | [diff] [blame] | 214 | void processInvalidUniqueKey(const GrUniqueKey&, GrTextureProxy*, InvalidateGPUResource); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 215 | |
Brian Salomon | 238069b | 2018-07-11 15:58:57 -0400 | [diff] [blame] | 216 | uint32_t contextUniqueID() const { return fContextUniqueID; } |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 217 | const GrCaps* caps() const { return fCaps.get(); } |
Robert Phillips | c4039ea | 2018-03-01 11:36:45 -0500 | [diff] [blame] | 218 | sk_sp<const GrCaps> refCaps() const { return fCaps; } |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 219 | |
| 220 | void abandon() { |
| 221 | fResourceCache = nullptr; |
| 222 | fResourceProvider = nullptr; |
Robert Phillips | 4d12051 | 2018-01-19 13:22:07 -0500 | [diff] [blame] | 223 | fAbandoned = true; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | bool isAbandoned() const { |
Robert Phillips | 4d12051 | 2018-01-19 13:22:07 -0500 | [diff] [blame] | 227 | #ifdef SK_DEBUG |
| 228 | if (fAbandoned) { |
| 229 | SkASSERT(!fResourceCache && !fResourceProvider); |
| 230 | } |
| 231 | #endif |
| 232 | return fAbandoned; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | int numUniqueKeyProxies_TestOnly() const; |
| 236 | |
Robert Phillips | 0790f8a | 2018-09-18 13:11:03 -0400 | [diff] [blame] | 237 | // This is called on a DDL's proxyprovider when the DDL is finished. The uniquely keyed |
| 238 | // proxies need to keep their unique key but cannot hold on to the proxy provider unique |
| 239 | // pointer. |
| 240 | void orphanAllUniqueKeys(); |
| 241 | // This is only used by GrContext::releaseResourcesAndAbandonContext() |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 242 | void removeAllUniqueKeys(); |
| 243 | |
Greg Daniel | 7e1912a | 2018-02-08 09:15:33 -0500 | [diff] [blame] | 244 | /** |
Robert Phillips | 5c4b33b | 2018-03-20 16:23:08 -0400 | [diff] [blame] | 245 | * Are we currently recording a DDL? |
Greg Daniel | 7e1912a | 2018-02-08 09:15:33 -0500 | [diff] [blame] | 246 | */ |
Robert Phillips | 5c4b33b | 2018-03-20 16:23:08 -0400 | [diff] [blame] | 247 | bool recordingDDL() const { return !SkToBool(fResourceProvider); } |
Greg Daniel | 7e1912a | 2018-02-08 09:15:33 -0500 | [diff] [blame] | 248 | |
Chris Dalton | d004e0b | 2018-09-27 09:28:03 -0600 | [diff] [blame] | 249 | /* |
| 250 | * Create a texture proxy that is backed by an instantiated GrSurface. |
| 251 | */ |
| 252 | sk_sp<GrTextureProxy> testingOnly_createInstantiatedProxy(const GrSurfaceDesc&, GrSurfaceOrigin, |
| 253 | SkBackingFit, SkBudgeted); |
| 254 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 255 | private: |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 256 | friend class GrAHardwareBufferImageGenerator; // for createWrapped |
Chris Dalton | d004e0b | 2018-09-27 09:28:03 -0600 | [diff] [blame] | 257 | friend class GrResourceProvider; // for createWrapped |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 258 | |
| 259 | sk_sp<GrTextureProxy> createWrapped(sk_sp<GrTexture> tex, GrSurfaceOrigin origin); |
| 260 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 261 | struct UniquelyKeyedProxyHashTraits { |
| 262 | static const GrUniqueKey& GetKey(const GrTextureProxy& p) { return p.getUniqueKey(); } |
| 263 | |
| 264 | static uint32_t Hash(const GrUniqueKey& key) { return key.hash(); } |
| 265 | }; |
| 266 | typedef SkTDynamicHash<GrTextureProxy, GrUniqueKey, UniquelyKeyedProxyHashTraits> UniquelyKeyedProxyHash; |
| 267 | |
| 268 | // This holds the texture proxies that have unique keys. The resourceCache does not get a ref |
| 269 | // on these proxies but they must send a message to the resourceCache when they are deleted. |
| 270 | UniquelyKeyedProxyHash fUniquelyKeyedProxies; |
| 271 | |
| 272 | GrResourceProvider* fResourceProvider; |
| 273 | GrResourceCache* fResourceCache; |
Robert Phillips | 4d12051 | 2018-01-19 13:22:07 -0500 | [diff] [blame] | 274 | bool fAbandoned; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 275 | sk_sp<const GrCaps> fCaps; |
Brian Salomon | 238069b | 2018-07-11 15:58:57 -0400 | [diff] [blame] | 276 | // If this provider is owned by a DDLContext then this is the DirectContext's ID. |
| 277 | uint32_t fContextUniqueID; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 278 | |
| 279 | // In debug builds we guard against improper thread handling |
| 280 | SkDEBUGCODE(mutable GrSingleOwner* fSingleOwner;) |
| 281 | }; |
| 282 | |
| 283 | #endif |