blob: 262250ce4db21e138d5643291ab4192840a2f4ce [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 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(
Christopher Cameron77e96662017-07-08 01:47:47 -070088 GrContext* context, const SkImageInfo& info, const SkIPoint& origin,
Greg Danielf88c12e2017-10-09 09:57:35 -040089 SkTransferFunctionBehavior, bool willNeedMipMaps) {
Brian Osman13dddce2017-05-09 13:19:50 -040090 SkASSERT(context);
91
92 if (context->contextPriv().getBackend() != fBackendTexture.backend()) {
93 return nullptr;
94 }
95
Robert Phillips777707b2018-01-17 11:40:14 -050096 auto proxyProvider = context->contextPriv().proxyProvider();
97
Greg Daniel966db9e2018-01-12 13:15:06 -050098 uint32_t expectedID = SK_InvalidGenID;
99 if (!fRefHelper->fBorrowingContextID.compare_exchange(&expectedID, context->uniqueID())) {
100 if (fRefHelper->fBorrowingContextID != context->uniqueID()) {
101 // Some other context is currently borrowing the texture. We aren't allowed to use it.
102 return nullptr;
103 }
Brian Osman13dddce2017-05-09 13:19:50 -0400104 }
105
106 SkASSERT(fRefHelper->fBorrowingContextID == context->uniqueID());
107
Greg Daniele728f672018-01-17 10:52:04 -0500108 GrSurfaceDesc desc;
109 desc.fOrigin = fSurfaceOrigin;
110 desc.fWidth = fBackendTexture.width();
111 desc.fHeight = fBackendTexture.height();
112 desc.fConfig = fConfig;
113 GrMipMapped mipMapped = fBackendTexture.hasMipMaps() ? GrMipMapped::kYes : GrMipMapped::kNo;
114
115 // Must make copies of member variables to capture in the lambda since this image generator may
116 // be deleted before we actuallly execute the lambda.
Greg Daniele728f672018-01-17 10:52:04 -0500117 sk_sp<GrSemaphore> semaphore = fSemaphore;
118 GrBackendTexture backendTexture = fBackendTexture;
119 RefHelper* refHelper = fRefHelper;
120 refHelper->ref();
121
Robert Phillips777707b2018-01-17 11:40:14 -0500122 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy(
Greg Danielf2336e42018-01-23 16:38:14 -0500123 [refHelper, semaphore, backendTexture]
124 (GrResourceProvider* resourceProvider, GrSurfaceOrigin* /*outOrigin*/) {
Greg Daniele728f672018-01-17 10:52:04 -0500125 if (!resourceProvider) {
126 // If we get here then we never created a texture to pass the refHelper ref off
127 // to. Thus we must unref it ourselves.
Greg Daniel48661b82018-01-22 16:11:35 -0500128 refHelper->fBorrowingContextID = SK_InvalidGenID;
Greg Daniele728f672018-01-17 10:52:04 -0500129 refHelper->unref();
130 return sk_sp<GrTexture>();
131 }
132
Greg Daniel48661b82018-01-22 16:11:35 -0500133 if (semaphore) {
Greg Daniele728f672018-01-17 10:52:04 -0500134 resourceProvider->priv().gpu()->waitSemaphore(semaphore);
135 }
136
137 sk_sp<GrTexture> tex;
138 if (refHelper->fBorrowedTexture) {
139 // If a client re-draws the same image multiple times, the texture we return
140 // will be cached and re-used. If they draw a subset, though, we may be
141 // re-called. In that case, we want to re-use the borrowed texture we've
142 // previously created.
143 tex = sk_ref_sp(refHelper->fBorrowedTexture);
144 SkASSERT(tex);
145 // The texture is holding onto a ref to the refHelper so since we have a ref to
146 // the texture we don't need to hold a ref to the refHelper. This unref's the
147 // ref we grabbed on refHelper in the lambda capture for this proxy.
148 refHelper->unref();
149 } else {
150 // We just gained access to the texture. If we're on the original context, we
151 // could use the original texture, but we'd have no way of detecting that it's
152 // no longer in-use. So we always make a wrapped copy, where the release proc
153 // informs us that the context is done with it. This is unfortunate - we'll have
154 // two texture objects referencing the same GPU object. However, no client can
155 // ever see the original texture, so this should be safe.
156 tex = resourceProvider->wrapBackendTexture(backendTexture,
157 kBorrow_GrWrapOwnership);
158 if (!tex) {
Greg Daniel48661b82018-01-22 16:11:35 -0500159 refHelper->fBorrowingContextID = SK_InvalidGenID;
Greg Daniele728f672018-01-17 10:52:04 -0500160 refHelper->unref();
161 return sk_sp<GrTexture>();
162 }
163 refHelper->fBorrowedTexture = tex.get();
164
Greg Daniel6a0176b2018-01-30 09:28:44 -0500165 sk_sp<GrReleaseProcHelper> releaseHelper(
166 new GrReleaseProcHelper(ReleaseRefHelper_TextureReleaseProc, refHelper));
167
Greg Daniele728f672018-01-17 10:52:04 -0500168 // By setting this release proc on the texture we are passing our ref on the
169 // refHelper to the texture.
Greg Daniel6a0176b2018-01-30 09:28:44 -0500170 // DDL TODO: Once we are start reusing Lazy Proxies, we need to add a ref to the
171 // refHelper here, we'll still move the releaseHelper though since the texture
172 // will be the only one ever calling that release proc.
173 tex->setRelease(std::move(releaseHelper));
Greg Daniele728f672018-01-17 10:52:04 -0500174 }
175
Greg Daniele728f672018-01-17 10:52:04 -0500176 return tex;
177
178 }, desc, mipMapped, SkBackingFit::kExact, SkBudgeted::kNo);
Brian Osman13dddce2017-05-09 13:19:50 -0400179
180 if (0 == origin.fX && 0 == origin.fY &&
Greg Daniel261b8aa2017-10-23 09:37:36 -0400181 info.width() == fBackendTexture.width() && info.height() == fBackendTexture.height() &&
Greg Daniele252f082017-10-23 16:05:23 -0400182 (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) {
Greg Daniel261b8aa2017-10-23 09:37:36 -0400183 // If the caller wants the entire texture and we have the correct mip support, we're done
Brian Osman13dddce2017-05-09 13:19:50 -0400184 return proxy;
185 } else {
186 // Otherwise, make a copy of the requested subset. Make sure our temporary is renderable,
Greg Daniel261b8aa2017-10-23 09:37:36 -0400187 // because Vulkan will want to do the copy as a draw. All other copies would require a
188 // layout change in Vulkan and we do not change the layout of borrowed images.
Greg Daniel45d63032017-10-30 13:41:26 -0400189 GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo;
190
Greg Daniel261b8aa2017-10-23 09:37:36 -0400191 sk_sp<GrRenderTargetContext> rtContext(context->makeDeferredRenderTargetContext(
192 SkBackingFit::kExact, info.width(), info.height(), proxy->config(), nullptr,
Greg Daniel45d63032017-10-30 13:41:26 -0400193 0, mipMapped, proxy->origin(), nullptr, SkBudgeted::kYes));
Brian Salomon63e79732017-05-15 21:23:13 -0400194
Greg Daniel261b8aa2017-10-23 09:37:36 -0400195 if (!rtContext) {
Brian Osman13dddce2017-05-09 13:19:50 -0400196 return nullptr;
197 }
198
199 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height());
Greg Daniel261b8aa2017-10-23 09:37:36 -0400200 if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) {
Brian Osman13dddce2017-05-09 13:19:50 -0400201 return nullptr;
202 }
203
Greg Daniel261b8aa2017-10-23 09:37:36 -0400204 return rtContext->asTextureProxyRef();
Brian Osman13dddce2017-05-09 13:19:50 -0400205 }
206}
207#endif