blob: 466a842f23022ffceb750cd15e9d4768d94e17a2 [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"
9
10#include "GrContext.h"
11#include "GrContextPriv.h"
Robert Phillips646e4292017-06-13 12:44:56 -040012#include "GrGpu.h"
Robert Phillips777707b2018-01-17 11:40:14 -050013#include "GrProxyProvider.h"
Greg Daniel261b8aa2017-10-23 09:37:36 -040014#include "GrRenderTargetContext.h"
Brian Osman13dddce2017-05-09 13:19:50 -040015#include "GrResourceCache.h"
16#include "GrResourceProvider.h"
Greg Daniele728f672018-01-17 10:52:04 -050017#include "GrResourceProviderPriv.h"
Brian Osman13dddce2017-05-09 13:19:50 -040018#include "GrSemaphore.h"
Robert Phillips646e4292017-06-13 12:44:56 -040019#include "GrTexture.h"
Greg Daniel261b8aa2017-10-23 09:37:36 -040020#include "GrTexturePriv.h"
Greg Daniele3204862018-04-16 11:24:10 -040021#include "GrTextureProxyPriv.h"
Brian Osman13dddce2017-05-09 13:19:50 -040022
23#include "SkGr.h"
24#include "SkMessageBus.h"
25
26GrBackendTextureImageGenerator::RefHelper::~RefHelper() {
27 SkASSERT(nullptr == fBorrowedTexture);
Brian Osman13dddce2017-05-09 13:19:50 -040028
29 // Generator has been freed, and no one is borrowing the texture. Notify the original cache
30 // that it can free the last ref, so it happens on the correct thread.
31 GrGpuResourceFreedMessage msg { fOriginalTexture, fOwningContextID };
32 SkMessageBus<GrGpuResourceFreedMessage>::Post(msg);
33}
34
Brian Osman13dddce2017-05-09 13:19:50 -040035std::unique_ptr<SkImageGenerator>
Robert Phillipsb0e93a22017-08-29 08:26:54 -040036GrBackendTextureImageGenerator::Make(sk_sp<GrTexture> texture, GrSurfaceOrigin origin,
Brian Osman052ef692018-03-27 09:56:31 -040037 sk_sp<GrSemaphore> semaphore, SkColorType colorType,
Brian Osman13dddce2017-05-09 13:19:50 -040038 SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) {
Brian Osman13dddce2017-05-09 13:19:50 -040039 GrContext* context = texture->getContext();
40
41 // Attach our texture to this context's resource cache. This ensures that deletion will happen
42 // in the correct thread/context. This adds the only ref to the texture that will persist from
43 // this point. That ref will be released when the generator's RefHelper is freed.
Robert Phillips6be756b2018-01-16 15:07:54 -050044 context->contextPriv().getResourceCache()->insertCrossContextGpuResource(texture.get());
Brian Osman13dddce2017-05-09 13:19:50 -040045
Robert Phillipsb67821d2017-12-13 15:00:45 -050046 GrBackendTexture backendTexture = texture->getBackendTexture();
Brian Salomonc7fe0f72018-05-11 10:14:21 -040047 if (!context->contextPriv().caps()->validateBackendTexture(backendTexture, colorType,
48 &backendTexture.fConfig)) {
Brian Osman052ef692018-03-27 09:56:31 -040049 return nullptr;
50 }
Brian Osman13dddce2017-05-09 13:19:50 -040051
52 SkImageInfo info = SkImageInfo::Make(texture->width(), texture->height(), colorType, alphaType,
53 std::move(colorSpace));
54 return std::unique_ptr<SkImageGenerator>(new GrBackendTextureImageGenerator(
Robert Phillipsb0e93a22017-08-29 08:26:54 -040055 info, texture.get(), origin, context->uniqueID(), std::move(semaphore), backendTexture));
Brian Osman13dddce2017-05-09 13:19:50 -040056}
57
58GrBackendTextureImageGenerator::GrBackendTextureImageGenerator(const SkImageInfo& info,
59 GrTexture* texture,
Robert Phillipsb0e93a22017-08-29 08:26:54 -040060 GrSurfaceOrigin origin,
Brian Osman13dddce2017-05-09 13:19:50 -040061 uint32_t owningContextID,
62 sk_sp<GrSemaphore> semaphore,
63 const GrBackendTexture& backendTex)
64 : INHERITED(info)
65 , fRefHelper(new RefHelper(texture, owningContextID))
66 , fSemaphore(std::move(semaphore))
Brian Osman13dddce2017-05-09 13:19:50 -040067 , fBackendTexture(backendTex)
Greg Daniele728f672018-01-17 10:52:04 -050068 , fConfig(backendTex.config())
Robert Phillipsb0e93a22017-08-29 08:26:54 -040069 , fSurfaceOrigin(origin) { }
Brian Osman13dddce2017-05-09 13:19:50 -040070
71GrBackendTextureImageGenerator::~GrBackendTextureImageGenerator() {
72 fRefHelper->unref();
73}
74
Brian Osman13dddce2017-05-09 13:19:50 -040075///////////////////////////////////////////////////////////////////////////////////////////////////
76
Brian Osman13dddce2017-05-09 13:19:50 -040077void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) {
78 RefHelper* refHelper = static_cast<RefHelper*>(ctx);
79 SkASSERT(refHelper);
80
Brian Osman13dddce2017-05-09 13:19:50 -040081 refHelper->fBorrowedTexture = nullptr;
Greg Danielabba9982018-02-01 10:07:57 -050082 refHelper->fBorrowingContextReleaseProc = nullptr;
Greg Daniel48661b82018-01-22 16:11:35 -050083 refHelper->fBorrowingContextID = SK_InvalidGenID;
Brian Osman13dddce2017-05-09 13:19:50 -040084 refHelper->unref();
85}
86
Stan Ilievba81af22017-06-08 15:16:53 -040087sk_sp<GrTextureProxy> GrBackendTextureImageGenerator::onGenerateTexture(
Brian Osmanc87cfb62018-07-11 09:08:46 -040088 GrContext* context, const SkImageInfo& info, const SkIPoint& origin, bool willNeedMipMaps) {
Brian Osman13dddce2017-05-09 13:19:50 -040089 SkASSERT(context);
90
91 if (context->contextPriv().getBackend() != fBackendTexture.backend()) {
92 return nullptr;
93 }
Brian Osman052ef692018-03-27 09:56:31 -040094 if (info.colorType() != this->getInfo().colorType()) {
95 return nullptr;
96 }
Brian Osman13dddce2017-05-09 13:19:50 -040097
Robert Phillips777707b2018-01-17 11:40:14 -050098 auto proxyProvider = context->contextPriv().proxyProvider();
99
Greg Danielabba9982018-02-01 10:07:57 -0500100 fBorrowingMutex.acquire();
101 sk_sp<GrReleaseProcHelper> releaseProcHelper;
102 if (SK_InvalidGenID != fRefHelper->fBorrowingContextID) {
Greg Daniel966db9e2018-01-12 13:15:06 -0500103 if (fRefHelper->fBorrowingContextID != context->uniqueID()) {
Greg Danielabba9982018-02-01 10:07:57 -0500104 fBorrowingMutex.release();
Greg Daniel966db9e2018-01-12 13:15:06 -0500105 return nullptr;
Greg Danielabba9982018-02-01 10:07:57 -0500106 } else {
107 SkASSERT(fRefHelper->fBorrowingContextReleaseProc);
108 // Ref the release proc to be held by the proxy we make below
109 releaseProcHelper = sk_ref_sp(fRefHelper->fBorrowingContextReleaseProc);
Greg Daniel966db9e2018-01-12 13:15:06 -0500110 }
Greg Danielabba9982018-02-01 10:07:57 -0500111 } else {
112 SkASSERT(!fRefHelper->fBorrowingContextReleaseProc);
113 // The ref we add to fRefHelper here will be passed into and owned by the
114 // GrReleaseProcHelper.
115 fRefHelper->ref();
116 releaseProcHelper.reset(new GrReleaseProcHelper(ReleaseRefHelper_TextureReleaseProc,
117 fRefHelper));
118 fRefHelper->fBorrowingContextReleaseProc = releaseProcHelper.get();
Brian Osman13dddce2017-05-09 13:19:50 -0400119 }
Greg Danielabba9982018-02-01 10:07:57 -0500120 fRefHelper->fBorrowingContextID = context->uniqueID();
121 fBorrowingMutex.release();
Brian Osman13dddce2017-05-09 13:19:50 -0400122
123 SkASSERT(fRefHelper->fBorrowingContextID == context->uniqueID());
124
Greg Daniele728f672018-01-17 10:52:04 -0500125 GrSurfaceDesc desc;
Greg Daniele728f672018-01-17 10:52:04 -0500126 desc.fWidth = fBackendTexture.width();
127 desc.fHeight = fBackendTexture.height();
128 desc.fConfig = fConfig;
129 GrMipMapped mipMapped = fBackendTexture.hasMipMaps() ? GrMipMapped::kYes : GrMipMapped::kNo;
130
131 // Must make copies of member variables to capture in the lambda since this image generator may
132 // be deleted before we actuallly execute the lambda.
Greg Daniele728f672018-01-17 10:52:04 -0500133 sk_sp<GrSemaphore> semaphore = fSemaphore;
134 GrBackendTexture backendTexture = fBackendTexture;
135 RefHelper* refHelper = fRefHelper;
Greg Daniele728f672018-01-17 10:52:04 -0500136
Robert Phillips777707b2018-01-17 11:40:14 -0500137 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy(
Brian Salomon2a4f9832018-03-03 22:43:43 -0500138 [refHelper, releaseProcHelper, semaphore,
139 backendTexture](GrResourceProvider* resourceProvider) {
Greg Daniele728f672018-01-17 10:52:04 -0500140 if (!resourceProvider) {
Greg Daniele728f672018-01-17 10:52:04 -0500141 return sk_sp<GrTexture>();
142 }
143
Greg Daniel48661b82018-01-22 16:11:35 -0500144 if (semaphore) {
Greg Daniele728f672018-01-17 10:52:04 -0500145 resourceProvider->priv().gpu()->waitSemaphore(semaphore);
146 }
147
148 sk_sp<GrTexture> tex;
149 if (refHelper->fBorrowedTexture) {
150 // If a client re-draws the same image multiple times, the texture we return
151 // will be cached and re-used. If they draw a subset, though, we may be
152 // re-called. In that case, we want to re-use the borrowed texture we've
153 // previously created.
154 tex = sk_ref_sp(refHelper->fBorrowedTexture);
155 SkASSERT(tex);
Greg Daniele728f672018-01-17 10:52:04 -0500156 } else {
157 // We just gained access to the texture. If we're on the original context, we
158 // could use the original texture, but we'd have no way of detecting that it's
159 // no longer in-use. So we always make a wrapped copy, where the release proc
160 // informs us that the context is done with it. This is unfortunate - we'll have
161 // two texture objects referencing the same GPU object. However, no client can
162 // ever see the original texture, so this should be safe.
163 tex = resourceProvider->wrapBackendTexture(backendTexture,
164 kBorrow_GrWrapOwnership);
165 if (!tex) {
Greg Daniele728f672018-01-17 10:52:04 -0500166 return sk_sp<GrTexture>();
167 }
168 refHelper->fBorrowedTexture = tex.get();
169
Greg Danielabba9982018-02-01 10:07:57 -0500170 tex->setRelease(releaseProcHelper);
Greg Daniele728f672018-01-17 10:52:04 -0500171 }
172
Greg Daniele728f672018-01-17 10:52:04 -0500173 return tex;
174
Brian Salomon2a4f9832018-03-03 22:43:43 -0500175 },
176 desc, fSurfaceOrigin, mipMapped, SkBackingFit::kExact, SkBudgeted::kNo);
Brian Osman13dddce2017-05-09 13:19:50 -0400177
Greg Daniele3204862018-04-16 11:24:10 -0400178 if (!proxy) {
179 return nullptr;
180 }
181
Brian Osman13dddce2017-05-09 13:19:50 -0400182 if (0 == origin.fX && 0 == origin.fY &&
Greg Daniel261b8aa2017-10-23 09:37:36 -0400183 info.width() == fBackendTexture.width() && info.height() == fBackendTexture.height() &&
Greg Daniele252f082017-10-23 16:05:23 -0400184 (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) {
Greg Daniel261b8aa2017-10-23 09:37:36 -0400185 // If the caller wants the entire texture and we have the correct mip support, we're done
Brian Osman13dddce2017-05-09 13:19:50 -0400186 return proxy;
187 } else {
188 // Otherwise, make a copy of the requested subset. Make sure our temporary is renderable,
Greg Daniel261b8aa2017-10-23 09:37:36 -0400189 // because Vulkan will want to do the copy as a draw. All other copies would require a
190 // layout change in Vulkan and we do not change the layout of borrowed images.
Greg Daniel45d63032017-10-30 13:41:26 -0400191 GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo;
192
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500193 sk_sp<GrRenderTargetContext> rtContext(
194 context->contextPriv().makeDeferredRenderTargetContext(
Brian Osman9363ac42018-06-01 16:10:53 -0400195 SkBackingFit::kExact, info.width(), info.height(), proxy->config(), nullptr, 1,
196 mipMapped, proxy->origin(), nullptr, SkBudgeted::kYes));
Brian Salomon63e79732017-05-15 21:23:13 -0400197
Greg Daniel261b8aa2017-10-23 09:37:36 -0400198 if (!rtContext) {
Brian Osman13dddce2017-05-09 13:19:50 -0400199 return nullptr;
200 }
201
202 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height());
Greg Daniel261b8aa2017-10-23 09:37:36 -0400203 if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) {
Brian Osman13dddce2017-05-09 13:19:50 -0400204 return nullptr;
205 }
206
Greg Daniel261b8aa2017-10-23 09:37:36 -0400207 return rtContext->asTextureProxyRef();
Brian Osman13dddce2017-05-09 13:19:50 -0400208 }
209}
Greg Daniel9cc28232018-04-06 10:00:09 -0400210