blob: 33d67fe41593279ef27767cdd8dd5cd8a6bf30ee [file] [log] [blame]
Brian Osman13dddce2017-05-09 13:19:50 -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
Robert Phillips4e105e22020-07-16 09:18:50 -04008#include "include/gpu/GrDirectContext.h"
Robert Phillipsb7bfbc22020-07-01 12:55:01 -04009#include "include/gpu/GrRecordingContext.h"
Ben Wagner21bca282019-05-15 10:15:52 -040010#include "src/core/SkMessageBus.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "src/gpu/GrBackendTextureImageGenerator.h"
Adlai Hollera0693042020-10-14 11:23:11 -040012#include "src/gpu/GrDirectContextPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "src/gpu/GrGpu.h"
14#include "src/gpu/GrProxyProvider.h"
15#include "src/gpu/GrRecordingContextPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "src/gpu/GrResourceCache.h"
17#include "src/gpu/GrResourceProvider.h"
18#include "src/gpu/GrResourceProviderPriv.h"
19#include "src/gpu/GrSemaphore.h"
Greg Daniel456f9b52020-03-05 19:14:18 +000020#include "src/gpu/GrTexture.h"
Adlai Holler9e2c50e2021-02-09 14:41:52 -050021#include "src/gpu/GrTextureProxyPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "src/gpu/SkGr.h"
23#include "src/gpu/gl/GrGLTexture.h"
Brian Osman13dddce2017-05-09 13:19:50 -040024
Robert Phillipsd074b622021-03-15 08:49:24 -040025GrBackendTextureImageGenerator::RefHelper::RefHelper(
26 GrTexture* texture,
27 GrDirectContext::DirectContextID owningContextID,
28 std::unique_ptr<GrSemaphore> semaphore)
Brian Salomonb916b7b2019-04-01 13:34:34 -040029 : fOriginalTexture(texture)
30 , fOwningContextID(owningContextID)
31 , fBorrowingContextReleaseProc(nullptr)
Greg Daniel301015c2019-11-18 14:06:46 -050032 , fSemaphore(std::move(semaphore)) {}
Brian Salomonb916b7b2019-04-01 13:34:34 -040033
Brian Osman13dddce2017-05-09 13:19:50 -040034GrBackendTextureImageGenerator::RefHelper::~RefHelper() {
Robert Phillipsd074b622021-03-15 08:49:24 -040035 SkASSERT(!fBorrowingContextID.isValid());
Brian Osman13dddce2017-05-09 13:19:50 -040036
37 // Generator has been freed, and no one is borrowing the texture. Notify the original cache
38 // that it can free the last ref, so it happens on the correct thread.
Robert Phillipsddc21482019-10-16 14:30:09 -040039 GrTextureFreedMessage msg { fOriginalTexture, fOwningContextID };
Robert Phillipsd074b622021-03-15 08:49:24 -040040 SkMessageBus<GrTextureFreedMessage, GrDirectContext::DirectContextID>::Post(msg);
Brian Osman13dddce2017-05-09 13:19:50 -040041}
42
Brian Osman13dddce2017-05-09 13:19:50 -040043std::unique_ptr<SkImageGenerator>
Robert Phillipsb0e93a22017-08-29 08:26:54 -040044GrBackendTextureImageGenerator::Make(sk_sp<GrTexture> texture, GrSurfaceOrigin origin,
Greg Daniel301015c2019-11-18 14:06:46 -050045 std::unique_ptr<GrSemaphore> semaphore, SkColorType colorType,
Brian Osman13dddce2017-05-09 13:19:50 -040046 SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) {
Robert Phillipsd074b622021-03-15 08:49:24 -040047 GrDirectContext* dContext = texture->getContext();
Brian Osman13dddce2017-05-09 13:19:50 -040048
49 // Attach our texture to this context's resource cache. This ensures that deletion will happen
50 // in the correct thread/context. This adds the only ref to the texture that will persist from
51 // this point. That ref will be released when the generator's RefHelper is freed.
Robert Phillipsd074b622021-03-15 08:49:24 -040052 dContext->priv().getResourceCache()->insertDelayedTextureUnref(texture.get());
Brian Osman13dddce2017-05-09 13:19:50 -040053
Robert Phillipsb67821d2017-12-13 15:00:45 -050054 GrBackendTexture backendTexture = texture->getBackendTexture();
Robert Phillipsc80b0e92019-07-23 10:27:09 -040055
Robert Phillipsd074b622021-03-15 08:49:24 -040056 if (!dContext->priv().caps()->areColorTypeAndFormatCompatible(
Robert Phillips62221e72019-07-24 15:07:38 -040057 SkColorTypeToGrColorType(colorType), backendTexture.getBackendFormat())) {
58 return nullptr;
Brian Osman052ef692018-03-27 09:56:31 -040059 }
Brian Osman13dddce2017-05-09 13:19:50 -040060
61 SkImageInfo info = SkImageInfo::Make(texture->width(), texture->height(), colorType, alphaType,
62 std::move(colorSpace));
63 return std::unique_ptr<SkImageGenerator>(new GrBackendTextureImageGenerator(
Robert Phillipsd074b622021-03-15 08:49:24 -040064 info, texture.get(), origin, dContext->directContextID(),
Robert Phillipsfd0d9702019-02-01 10:19:42 -050065 std::move(semaphore), backendTexture));
Brian Osman13dddce2017-05-09 13:19:50 -040066}
67
Greg Daniel301015c2019-11-18 14:06:46 -050068GrBackendTextureImageGenerator::GrBackendTextureImageGenerator(
Robert Phillipsd074b622021-03-15 08:49:24 -040069 const SkImageInfo& info,
70 GrTexture* texture,
71 GrSurfaceOrigin origin,
72 GrDirectContext::DirectContextID owningContextID,
73 std::unique_ptr<GrSemaphore> semaphore,
74 const GrBackendTexture& backendTex)
Brian Salomonb916b7b2019-04-01 13:34:34 -040075 : INHERITED(info)
Greg Daniel301015c2019-11-18 14:06:46 -050076 , fRefHelper(new RefHelper(texture, owningContextID, std::move(semaphore)))
Brian Salomonb916b7b2019-04-01 13:34:34 -040077 , fBackendTexture(backendTex)
Brian Salomonb916b7b2019-04-01 13:34:34 -040078 , fSurfaceOrigin(origin) {}
Brian Osman13dddce2017-05-09 13:19:50 -040079
80GrBackendTextureImageGenerator::~GrBackendTextureImageGenerator() {
81 fRefHelper->unref();
82}
83
Brian Osman13dddce2017-05-09 13:19:50 -040084///////////////////////////////////////////////////////////////////////////////////////////////////
85
Brian Osman13dddce2017-05-09 13:19:50 -040086void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) {
87 RefHelper* refHelper = static_cast<RefHelper*>(ctx);
88 SkASSERT(refHelper);
89
Greg Danielabba9982018-02-01 10:07:57 -050090 refHelper->fBorrowingContextReleaseProc = nullptr;
Robert Phillipsd074b622021-03-15 08:49:24 -040091 refHelper->fBorrowingContextID.makeInvalid();
Brian Osman13dddce2017-05-09 13:19:50 -040092 refHelper->unref();
93}
94
Brian Salomonbc074a62020-03-18 10:06:13 -040095GrSurfaceProxyView GrBackendTextureImageGenerator::onGenerateTexture(
Robert Phillipsd074b622021-03-15 08:49:24 -040096 GrRecordingContext* rContext,
Brian Salomonbc074a62020-03-18 10:06:13 -040097 const SkImageInfo& info,
98 const SkIPoint& origin,
Brian Salomon7e67dca2020-07-21 09:27:25 -040099 GrMipmapped mipMapped,
Brian Salomonbc074a62020-03-18 10:06:13 -0400100 GrImageTexGenPolicy texGenPolicy) {
Robert Phillipsd074b622021-03-15 08:49:24 -0400101 SkASSERT(rContext);
Brian Osman13dddce2017-05-09 13:19:50 -0400102
Robert Phillipsd074b622021-03-15 08:49:24 -0400103 // We currently limit GrBackendTextureImageGenerators to direct contexts since
104 // only Flutter uses them and doesn't use recording/DDL contexts. Ideally, the
105 // cross context texture functionality can be subsumed by the thread-safe cache
106 // working with utility contexts.
107 auto dContext = rContext->asDirectContext();
108 if (!dContext) {
109 return {};
110 }
111
112 if (dContext->backend() != fBackendTexture.backend()) {
Greg Danielcc104db2020-02-03 14:17:08 -0500113 return {};
Brian Osman13dddce2017-05-09 13:19:50 -0400114 }
Brian Osman052ef692018-03-27 09:56:31 -0400115 if (info.colorType() != this->getInfo().colorType()) {
Greg Danielcc104db2020-02-03 14:17:08 -0500116 return {};
Brian Osman052ef692018-03-27 09:56:31 -0400117 }
Brian Osman13dddce2017-05-09 13:19:50 -0400118
Robert Phillipsd074b622021-03-15 08:49:24 -0400119 auto proxyProvider = dContext->priv().proxyProvider();
Robert Phillips777707b2018-01-17 11:40:14 -0500120
Greg Danielabba9982018-02-01 10:07:57 -0500121 fBorrowingMutex.acquire();
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500122 sk_sp<GrRefCntedCallback> releaseProcHelper;
Robert Phillipsd074b622021-03-15 08:49:24 -0400123 if (fRefHelper->fBorrowingContextID.isValid()) {
124 if (fRefHelper->fBorrowingContextID != dContext->directContextID()) {
Greg Danielabba9982018-02-01 10:07:57 -0500125 fBorrowingMutex.release();
Robert Phillipsd074b622021-03-15 08:49:24 -0400126 rContext->priv().printWarningMessage(
Chris Dalton5a5fe792020-02-15 11:41:30 -0700127 "GrBackendTextureImageGenerator: Trying to use texture on two GrContexts!\n");
Greg Danielcc104db2020-02-03 14:17:08 -0500128 return {};
Greg Danielabba9982018-02-01 10:07:57 -0500129 } else {
130 SkASSERT(fRefHelper->fBorrowingContextReleaseProc);
131 // Ref the release proc to be held by the proxy we make below
132 releaseProcHelper = sk_ref_sp(fRefHelper->fBorrowingContextReleaseProc);
Greg Daniel966db9e2018-01-12 13:15:06 -0500133 }
Greg Danielabba9982018-02-01 10:07:57 -0500134 } else {
135 SkASSERT(!fRefHelper->fBorrowingContextReleaseProc);
136 // The ref we add to fRefHelper here will be passed into and owned by the
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500137 // GrRefCntedCallback.
Greg Danielabba9982018-02-01 10:07:57 -0500138 fRefHelper->ref();
Brian Salomon694ff172020-11-04 16:54:28 -0500139 releaseProcHelper =
140 GrRefCntedCallback::Make(ReleaseRefHelper_TextureReleaseProc, fRefHelper);
Greg Danielabba9982018-02-01 10:07:57 -0500141 fRefHelper->fBorrowingContextReleaseProc = releaseProcHelper.get();
Brian Osman13dddce2017-05-09 13:19:50 -0400142 }
Robert Phillipsd074b622021-03-15 08:49:24 -0400143 fRefHelper->fBorrowingContextID = dContext->directContextID();
Brian Salomonb916b7b2019-04-01 13:34:34 -0400144 if (!fRefHelper->fBorrowedTextureKey.isValid()) {
145 static const auto kDomain = GrUniqueKey::GenerateDomain();
146 GrUniqueKey::Builder builder(&fRefHelper->fBorrowedTextureKey, kDomain, 1);
147 builder[0] = this->uniqueID();
148 }
Greg Danielabba9982018-02-01 10:07:57 -0500149 fBorrowingMutex.release();
Brian Osman13dddce2017-05-09 13:19:50 -0400150
Robert Phillipsd074b622021-03-15 08:49:24 -0400151 SkASSERT(fRefHelper->fBorrowingContextID == dContext->directContextID());
Brian Osman13dddce2017-05-09 13:19:50 -0400152
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400153 GrBackendFormat backendFormat = fBackendTexture.getBackendFormat();
154 SkASSERT(backendFormat.isValid());
155
156 GrColorType grColorType = SkColorTypeToGrColorType(info.colorType());
157
Brian Salomon40a40622020-07-21 10:32:07 -0400158 GrMipmapped textureIsMipMapped = fBackendTexture.hasMipmaps() ? GrMipmapped::kYes
Brian Salomon7e67dca2020-07-21 09:27:25 -0400159 : GrMipmapped::kNo;
Greg Daniele728f672018-01-17 10:52:04 -0500160
Chris Dalton95d8ceb2019-07-30 11:17:59 -0600161 // Ganesh assumes that, when wrapping a mipmapped backend texture from a client, that its
162 // mipmaps are fully fleshed out.
Brian Salomon40a40622020-07-21 10:32:07 -0400163 GrMipmapStatus mipmapStatus = fBackendTexture.hasMipmaps()
Brian Salomona6db5102020-07-21 09:56:23 -0400164 ? GrMipmapStatus::kValid : GrMipmapStatus::kNotAllocated;
Chris Dalton95d8ceb2019-07-30 11:17:59 -0600165
Robert Phillipsd074b622021-03-15 08:49:24 -0400166 GrSwizzle readSwizzle = dContext->priv().caps()->getReadSwizzle(backendFormat, grColorType);
Greg Danielce3ddaa2020-01-22 16:58:15 -0500167
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400168 // Must make copies of member variables to capture in the lambda since this image generator may
169 // be deleted before we actually execute the lambda.
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400170 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy(
171 [refHelper = fRefHelper, releaseProcHelper, backendTexture = fBackendTexture](
Brian Salomon63410e92020-03-23 18:32:50 -0400172 GrResourceProvider* resourceProvider,
173 const GrSurfaceProxy::LazySurfaceDesc&) -> GrSurfaceProxy::LazyCallbackResult {
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400174 if (refHelper->fSemaphore) {
175 resourceProvider->priv().gpu()->waitSemaphore(refHelper->fSemaphore.get());
176 }
Greg Daniele728f672018-01-17 10:52:04 -0500177
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400178 // If a client re-draws the same image multiple times, the texture we return
179 // will be cached and re-used. If they draw a subset, though, we may be
180 // re-called. In that case, we want to re-use the borrowed texture we've
181 // previously created.
182 sk_sp<GrTexture> tex;
183 SkASSERT(refHelper->fBorrowedTextureKey.isValid());
184 auto surf = resourceProvider->findByUniqueKey<GrSurface>(
185 refHelper->fBorrowedTextureKey);
186 if (surf) {
187 SkASSERT(surf->asTexture());
188 tex = sk_ref_sp(surf->asTexture());
189 } else {
190 // We just gained access to the texture. If we're on the original
191 // context, we could use the original texture, but we'd have no way of
192 // detecting that it's no longer in-use. So we always make a wrapped
193 // copy, where the release proc informs us that the context is done with
194 // it. This is unfortunate - we'll have two texture objects referencing
195 // the same GPU object. However, no client can ever see the original
196 // texture, so this should be safe. We make the texture uncacheable so
197 // that the release proc is called ASAP.
198 tex = resourceProvider->wrapBackendTexture(
199 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo,
200 kRead_GrIOType);
201 if (!tex) {
202 return {};
203 }
204 tex->setRelease(releaseProcHelper);
205 tex->resourcePriv().setUniqueKey(refHelper->fBorrowedTextureKey);
206 }
207 // We use keys to avoid re-wrapping the GrBackendTexture in a GrTexture.
208 // This is unrelated to the whatever SkImage key may be assigned to the
209 // proxy.
210 return {std::move(tex), true, GrSurfaceProxy::LazyInstantiationKeyMode::kUnsynced};
211 },
Greg Danielc113f002020-08-26 13:28:22 -0400212 backendFormat, fBackendTexture.dimensions(), textureIsMipMapped, mipmapStatus,
213 GrInternalSurfaceFlags::kReadOnly, SkBackingFit::kExact, SkBudgeted::kNo,
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400214 GrProtected::kNo, GrSurfaceProxy::UseAllocator::kYes);
Greg Daniele3204862018-04-16 11:24:10 -0400215 if (!proxy) {
Greg Danielcc104db2020-02-03 14:17:08 -0500216 return {};
Greg Daniele3204862018-04-16 11:24:10 -0400217 }
218
Brian Salomonbc074a62020-03-18 10:06:13 -0400219 if (texGenPolicy == GrImageTexGenPolicy::kDraw && origin.isZero() &&
220 info.dimensions() == fBackendTexture.dimensions() &&
Brian Salomon8c82a872020-07-21 12:09:58 -0400221 (mipMapped == GrMipmapped::kNo || proxy->mipmapped() == GrMipmapped::kYes)) {
Greg Daniel261b8aa2017-10-23 09:37:36 -0400222 // If the caller wants the entire texture and we have the correct mip support, we're done
Greg Danielcc104db2020-02-03 14:17:08 -0500223 return GrSurfaceProxyView(std::move(proxy), fSurfaceOrigin, readSwizzle);
Brian Osman13dddce2017-05-09 13:19:50 -0400224 } else {
Greg Daniel4c6f9b72019-06-06 13:40:59 -0400225 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height());
Greg Daniel4c6f9b72019-06-06 13:40:59 -0400226
Brian Salomonbc074a62020-03-18 10:06:13 -0400227 SkBudgeted budgeted = texGenPolicy == GrImageTexGenPolicy::kNew_Uncached_Unbudgeted
228 ? SkBudgeted::kNo
229 : SkBudgeted::kYes;
230
Robert Phillipsd074b622021-03-15 08:49:24 -0400231 auto copy = GrSurfaceProxy::Copy(dContext,
Brian Salomon982127b2021-01-21 10:43:35 -0500232 std::move(proxy),
233 fSurfaceOrigin,
234 mipMapped,
235 subset,
236 SkBackingFit::kExact,
237 budgeted);
Brian Salomonc5243782020-04-02 12:50:34 -0400238 return {std::move(copy), fSurfaceOrigin, readSwizzle};
Brian Osman13dddce2017-05-09 13:19:50 -0400239 }
240}