blob: b968e1418fb823d1b4742277e6f5751998d51462 [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
8#include "GrBackendTextureImageGenerator.h"
Brian Osman13dddce2017-05-09 13:19:50 -04009#include "GrContext.h"
10#include "GrContextPriv.h"
Robert Phillips646e4292017-06-13 12:44:56 -040011#include "GrGpu.h"
Robert Phillips777707b2018-01-17 11:40:14 -050012#include "GrProxyProvider.h"
Greg Daniel261b8aa2017-10-23 09:37:36 -040013#include "GrRenderTargetContext.h"
Brian Osman13dddce2017-05-09 13:19:50 -040014#include "GrResourceCache.h"
15#include "GrResourceProvider.h"
Greg Daniele728f672018-01-17 10:52:04 -050016#include "GrResourceProviderPriv.h"
Brian Osman13dddce2017-05-09 13:19:50 -040017#include "GrSemaphore.h"
Robert Phillips646e4292017-06-13 12:44:56 -040018#include "GrTexture.h"
Greg Daniel261b8aa2017-10-23 09:37:36 -040019#include "GrTexturePriv.h"
Greg Daniele3204862018-04-16 11:24:10 -040020#include "GrTextureProxyPriv.h"
Brian Osman13dddce2017-05-09 13:19:50 -040021#include "SkGr.h"
22#include "SkMessageBus.h"
Brian Salomon7226c232018-07-30 13:13:17 -040023#include "gl/GrGLTexture.h"
Brian Osman13dddce2017-05-09 13:19:50 -040024
25GrBackendTextureImageGenerator::RefHelper::~RefHelper() {
26 SkASSERT(nullptr == fBorrowedTexture);
Brian Osman13dddce2017-05-09 13:19:50 -040027
28 // Generator has been freed, and no one is borrowing the texture. Notify the original cache
29 // that it can free the last ref, so it happens on the correct thread.
30 GrGpuResourceFreedMessage msg { fOriginalTexture, fOwningContextID };
31 SkMessageBus<GrGpuResourceFreedMessage>::Post(msg);
32}
33
Brian Osman13dddce2017-05-09 13:19:50 -040034std::unique_ptr<SkImageGenerator>
Robert Phillipsb0e93a22017-08-29 08:26:54 -040035GrBackendTextureImageGenerator::Make(sk_sp<GrTexture> texture, GrSurfaceOrigin origin,
Brian Osman052ef692018-03-27 09:56:31 -040036 sk_sp<GrSemaphore> semaphore, SkColorType colorType,
Brian Osman13dddce2017-05-09 13:19:50 -040037 SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) {
Brian Osman13dddce2017-05-09 13:19:50 -040038 GrContext* context = texture->getContext();
39
40 // Attach our texture to this context's resource cache. This ensures that deletion will happen
41 // in the correct thread/context. This adds the only ref to the texture that will persist from
42 // this point. That ref will be released when the generator's RefHelper is freed.
Robert Phillips9da87e02019-02-04 13:26:26 -050043 context->priv().getResourceCache()->insertCrossContextGpuResource(texture.get());
Brian Osman13dddce2017-05-09 13:19:50 -040044
Robert Phillipsb67821d2017-12-13 15:00:45 -050045 GrBackendTexture backendTexture = texture->getBackendTexture();
Brian Salomonf391d0f2018-12-14 09:18:50 -050046 GrBackendFormat backendFormat = backendTexture.getBackendFormat();
47 if (!backendFormat.isValid()) {
48 return nullptr;
49 }
50 backendTexture.fConfig =
Robert Phillips9da87e02019-02-04 13:26:26 -050051 context->priv().caps()->getConfigFromBackendFormat(backendFormat, colorType);
Brian Salomonf391d0f2018-12-14 09:18:50 -050052 if (backendTexture.fConfig == kUnknown_GrPixelConfig) {
Brian Osman052ef692018-03-27 09:56:31 -040053 return nullptr;
54 }
Brian Osman13dddce2017-05-09 13:19:50 -040055
56 SkImageInfo info = SkImageInfo::Make(texture->width(), texture->height(), colorType, alphaType,
57 std::move(colorSpace));
58 return std::unique_ptr<SkImageGenerator>(new GrBackendTextureImageGenerator(
Robert Phillips9da87e02019-02-04 13:26:26 -050059 info, texture.get(), origin, context->priv().contextID(),
Robert Phillipsfd0d9702019-02-01 10:19:42 -050060 std::move(semaphore), backendTexture));
Brian Osman13dddce2017-05-09 13:19:50 -040061}
62
63GrBackendTextureImageGenerator::GrBackendTextureImageGenerator(const SkImageInfo& info,
64 GrTexture* texture,
Robert Phillipsb0e93a22017-08-29 08:26:54 -040065 GrSurfaceOrigin origin,
Brian Osman13dddce2017-05-09 13:19:50 -040066 uint32_t owningContextID,
67 sk_sp<GrSemaphore> semaphore,
68 const GrBackendTexture& backendTex)
69 : INHERITED(info)
70 , fRefHelper(new RefHelper(texture, owningContextID))
71 , fSemaphore(std::move(semaphore))
Brian Osman13dddce2017-05-09 13:19:50 -040072 , fBackendTexture(backendTex)
Greg Daniele728f672018-01-17 10:52:04 -050073 , fConfig(backendTex.config())
Robert Phillipsb0e93a22017-08-29 08:26:54 -040074 , fSurfaceOrigin(origin) { }
Brian Osman13dddce2017-05-09 13:19:50 -040075
76GrBackendTextureImageGenerator::~GrBackendTextureImageGenerator() {
77 fRefHelper->unref();
78}
79
Brian Osman13dddce2017-05-09 13:19:50 -040080///////////////////////////////////////////////////////////////////////////////////////////////////
81
Brian Osman13dddce2017-05-09 13:19:50 -040082void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) {
83 RefHelper* refHelper = static_cast<RefHelper*>(ctx);
84 SkASSERT(refHelper);
85
Brian Osman13dddce2017-05-09 13:19:50 -040086 refHelper->fBorrowedTexture = nullptr;
Greg Danielabba9982018-02-01 10:07:57 -050087 refHelper->fBorrowingContextReleaseProc = nullptr;
Greg Daniel48661b82018-01-22 16:11:35 -050088 refHelper->fBorrowingContextID = SK_InvalidGenID;
Brian Osman13dddce2017-05-09 13:19:50 -040089 refHelper->unref();
90}
91
Stan Ilievba81af22017-06-08 15:16:53 -040092sk_sp<GrTextureProxy> GrBackendTextureImageGenerator::onGenerateTexture(
Brian Osmanc87cfb62018-07-11 09:08:46 -040093 GrContext* context, const SkImageInfo& info, const SkIPoint& origin, bool willNeedMipMaps) {
Brian Osman13dddce2017-05-09 13:19:50 -040094 SkASSERT(context);
95
Robert Phillips4217ea72019-01-30 13:08:28 -050096 if (context->backend() != fBackendTexture.backend()) {
Brian Osman13dddce2017-05-09 13:19:50 -040097 return nullptr;
98 }
Brian Osman052ef692018-03-27 09:56:31 -040099 if (info.colorType() != this->getInfo().colorType()) {
100 return nullptr;
101 }
Brian Osman13dddce2017-05-09 13:19:50 -0400102
Robert Phillips9da87e02019-02-04 13:26:26 -0500103 auto proxyProvider = context->priv().proxyProvider();
Robert Phillips777707b2018-01-17 11:40:14 -0500104
Greg Danielabba9982018-02-01 10:07:57 -0500105 fBorrowingMutex.acquire();
106 sk_sp<GrReleaseProcHelper> releaseProcHelper;
107 if (SK_InvalidGenID != fRefHelper->fBorrowingContextID) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500108 if (fRefHelper->fBorrowingContextID != context->priv().contextID()) {
Greg Danielabba9982018-02-01 10:07:57 -0500109 fBorrowingMutex.release();
Greg Daniel966db9e2018-01-12 13:15:06 -0500110 return nullptr;
Greg Danielabba9982018-02-01 10:07:57 -0500111 } else {
112 SkASSERT(fRefHelper->fBorrowingContextReleaseProc);
113 // Ref the release proc to be held by the proxy we make below
114 releaseProcHelper = sk_ref_sp(fRefHelper->fBorrowingContextReleaseProc);
Greg Daniel966db9e2018-01-12 13:15:06 -0500115 }
Greg Danielabba9982018-02-01 10:07:57 -0500116 } else {
117 SkASSERT(!fRefHelper->fBorrowingContextReleaseProc);
118 // The ref we add to fRefHelper here will be passed into and owned by the
119 // GrReleaseProcHelper.
120 fRefHelper->ref();
121 releaseProcHelper.reset(new GrReleaseProcHelper(ReleaseRefHelper_TextureReleaseProc,
122 fRefHelper));
123 fRefHelper->fBorrowingContextReleaseProc = releaseProcHelper.get();
Brian Osman13dddce2017-05-09 13:19:50 -0400124 }
Robert Phillips9da87e02019-02-04 13:26:26 -0500125 fRefHelper->fBorrowingContextID = context->priv().contextID();
Greg Danielabba9982018-02-01 10:07:57 -0500126 fBorrowingMutex.release();
Brian Osman13dddce2017-05-09 13:19:50 -0400127
Robert Phillips9da87e02019-02-04 13:26:26 -0500128 SkASSERT(fRefHelper->fBorrowingContextID == context->priv().contextID());
Brian Osman13dddce2017-05-09 13:19:50 -0400129
Greg Daniele728f672018-01-17 10:52:04 -0500130 GrSurfaceDesc desc;
Greg Daniele728f672018-01-17 10:52:04 -0500131 desc.fWidth = fBackendTexture.width();
132 desc.fHeight = fBackendTexture.height();
133 desc.fConfig = fConfig;
134 GrMipMapped mipMapped = fBackendTexture.hasMipMaps() ? GrMipMapped::kYes : GrMipMapped::kNo;
135
136 // Must make copies of member variables to capture in the lambda since this image generator may
137 // be deleted before we actuallly execute the lambda.
Greg Daniele728f672018-01-17 10:52:04 -0500138 sk_sp<GrSemaphore> semaphore = fSemaphore;
139 GrBackendTexture backendTexture = fBackendTexture;
140 RefHelper* refHelper = fRefHelper;
Greg Daniele728f672018-01-17 10:52:04 -0500141
Brian Salomonf391d0f2018-12-14 09:18:50 -0500142 GrBackendFormat format = backendTexture.getBackendFormat();
Greg Daniel4065d452018-11-16 15:43:41 -0500143 SkASSERT(format.isValid());
144
Robert Phillips777707b2018-01-17 11:40:14 -0500145 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500146 [refHelper, releaseProcHelper, semaphore,
147 backendTexture](GrResourceProvider* resourceProvider) {
Greg Daniele728f672018-01-17 10:52:04 -0500148 if (!resourceProvider) {
Greg Daniele728f672018-01-17 10:52:04 -0500149 return sk_sp<GrTexture>();
150 }
151
Greg Daniel48661b82018-01-22 16:11:35 -0500152 if (semaphore) {
Greg Daniele728f672018-01-17 10:52:04 -0500153 resourceProvider->priv().gpu()->waitSemaphore(semaphore);
154 }
155
156 sk_sp<GrTexture> tex;
157 if (refHelper->fBorrowedTexture) {
158 // If a client re-draws the same image multiple times, the texture we return
159 // will be cached and re-used. If they draw a subset, though, we may be
160 // re-called. In that case, we want to re-use the borrowed texture we've
161 // previously created.
162 tex = sk_ref_sp(refHelper->fBorrowedTexture);
163 SkASSERT(tex);
Greg Daniele728f672018-01-17 10:52:04 -0500164 } else {
165 // We just gained access to the texture. If we're on the original context, we
166 // could use the original texture, but we'd have no way of detecting that it's
167 // no longer in-use. So we always make a wrapped copy, where the release proc
168 // informs us that the context is done with it. This is unfortunate - we'll have
169 // two texture objects referencing the same GPU object. However, no client can
170 // ever see the original texture, so this should be safe.
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500171 // We make the texture uncacheable so that the release proc is called ASAP.
Brian Salomonc67c31c2018-12-06 10:00:03 -0500172 tex = resourceProvider->wrapBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500173 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo,
174 kRead_GrIOType);
Greg Daniele728f672018-01-17 10:52:04 -0500175 if (!tex) {
Greg Daniele728f672018-01-17 10:52:04 -0500176 return sk_sp<GrTexture>();
177 }
178 refHelper->fBorrowedTexture = tex.get();
179
Greg Danielabba9982018-02-01 10:07:57 -0500180 tex->setRelease(releaseProcHelper);
Greg Daniele728f672018-01-17 10:52:04 -0500181 }
182
Greg Daniele728f672018-01-17 10:52:04 -0500183 return tex;
Brian Salomon2a4f9832018-03-03 22:43:43 -0500184 },
Brian Salomonc67c31c2018-12-06 10:00:03 -0500185 format, desc, fSurfaceOrigin, mipMapped, GrInternalSurfaceFlags::kReadOnly,
186 SkBackingFit::kExact, SkBudgeted::kNo);
Brian Osman13dddce2017-05-09 13:19:50 -0400187
Greg Daniele3204862018-04-16 11:24:10 -0400188 if (!proxy) {
189 return nullptr;
190 }
191
Brian Osman13dddce2017-05-09 13:19:50 -0400192 if (0 == origin.fX && 0 == origin.fY &&
Greg Daniel261b8aa2017-10-23 09:37:36 -0400193 info.width() == fBackendTexture.width() && info.height() == fBackendTexture.height() &&
Greg Daniele252f082017-10-23 16:05:23 -0400194 (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) {
Greg Daniel261b8aa2017-10-23 09:37:36 -0400195 // If the caller wants the entire texture and we have the correct mip support, we're done
Brian Osman13dddce2017-05-09 13:19:50 -0400196 return proxy;
197 } else {
198 // Otherwise, make a copy of the requested subset. Make sure our temporary is renderable,
Greg Daniel261b8aa2017-10-23 09:37:36 -0400199 // because Vulkan will want to do the copy as a draw. All other copies would require a
200 // layout change in Vulkan and we do not change the layout of borrowed images.
Greg Daniel45d63032017-10-30 13:41:26 -0400201 GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo;
202
Greg Daniel4065d452018-11-16 15:43:41 -0500203 GrBackendFormat format = proxy->backendFormat().makeTexture2D();
204 if (!format.isValid()) {
205 return nullptr;
206 }
207
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500208 sk_sp<GrRenderTargetContext> rtContext(
Robert Phillips9da87e02019-02-04 13:26:26 -0500209 context->priv().makeDeferredRenderTargetContext(
Greg Daniel4065d452018-11-16 15:43:41 -0500210 format, SkBackingFit::kExact, info.width(), info.height(),
211 proxy->config(), nullptr, 1, mipMapped, proxy->origin(), nullptr,
212 SkBudgeted::kYes));
Brian Salomon63e79732017-05-15 21:23:13 -0400213
Greg Daniel261b8aa2017-10-23 09:37:36 -0400214 if (!rtContext) {
Brian Osman13dddce2017-05-09 13:19:50 -0400215 return nullptr;
216 }
217
218 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height());
Greg Daniel261b8aa2017-10-23 09:37:36 -0400219 if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) {
Brian Osman13dddce2017-05-09 13:19:50 -0400220 return nullptr;
221 }
222
Greg Daniel261b8aa2017-10-23 09:37:36 -0400223 return rtContext->asTextureProxyRef();
Brian Osman13dddce2017-05-09 13:19:50 -0400224 }
225}
Greg Daniel9cc28232018-04-06 10:00:09 -0400226