blob: dea0ac94222d6e881849b0bcf8efcf5ee0bc528c [file] [log] [blame]
robertphillips76948d42016-05-04 12:47:41 -07001/*
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 Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/private/GrTextureProxy.h"
9#include "src/gpu/GrTextureProxyPriv.h"
robertphillips76948d42016-05-04 12:47:41 -070010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#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"
robertphillips76948d42016-05-04 12:47:41 -070017
Brian Salomon58389b92018-03-07 13:01:25 -050018// Deferred version - with data
Greg Daniel4065d452018-11-16 15:43:41 -050019GrTextureProxy::GrTextureProxy(const GrBackendFormat& format, const GrSurfaceDesc& srcDesc,
20 GrMipMapped mipMapped, SkBackingFit fit, SkBudgeted budgeted,
Brian Salomon7226c232018-07-30 13:13:17 -040021 const void* srcData, size_t /*rowBytes*/,
22 GrInternalSurfaceFlags surfaceFlags)
Greg Daniel4065d452018-11-16 15:43:41 -050023 : INHERITED(format, srcDesc, kTopLeft_GrSurfaceOrigin, fit, budgeted, surfaceFlags)
Greg Danielf6f7b672018-02-15 13:06:26 -050024 , fMipMapped(mipMapped)
Robert Phillips1afd4cd2018-01-08 13:40:32 -050025 , fProxyProvider(nullptr)
Brian Osman099fa0f2017-10-02 16:38:32 -040026 , fDeferredUploader(nullptr) {
Brian Salomonbb5711a2017-05-17 13:49:59 -040027 SkASSERT(!srcData); // currently handled in Make()
robertphillips8abb3702016-08-31 14:04:06 -070028}
29
Brian Salomon58389b92018-03-07 13:01:25 -050030// Deferred version - no data
Greg Daniel4065d452018-11-16 15:43:41 -050031GrTextureProxy::GrTextureProxy(const GrBackendFormat& format, const GrSurfaceDesc& srcDesc,
32 GrSurfaceOrigin origin, GrMipMapped mipMapped,
33 SkBackingFit fit, SkBudgeted budgeted,
34 GrInternalSurfaceFlags surfaceFlags)
35 : INHERITED(format, srcDesc, origin, fit, budgeted, surfaceFlags)
Brian Salomon58389b92018-03-07 13:01:25 -050036 , fMipMapped(mipMapped)
37 , fProxyProvider(nullptr)
38 , fDeferredUploader(nullptr) {}
39
Chris Dalton706a6ff2017-11-29 22:01:06 -070040// Lazy-callback version
Greg Daniel457469c2018-02-08 15:05:44 -050041GrTextureProxy::GrTextureProxy(LazyInstantiateCallback&& callback, LazyInstantiationType lazyType,
Greg Daniel4065d452018-11-16 15:43:41 -050042 const GrBackendFormat& format, const GrSurfaceDesc& desc,
43 GrSurfaceOrigin origin, GrMipMapped mipMapped, SkBackingFit fit,
Brian Salomon7226c232018-07-30 13:13:17 -040044 SkBudgeted budgeted, GrInternalSurfaceFlags surfaceFlags)
Greg Daniel4065d452018-11-16 15:43:41 -050045 : INHERITED(std::move(callback), lazyType, format, desc, origin, fit, budgeted,
46 surfaceFlags)
Greg Daniel65fa8ca2018-01-10 17:06:31 -050047 , fMipMapped(mipMapped)
Robert Phillips1afd4cd2018-01-08 13:40:32 -050048 , fProxyProvider(nullptr)
Brian Salomon7226c232018-07-30 13:13:17 -040049 , fDeferredUploader(nullptr) {}
Chris Dalton706a6ff2017-11-29 22:01:06 -070050
51// Wrapped version
Robert Phillips066f0202017-07-25 10:16:35 -040052GrTextureProxy::GrTextureProxy(sk_sp<GrSurface> surf, GrSurfaceOrigin origin)
53 : INHERITED(std::move(surf), origin, SkBackingFit::kExact)
Greg Daniele252f082017-10-23 16:05:23 -040054 , fMipMapped(fTarget->asTexture()->texturePriv().mipMapped())
Robert Phillips1afd4cd2018-01-08 13:40:32 -050055 , fProxyProvider(nullptr)
Brian Osman099fa0f2017-10-02 16:38:32 -040056 , fDeferredUploader(nullptr) {
Robert Phillipsae7d3f32017-09-21 08:26:08 -040057 if (fTarget->getUniqueKey().isValid()) {
Robert Phillips9da87e02019-02-04 13:26:26 -050058 fProxyProvider = fTarget->asTexture()->getContext()->priv().proxyProvider();
Robert Phillips1afd4cd2018-01-08 13:40:32 -050059 fProxyProvider->adoptUniqueKeyFromSurface(this, fTarget);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040060 }
61}
62
63GrTextureProxy::~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 Phillips0790f8a2018-09-18 13:11:03 -040067
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 Phillips427966a2018-12-20 17:20:43 -050072 fProxyProvider->processInvalidUniqueKey(fUniqueKey, this,
73 GrProxyProvider::InvalidateGPUResource::kNo);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040074 } else {
Robert Phillips1afd4cd2018-01-08 13:40:32 -050075 SkASSERT(!fProxyProvider);
Robert Phillipsae7d3f32017-09-21 08:26:08 -040076 }
Robert Phillipseee4d6e2017-06-05 09:26:07 -040077}
robertphillips76948d42016-05-04 12:47:41 -070078
Robert Phillips73cc4e82019-04-01 07:46:13 -040079bool GrTextureProxy::instantiate(GrResourceProvider* resourceProvider,
80 bool dontForceNoPendingIO) {
Greg Daniel0a375db2018-02-01 12:21:39 -050081 if (LazyState::kNot != this->lazyInstantiationState()) {
82 return false;
83 }
Brian Salomonbdecacf2018-02-02 20:32:49 -050084 if (!this->instantiateImpl(resourceProvider, 1, /* needsStencil = */ false,
Greg Danield2d8e922018-02-12 12:07:39 -050085 kNone_GrSurfaceFlags, fMipMapped,
Robert Phillips73cc4e82019-04-01 07:46:13 -040086 fUniqueKey.isValid() ? &fUniqueKey : nullptr,
87 dontForceNoPendingIO)) {
Robert Phillipseee4d6e2017-06-05 09:26:07 -040088 return false;
robertphillips76948d42016-05-04 12:47:41 -070089 }
Robert Phillipseee4d6e2017-06-05 09:26:07 -040090
Greg Daniele252f082017-10-23 16:05:23 -040091 SkASSERT(!fTarget->asRenderTarget());
Robert Phillipseee4d6e2017-06-05 09:26:07 -040092 SkASSERT(fTarget->asTexture());
93 return true;
robertphillips76948d42016-05-04 12:47:41 -070094}
95
Robert Phillips5af44de2017-07-18 14:49:38 -040096sk_sp<GrSurface> GrTextureProxy::createSurface(GrResourceProvider* resourceProvider) const {
Robert Phillips7eeb74f2019-03-29 07:26:46 -040097 sk_sp<GrSurface> surface = this->createSurfaceImpl(resourceProvider, 1,
98 /* needsStencil = */ false,
99 kNone_GrSurfaceFlags,
Robert Phillips73cc4e82019-04-01 07:46:13 -0400100 fMipMapped, true);
Robert Phillips5af44de2017-07-18 14:49:38 -0400101 if (!surface) {
102 return nullptr;
103 }
104
Greg Daniele252f082017-10-23 16:05:23 -0400105 SkASSERT(!surface->asRenderTarget());
Robert Phillips5af44de2017-07-18 14:49:38 -0400106 SkASSERT(surface->asTexture());
107 return surface;
108}
109
Brian Osman099fa0f2017-10-02 16:38:32 -0400110void GrTextureProxyPriv::setDeferredUploader(std::unique_ptr<GrDeferredProxyUploader> uploader) {
111 SkASSERT(!fTextureProxy->fDeferredUploader);
112 fTextureProxy->fDeferredUploader = std::move(uploader);
113}
114
115void GrTextureProxyPriv::scheduleUpload(GrOpFlushState* flushState) {
Robert Phillipsa3f70262018-02-08 10:59:38 -0500116 // The texture proxy's contents may already have been uploaded or instantiation may have failed
117 if (fTextureProxy->fDeferredUploader && fTextureProxy->fTarget) {
Brian Osman099fa0f2017-10-02 16:38:32 -0400118 fTextureProxy->fDeferredUploader->scheduleUpload(flushState, fTextureProxy);
119 }
120}
121
122void GrTextureProxyPriv::resetDeferredUploader() {
123 SkASSERT(fTextureProxy->fDeferredUploader);
124 fTextureProxy->fDeferredUploader.reset();
125}
126
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400127GrSamplerState::Filter GrTextureProxy::highestFilterMode() const {
Brian Salomone632dfc2018-08-01 13:01:16 -0400128 return this->hasRestrictedSampling() ? GrSamplerState::Filter::kBilerp
129 : GrSamplerState::Filter::kMipMap;
Robert Phillips49081d12017-05-08 13:41:35 -0400130}
131
Greg Daniel3b2ebbb2018-02-09 10:49:23 -0500132GrMipMapped GrTextureProxy::mipMapped() const {
Brian Salomonfd98c2c2018-07-31 17:25:29 -0400133 if (this->isInstantiated()) {
134 return this->peekTexture()->texturePriv().mipMapped();
Greg Daniel3b2ebbb2018-02-09 10:49:23 -0500135 }
136 return fMipMapped;
137}
138
Brian Salomonbb5711a2017-05-17 13:49:59 -0400139size_t GrTextureProxy::onUninstantiatedGpuMemorySize() const {
Chris Dalton706a6ff2017-11-29 22:01:06 -0700140 return GrSurface::ComputeSize(this->config(), this->width(), this->height(), 1,
Brian Salomonfd98c2c2018-07-31 17:25:29 -0400141 this->proxyMipMapped(), !this->priv().isExact());
Robert Phillips8bc06d02016-11-01 17:28:40 -0400142}
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400143
Greg Daniel45723ac2018-11-30 10:12:43 -0500144bool GrTextureProxy::ProxiesAreCompatibleAsDynamicState(const GrTextureProxy* first,
145 const GrTextureProxy* second) {
146 return first->config() == second->config() &&
147 first->textureType() == second->textureType() &&
148 first->backendFormat() == second->backendFormat();
149}
150
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500151void GrTextureProxy::setUniqueKey(GrProxyProvider* proxyProvider, const GrUniqueKey& key) {
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400152 SkASSERT(key.isValid());
153 SkASSERT(!fUniqueKey.isValid()); // proxies can only ever get one uniqueKey
154
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400155 if (fTarget && fSyncTargetKey) {
Robert Phillipsadbe1322018-01-17 13:35:46 -0500156 if (!fTarget->getUniqueKey().isValid()) {
157 fTarget->resourcePriv().setUniqueKey(key);
158 }
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400159 SkASSERT(fTarget->getUniqueKey() == key);
160 }
161
162 fUniqueKey = key;
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500163 fProxyProvider = proxyProvider;
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400164}
165
166void GrTextureProxy::clearUniqueKey() {
167 fUniqueKey.reset();
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500168 fProxyProvider = nullptr;
Robert Phillipsae7d3f32017-09-21 08:26:08 -0400169}
170
Chris Dalton706a6ff2017-11-29 22:01:06 -0700171#ifdef SK_DEBUG
Greg Daniel849dce12018-04-24 14:32:53 -0400172void GrTextureProxy::onValidateSurface(const GrSurface* surface) {
Robert Phillipse8fabb22018-02-04 14:33:21 -0500173 SkASSERT(!surface->asRenderTarget());
174
175 // Anything that is checked here should be duplicated in GrTextureRenderTargetProxy's version
176 SkASSERT(surface->asTexture());
Brian Salomonfd98c2c2018-07-31 17:25:29 -0400177 SkASSERT(GrMipMapped::kNo == this->proxyMipMapped() ||
Robert Phillips6ba15ec2018-02-08 16:26:47 -0500178 GrMipMapped::kYes == surface->asTexture()->texturePriv().mipMapped());
Brian Salomonc67c31c2018-12-06 10:00:03 -0500179
Greg Daniel4065d452018-11-16 15:43:41 -0500180 SkASSERT(surface->asTexture()->texturePriv().textureType() == this->textureType());
Brian Salomonc67c31c2018-12-06 10:00:03 -0500181
182 GrInternalSurfaceFlags proxyFlags = fSurfaceFlags;
183 GrInternalSurfaceFlags surfaceFlags = surface->surfacePriv().flags();
184 SkASSERT((proxyFlags & GrInternalSurfaceFlags::kTextureMask) ==
185 (surfaceFlags & GrInternalSurfaceFlags::kTextureMask));
Chris Dalton706a6ff2017-11-29 22:01:06 -0700186}
Brian Salomonc67c31c2018-12-06 10:00:03 -0500187
Chris Dalton706a6ff2017-11-29 22:01:06 -0700188#endif
189