robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/private/GrTextureProxy.h" |
| 9 | #include "src/gpu/GrTextureProxyPriv.h" |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 10 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "include/gpu/GrContext.h" |
| 12 | #include "src/gpu/GrContextPriv.h" |
| 13 | #include "src/gpu/GrDeferredProxyUploader.h" |
| 14 | #include "src/gpu/GrProxyProvider.h" |
| 15 | #include "src/gpu/GrSurfacePriv.h" |
| 16 | #include "src/gpu/GrTexturePriv.h" |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 17 | |
Brian Salomon | 3ec1f54 | 2019-06-17 17:54:57 +0000 | [diff] [blame] | 18 | // Deferred version - with data |
| 19 | GrTextureProxy::GrTextureProxy(const GrBackendFormat& format, const GrSurfaceDesc& srcDesc, |
| 20 | GrMipMapped mipMapped, SkBackingFit fit, SkBudgeted budgeted, |
| 21 | const void* srcData, size_t /*rowBytes*/, |
| 22 | GrInternalSurfaceFlags surfaceFlags) |
| 23 | : INHERITED(format, srcDesc, kTopLeft_GrSurfaceOrigin, fit, budgeted, surfaceFlags) |
| 24 | , fMipMapped(mipMapped) |
| 25 | , fProxyProvider(nullptr) |
| 26 | , fDeferredUploader(nullptr) { |
| 27 | SkASSERT(!srcData); // currently handled in Make() |
| 28 | } |
| 29 | |
Brian Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 30 | // Deferred version - no data |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 31 | GrTextureProxy::GrTextureProxy(const GrBackendFormat& format, const GrSurfaceDesc& srcDesc, |
| 32 | GrSurfaceOrigin origin, GrMipMapped mipMapped, |
Brian Salomon | 3ec1f54 | 2019-06-17 17:54:57 +0000 | [diff] [blame] | 33 | SkBackingFit fit, SkBudgeted budgeted, |
| 34 | GrInternalSurfaceFlags surfaceFlags) |
| 35 | : INHERITED(format, srcDesc, origin, fit, budgeted, surfaceFlags) |
Brian Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 36 | , fMipMapped(mipMapped) |
| 37 | , fProxyProvider(nullptr) |
| 38 | , fDeferredUploader(nullptr) {} |
| 39 | |
Chris Dalton | 706a6ff | 2017-11-29 22:01:06 -0700 | [diff] [blame] | 40 | // Lazy-callback version |
Greg Daniel | 457469c | 2018-02-08 15:05:44 -0500 | [diff] [blame] | 41 | GrTextureProxy::GrTextureProxy(LazyInstantiateCallback&& callback, LazyInstantiationType lazyType, |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 42 | const GrBackendFormat& format, const GrSurfaceDesc& desc, |
Brian Salomon | 3ec1f54 | 2019-06-17 17:54:57 +0000 | [diff] [blame] | 43 | GrSurfaceOrigin origin, GrMipMapped mipMapped, SkBackingFit fit, |
| 44 | SkBudgeted budgeted, GrInternalSurfaceFlags surfaceFlags) |
| 45 | : INHERITED(std::move(callback), lazyType, format, desc, origin, fit, budgeted, |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 46 | surfaceFlags) |
Greg Daniel | 65fa8ca | 2018-01-10 17:06:31 -0500 | [diff] [blame] | 47 | , fMipMapped(mipMapped) |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 48 | , fProxyProvider(nullptr) |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 49 | , fDeferredUploader(nullptr) {} |
Chris Dalton | 706a6ff | 2017-11-29 22:01:06 -0700 | [diff] [blame] | 50 | |
| 51 | // Wrapped version |
Brian Salomon | 3ec1f54 | 2019-06-17 17:54:57 +0000 | [diff] [blame] | 52 | GrTextureProxy::GrTextureProxy(sk_sp<GrSurface> surf, GrSurfaceOrigin origin) |
| 53 | : INHERITED(std::move(surf), origin, SkBackingFit::kExact) |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 54 | , fMipMapped(fTarget->asTexture()->texturePriv().mipMapped()) |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 55 | , fProxyProvider(nullptr) |
Brian Osman | 099fa0f | 2017-10-02 16:38:32 -0400 | [diff] [blame] | 56 | , fDeferredUploader(nullptr) { |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 57 | if (fTarget->getUniqueKey().isValid()) { |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 58 | fProxyProvider = fTarget->asTexture()->getContext()->priv().proxyProvider(); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 59 | fProxyProvider->adoptUniqueKeyFromSurface(this, fTarget); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | |
| 63 | GrTextureProxy::~GrTextureProxy() { |
| 64 | // Due to the order of cleanup the GrSurface this proxy may have wrapped may have gone away |
| 65 | // at this point. Zero out the pointer so the cache invalidation code doesn't try to use it. |
| 66 | fTarget = nullptr; |
Robert Phillips | 0790f8a | 2018-09-18 13:11:03 -0400 | [diff] [blame] | 67 | |
| 68 | // In DDL-mode, uniquely keyed proxies keep their key even after their originating |
| 69 | // proxy provider has gone away. In that case there is noone to send the invalid key |
| 70 | // message to (Note: in this case we don't want to remove its cached resource). |
| 71 | if (fUniqueKey.isValid() && fProxyProvider) { |
Robert Phillips | 427966a | 2018-12-20 17:20:43 -0500 | [diff] [blame] | 72 | fProxyProvider->processInvalidUniqueKey(fUniqueKey, this, |
| 73 | GrProxyProvider::InvalidateGPUResource::kNo); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 74 | } else { |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 75 | SkASSERT(!fProxyProvider); |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 76 | } |
Robert Phillips | eee4d6e | 2017-06-05 09:26:07 -0400 | [diff] [blame] | 77 | } |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 78 | |
Robert Phillips | 10d1721 | 2019-04-24 14:09:10 -0400 | [diff] [blame] | 79 | bool GrTextureProxy::instantiate(GrResourceProvider* resourceProvider) { |
Greg Daniel | 0a375db | 2018-02-01 12:21:39 -0500 | [diff] [blame] | 80 | if (LazyState::kNot != this->lazyInstantiationState()) { |
| 81 | return false; |
| 82 | } |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 83 | if (!this->instantiateImpl(resourceProvider, 1, /* needsStencil = */ false, |
Greg Daniel | d2d8e92 | 2018-02-12 12:07:39 -0500 | [diff] [blame] | 84 | kNone_GrSurfaceFlags, fMipMapped, |
Robert Phillips | 10d1721 | 2019-04-24 14:09:10 -0400 | [diff] [blame] | 85 | fUniqueKey.isValid() ? &fUniqueKey : nullptr)) { |
Robert Phillips | eee4d6e | 2017-06-05 09:26:07 -0400 | [diff] [blame] | 86 | return false; |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 87 | } |
Robert Phillips | eee4d6e | 2017-06-05 09:26:07 -0400 | [diff] [blame] | 88 | |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 89 | SkASSERT(!fTarget->asRenderTarget()); |
Robert Phillips | eee4d6e | 2017-06-05 09:26:07 -0400 | [diff] [blame] | 90 | SkASSERT(fTarget->asTexture()); |
| 91 | return true; |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Robert Phillips | 5af44de | 2017-07-18 14:49:38 -0400 | [diff] [blame] | 94 | sk_sp<GrSurface> GrTextureProxy::createSurface(GrResourceProvider* resourceProvider) const { |
Robert Phillips | 7eeb74f | 2019-03-29 07:26:46 -0400 | [diff] [blame] | 95 | sk_sp<GrSurface> surface = this->createSurfaceImpl(resourceProvider, 1, |
| 96 | /* needsStencil = */ false, |
| 97 | kNone_GrSurfaceFlags, |
Robert Phillips | 10d1721 | 2019-04-24 14:09:10 -0400 | [diff] [blame] | 98 | fMipMapped); |
Robert Phillips | 5af44de | 2017-07-18 14:49:38 -0400 | [diff] [blame] | 99 | if (!surface) { |
| 100 | return nullptr; |
| 101 | } |
| 102 | |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 103 | SkASSERT(!surface->asRenderTarget()); |
Robert Phillips | 5af44de | 2017-07-18 14:49:38 -0400 | [diff] [blame] | 104 | SkASSERT(surface->asTexture()); |
| 105 | return surface; |
| 106 | } |
| 107 | |
Brian Osman | 099fa0f | 2017-10-02 16:38:32 -0400 | [diff] [blame] | 108 | void GrTextureProxyPriv::setDeferredUploader(std::unique_ptr<GrDeferredProxyUploader> uploader) { |
| 109 | SkASSERT(!fTextureProxy->fDeferredUploader); |
| 110 | fTextureProxy->fDeferredUploader = std::move(uploader); |
| 111 | } |
| 112 | |
| 113 | void GrTextureProxyPriv::scheduleUpload(GrOpFlushState* flushState) { |
Robert Phillips | a3f7026 | 2018-02-08 10:59:38 -0500 | [diff] [blame] | 114 | // The texture proxy's contents may already have been uploaded or instantiation may have failed |
| 115 | if (fTextureProxy->fDeferredUploader && fTextureProxy->fTarget) { |
Brian Osman | 099fa0f | 2017-10-02 16:38:32 -0400 | [diff] [blame] | 116 | fTextureProxy->fDeferredUploader->scheduleUpload(flushState, fTextureProxy); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | void GrTextureProxyPriv::resetDeferredUploader() { |
| 121 | SkASSERT(fTextureProxy->fDeferredUploader); |
| 122 | fTextureProxy->fDeferredUploader.reset(); |
| 123 | } |
| 124 | |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 125 | GrSamplerState::Filter GrTextureProxy::highestFilterMode() const { |
Brian Salomon | e632dfc | 2018-08-01 13:01:16 -0400 | [diff] [blame] | 126 | return this->hasRestrictedSampling() ? GrSamplerState::Filter::kBilerp |
| 127 | : GrSamplerState::Filter::kMipMap; |
Robert Phillips | 49081d1 | 2017-05-08 13:41:35 -0400 | [diff] [blame] | 128 | } |
| 129 | |
Greg Daniel | 3b2ebbb | 2018-02-09 10:49:23 -0500 | [diff] [blame] | 130 | GrMipMapped GrTextureProxy::mipMapped() const { |
Brian Salomon | fd98c2c | 2018-07-31 17:25:29 -0400 | [diff] [blame] | 131 | if (this->isInstantiated()) { |
| 132 | return this->peekTexture()->texturePriv().mipMapped(); |
Greg Daniel | 3b2ebbb | 2018-02-09 10:49:23 -0500 | [diff] [blame] | 133 | } |
| 134 | return fMipMapped; |
| 135 | } |
| 136 | |
Brian Salomon | bb5711a | 2017-05-17 13:49:59 -0400 | [diff] [blame] | 137 | size_t GrTextureProxy::onUninstantiatedGpuMemorySize() const { |
Chris Dalton | 706a6ff | 2017-11-29 22:01:06 -0700 | [diff] [blame] | 138 | return GrSurface::ComputeSize(this->config(), this->width(), this->height(), 1, |
Brian Salomon | fd98c2c | 2018-07-31 17:25:29 -0400 | [diff] [blame] | 139 | this->proxyMipMapped(), !this->priv().isExact()); |
Robert Phillips | 8bc06d0 | 2016-11-01 17:28:40 -0400 | [diff] [blame] | 140 | } |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 141 | |
Greg Daniel | 45723ac | 2018-11-30 10:12:43 -0500 | [diff] [blame] | 142 | bool GrTextureProxy::ProxiesAreCompatibleAsDynamicState(const GrTextureProxy* first, |
| 143 | const GrTextureProxy* second) { |
| 144 | return first->config() == second->config() && |
| 145 | first->textureType() == second->textureType() && |
| 146 | first->backendFormat() == second->backendFormat(); |
| 147 | } |
| 148 | |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 149 | void GrTextureProxy::setUniqueKey(GrProxyProvider* proxyProvider, const GrUniqueKey& key) { |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 150 | SkASSERT(key.isValid()); |
| 151 | SkASSERT(!fUniqueKey.isValid()); // proxies can only ever get one uniqueKey |
| 152 | |
Brian Salomon | b6a3a3b | 2019-04-01 12:29:34 -0400 | [diff] [blame] | 153 | if (fTarget && fSyncTargetKey) { |
Robert Phillips | adbe132 | 2018-01-17 13:35:46 -0500 | [diff] [blame] | 154 | if (!fTarget->getUniqueKey().isValid()) { |
| 155 | fTarget->resourcePriv().setUniqueKey(key); |
| 156 | } |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 157 | SkASSERT(fTarget->getUniqueKey() == key); |
| 158 | } |
| 159 | |
| 160 | fUniqueKey = key; |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 161 | fProxyProvider = proxyProvider; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | void GrTextureProxy::clearUniqueKey() { |
| 165 | fUniqueKey.reset(); |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 166 | fProxyProvider = nullptr; |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 167 | } |
| 168 | |
Chris Dalton | 706a6ff | 2017-11-29 22:01:06 -0700 | [diff] [blame] | 169 | #ifdef SK_DEBUG |
Greg Daniel | 849dce1 | 2018-04-24 14:32:53 -0400 | [diff] [blame] | 170 | void GrTextureProxy::onValidateSurface(const GrSurface* surface) { |
Robert Phillips | e8fabb2 | 2018-02-04 14:33:21 -0500 | [diff] [blame] | 171 | SkASSERT(!surface->asRenderTarget()); |
| 172 | |
| 173 | // Anything that is checked here should be duplicated in GrTextureRenderTargetProxy's version |
| 174 | SkASSERT(surface->asTexture()); |
Brian Salomon | fd98c2c | 2018-07-31 17:25:29 -0400 | [diff] [blame] | 175 | SkASSERT(GrMipMapped::kNo == this->proxyMipMapped() || |
Robert Phillips | 6ba15ec | 2018-02-08 16:26:47 -0500 | [diff] [blame] | 176 | GrMipMapped::kYes == surface->asTexture()->texturePriv().mipMapped()); |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 177 | |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 178 | SkASSERT(surface->asTexture()->texturePriv().textureType() == this->textureType()); |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 179 | |
| 180 | GrInternalSurfaceFlags proxyFlags = fSurfaceFlags; |
| 181 | GrInternalSurfaceFlags surfaceFlags = surface->surfacePriv().flags(); |
| 182 | SkASSERT((proxyFlags & GrInternalSurfaceFlags::kTextureMask) == |
| 183 | (surfaceFlags & GrInternalSurfaceFlags::kTextureMask)); |
Chris Dalton | 706a6ff | 2017-11-29 22:01:06 -0700 | [diff] [blame] | 184 | } |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 185 | |
Chris Dalton | 706a6ff | 2017-11-29 22:01:06 -0700 | [diff] [blame] | 186 | #endif |
| 187 | |