blob: b8d2474f7eb5f1613ef552376cacf3f72a146925 [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"
Brian Osman13dddce2017-05-09 13:19:50 -040021
22#include "SkGr.h"
23#include "SkMessageBus.h"
24
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,
36 sk_sp<GrSemaphore> semaphore,
Brian Osman13dddce2017-05-09 13:19:50 -040037 SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) {
Brian Osman13dddce2017-05-09 13:19:50 -040038 SkColorType colorType = kUnknown_SkColorType;
39 if (!GrPixelConfigToColorType(texture->config(), &colorType)) {
40 return nullptr;
41 }
42
43 GrContext* context = texture->getContext();
44
45 // Attach our texture to this context's resource cache. This ensures that deletion will happen
46 // in the correct thread/context. This adds the only ref to the texture that will persist from
47 // this point. That ref will be released when the generator's RefHelper is freed.
Robert Phillips6be756b2018-01-16 15:07:54 -050048 context->contextPriv().getResourceCache()->insertCrossContextGpuResource(texture.get());
Brian Osman13dddce2017-05-09 13:19:50 -040049
Robert Phillipsb67821d2017-12-13 15:00:45 -050050 GrBackendTexture backendTexture = texture->getBackendTexture();
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
77#if SK_SUPPORT_GPU
78void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) {
79 RefHelper* refHelper = static_cast<RefHelper*>(ctx);
80 SkASSERT(refHelper);
81
Brian Osman13dddce2017-05-09 13:19:50 -040082 refHelper->fBorrowedTexture = nullptr;
Greg Danielabba9982018-02-01 10:07:57 -050083 refHelper->fBorrowingContextReleaseProc = nullptr;
Greg Daniel48661b82018-01-22 16:11:35 -050084 refHelper->fBorrowingContextID = SK_InvalidGenID;
Brian Osman13dddce2017-05-09 13:19:50 -040085 refHelper->unref();
86}
87
Stan Ilievba81af22017-06-08 15:16:53 -040088sk_sp<GrTextureProxy> GrBackendTextureImageGenerator::onGenerateTexture(
Christopher Cameron77e96662017-07-08 01:47:47 -070089 GrContext* context, const SkImageInfo& info, const SkIPoint& origin,
Greg Danielf88c12e2017-10-09 09:57:35 -040090 SkTransferFunctionBehavior, bool willNeedMipMaps) {
Brian Osman13dddce2017-05-09 13:19:50 -040091 SkASSERT(context);
92
93 if (context->contextPriv().getBackend() != fBackendTexture.backend()) {
94 return nullptr;
95 }
96
Robert Phillips777707b2018-01-17 11:40:14 -050097 auto proxyProvider = context->contextPriv().proxyProvider();
98
Greg Danielabba9982018-02-01 10:07:57 -050099 fBorrowingMutex.acquire();
100 sk_sp<GrReleaseProcHelper> releaseProcHelper;
101 if (SK_InvalidGenID != fRefHelper->fBorrowingContextID) {
Greg Daniel966db9e2018-01-12 13:15:06 -0500102 if (fRefHelper->fBorrowingContextID != context->uniqueID()) {
Greg Danielabba9982018-02-01 10:07:57 -0500103 fBorrowingMutex.release();
Greg Daniel966db9e2018-01-12 13:15:06 -0500104 return nullptr;
Greg Danielabba9982018-02-01 10:07:57 -0500105 } else {
106 SkASSERT(fRefHelper->fBorrowingContextReleaseProc);
107 // Ref the release proc to be held by the proxy we make below
108 releaseProcHelper = sk_ref_sp(fRefHelper->fBorrowingContextReleaseProc);
Greg Daniel966db9e2018-01-12 13:15:06 -0500109 }
Greg Danielabba9982018-02-01 10:07:57 -0500110 } else {
111 SkASSERT(!fRefHelper->fBorrowingContextReleaseProc);
112 // The ref we add to fRefHelper here will be passed into and owned by the
113 // GrReleaseProcHelper.
114 fRefHelper->ref();
115 releaseProcHelper.reset(new GrReleaseProcHelper(ReleaseRefHelper_TextureReleaseProc,
116 fRefHelper));
117 fRefHelper->fBorrowingContextReleaseProc = releaseProcHelper.get();
Brian Osman13dddce2017-05-09 13:19:50 -0400118 }
Greg Danielabba9982018-02-01 10:07:57 -0500119 fRefHelper->fBorrowingContextID = context->uniqueID();
120 fBorrowingMutex.release();
Brian Osman13dddce2017-05-09 13:19:50 -0400121
122 SkASSERT(fRefHelper->fBorrowingContextID == context->uniqueID());
123
Greg Daniele728f672018-01-17 10:52:04 -0500124 GrSurfaceDesc desc;
125 desc.fOrigin = fSurfaceOrigin;
126 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(
Greg Danielabba9982018-02-01 10:07:57 -0500138 [refHelper, releaseProcHelper, semaphore, backendTexture]
Greg Danielf2336e42018-01-23 16:38:14 -0500139 (GrResourceProvider* resourceProvider, GrSurfaceOrigin* /*outOrigin*/) {
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
175 }, desc, mipMapped, SkBackingFit::kExact, SkBudgeted::kNo);
Brian Osman13dddce2017-05-09 13:19:50 -0400176
177 if (0 == origin.fX && 0 == origin.fY &&
Greg Daniel261b8aa2017-10-23 09:37:36 -0400178 info.width() == fBackendTexture.width() && info.height() == fBackendTexture.height() &&
Greg Daniele252f082017-10-23 16:05:23 -0400179 (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) {
Greg Daniel261b8aa2017-10-23 09:37:36 -0400180 // If the caller wants the entire texture and we have the correct mip support, we're done
Brian Osman13dddce2017-05-09 13:19:50 -0400181 return proxy;
182 } else {
183 // Otherwise, make a copy of the requested subset. Make sure our temporary is renderable,
Greg Daniel261b8aa2017-10-23 09:37:36 -0400184 // because Vulkan will want to do the copy as a draw. All other copies would require a
185 // layout change in Vulkan and we do not change the layout of borrowed images.
Greg Daniel45d63032017-10-30 13:41:26 -0400186 GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo;
Brian Salomon366093f2018-02-13 09:25:22 -0500187 sk_sp<SkColorSpace> colorSpace;
188 if (GrPixelConfigIsSRGB(desc.fConfig)) {
189 colorSpace = SkColorSpace::MakeSRGB();
190 }
Greg Daniel45d63032017-10-30 13:41:26 -0400191
Greg Daniel261b8aa2017-10-23 09:37:36 -0400192 sk_sp<GrRenderTargetContext> rtContext(context->makeDeferredRenderTargetContext(
Brian Salomon366093f2018-02-13 09:25:22 -0500193 SkBackingFit::kExact, info.width(), info.height(), proxy->config(),
194 std::move(colorSpace), 1, mipMapped, proxy->origin(), nullptr, SkBudgeted::kYes));
Brian Salomon63e79732017-05-15 21:23:13 -0400195
Greg Daniel261b8aa2017-10-23 09:37:36 -0400196 if (!rtContext) {
Brian Osman13dddce2017-05-09 13:19:50 -0400197 return nullptr;
198 }
199
200 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height());
Greg Daniel261b8aa2017-10-23 09:37:36 -0400201 if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) {
Brian Osman13dddce2017-05-09 13:19:50 -0400202 return nullptr;
203 }
204
Greg Daniel261b8aa2017-10-23 09:37:36 -0400205 return rtContext->asTextureProxyRef();
Brian Osman13dddce2017-05-09 13:19:50 -0400206 }
207}
208#endif