Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 1 | /* |
| 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 Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 9 | #include "GrContext.h" |
| 10 | #include "GrContextPriv.h" |
Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 11 | #include "GrGpu.h" |
Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 12 | #include "GrProxyProvider.h" |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame^] | 13 | #include "GrRecordingContext.h" |
| 14 | #include "GrRecordingContextPriv.h" |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 15 | #include "GrRenderTargetContext.h" |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 16 | #include "GrResourceCache.h" |
| 17 | #include "GrResourceProvider.h" |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 18 | #include "GrResourceProviderPriv.h" |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 19 | #include "GrSemaphore.h" |
Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 20 | #include "GrTexture.h" |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 21 | #include "GrTexturePriv.h" |
Greg Daniel | e320486 | 2018-04-16 11:24:10 -0400 | [diff] [blame] | 22 | #include "GrTextureProxyPriv.h" |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 23 | #include "SkGr.h" |
| 24 | #include "SkMessageBus.h" |
Brian Salomon | 7226c23 | 2018-07-30 13:13:17 -0400 | [diff] [blame] | 25 | #include "gl/GrGLTexture.h" |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 26 | |
| 27 | GrBackendTextureImageGenerator::RefHelper::~RefHelper() { |
| 28 | SkASSERT(nullptr == fBorrowedTexture); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 29 | |
| 30 | // Generator has been freed, and no one is borrowing the texture. Notify the original cache |
| 31 | // that it can free the last ref, so it happens on the correct thread. |
| 32 | GrGpuResourceFreedMessage msg { fOriginalTexture, fOwningContextID }; |
| 33 | SkMessageBus<GrGpuResourceFreedMessage>::Post(msg); |
| 34 | } |
| 35 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 36 | std::unique_ptr<SkImageGenerator> |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 37 | GrBackendTextureImageGenerator::Make(sk_sp<GrTexture> texture, GrSurfaceOrigin origin, |
Brian Osman | 052ef69 | 2018-03-27 09:56:31 -0400 | [diff] [blame] | 38 | sk_sp<GrSemaphore> semaphore, SkColorType colorType, |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 39 | SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 40 | GrContext* context = texture->getContext(); |
| 41 | |
| 42 | // Attach our texture to this context's resource cache. This ensures that deletion will happen |
| 43 | // in the correct thread/context. This adds the only ref to the texture that will persist from |
| 44 | // this point. That ref will be released when the generator's RefHelper is freed. |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 45 | context->priv().getResourceCache()->insertCrossContextGpuResource(texture.get()); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 46 | |
Robert Phillips | b67821d | 2017-12-13 15:00:45 -0500 | [diff] [blame] | 47 | GrBackendTexture backendTexture = texture->getBackendTexture(); |
Brian Salomon | f391d0f | 2018-12-14 09:18:50 -0500 | [diff] [blame] | 48 | GrBackendFormat backendFormat = backendTexture.getBackendFormat(); |
| 49 | if (!backendFormat.isValid()) { |
| 50 | return nullptr; |
| 51 | } |
| 52 | backendTexture.fConfig = |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 53 | context->priv().caps()->getConfigFromBackendFormat(backendFormat, colorType); |
Brian Salomon | f391d0f | 2018-12-14 09:18:50 -0500 | [diff] [blame] | 54 | if (backendTexture.fConfig == kUnknown_GrPixelConfig) { |
Brian Osman | 052ef69 | 2018-03-27 09:56:31 -0400 | [diff] [blame] | 55 | return nullptr; |
| 56 | } |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 57 | |
| 58 | SkImageInfo info = SkImageInfo::Make(texture->width(), texture->height(), colorType, alphaType, |
| 59 | std::move(colorSpace)); |
| 60 | return std::unique_ptr<SkImageGenerator>(new GrBackendTextureImageGenerator( |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 61 | info, texture.get(), origin, context->priv().contextID(), |
Robert Phillips | fd0d970 | 2019-02-01 10:19:42 -0500 | [diff] [blame] | 62 | std::move(semaphore), backendTexture)); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | GrBackendTextureImageGenerator::GrBackendTextureImageGenerator(const SkImageInfo& info, |
| 66 | GrTexture* texture, |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 67 | GrSurfaceOrigin origin, |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 68 | uint32_t owningContextID, |
| 69 | sk_sp<GrSemaphore> semaphore, |
| 70 | const GrBackendTexture& backendTex) |
| 71 | : INHERITED(info) |
| 72 | , fRefHelper(new RefHelper(texture, owningContextID)) |
| 73 | , fSemaphore(std::move(semaphore)) |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 74 | , fBackendTexture(backendTex) |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 75 | , fConfig(backendTex.config()) |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 76 | , fSurfaceOrigin(origin) { } |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 77 | |
| 78 | GrBackendTextureImageGenerator::~GrBackendTextureImageGenerator() { |
| 79 | fRefHelper->unref(); |
| 80 | } |
| 81 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 82 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 83 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 84 | void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) { |
| 85 | RefHelper* refHelper = static_cast<RefHelper*>(ctx); |
| 86 | SkASSERT(refHelper); |
| 87 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 88 | refHelper->fBorrowedTexture = nullptr; |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 89 | refHelper->fBorrowingContextReleaseProc = nullptr; |
Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 90 | refHelper->fBorrowingContextID = SK_InvalidGenID; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 91 | refHelper->unref(); |
| 92 | } |
| 93 | |
Stan Iliev | ba81af2 | 2017-06-08 15:16:53 -0400 | [diff] [blame] | 94 | sk_sp<GrTextureProxy> GrBackendTextureImageGenerator::onGenerateTexture( |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame^] | 95 | GrRecordingContext* context, const SkImageInfo& info, |
| 96 | const SkIPoint& origin, bool willNeedMipMaps) { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 97 | SkASSERT(context); |
| 98 | |
Robert Phillips | 4217ea7 | 2019-01-30 13:08:28 -0500 | [diff] [blame] | 99 | if (context->backend() != fBackendTexture.backend()) { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 100 | return nullptr; |
| 101 | } |
Brian Osman | 052ef69 | 2018-03-27 09:56:31 -0400 | [diff] [blame] | 102 | if (info.colorType() != this->getInfo().colorType()) { |
| 103 | return nullptr; |
| 104 | } |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 105 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 106 | auto proxyProvider = context->priv().proxyProvider(); |
Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 107 | |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 108 | fBorrowingMutex.acquire(); |
| 109 | sk_sp<GrReleaseProcHelper> releaseProcHelper; |
| 110 | if (SK_InvalidGenID != fRefHelper->fBorrowingContextID) { |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 111 | if (fRefHelper->fBorrowingContextID != context->priv().contextID()) { |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 112 | fBorrowingMutex.release(); |
Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 113 | return nullptr; |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 114 | } else { |
| 115 | SkASSERT(fRefHelper->fBorrowingContextReleaseProc); |
| 116 | // Ref the release proc to be held by the proxy we make below |
| 117 | releaseProcHelper = sk_ref_sp(fRefHelper->fBorrowingContextReleaseProc); |
Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 118 | } |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 119 | } else { |
| 120 | SkASSERT(!fRefHelper->fBorrowingContextReleaseProc); |
| 121 | // The ref we add to fRefHelper here will be passed into and owned by the |
| 122 | // GrReleaseProcHelper. |
| 123 | fRefHelper->ref(); |
| 124 | releaseProcHelper.reset(new GrReleaseProcHelper(ReleaseRefHelper_TextureReleaseProc, |
| 125 | fRefHelper)); |
| 126 | fRefHelper->fBorrowingContextReleaseProc = releaseProcHelper.get(); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 127 | } |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 128 | fRefHelper->fBorrowingContextID = context->priv().contextID(); |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 129 | fBorrowingMutex.release(); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 130 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 131 | SkASSERT(fRefHelper->fBorrowingContextID == context->priv().contextID()); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 132 | |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 133 | GrSurfaceDesc desc; |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 134 | desc.fWidth = fBackendTexture.width(); |
| 135 | desc.fHeight = fBackendTexture.height(); |
| 136 | desc.fConfig = fConfig; |
| 137 | GrMipMapped mipMapped = fBackendTexture.hasMipMaps() ? GrMipMapped::kYes : GrMipMapped::kNo; |
| 138 | |
| 139 | // Must make copies of member variables to capture in the lambda since this image generator may |
| 140 | // be deleted before we actuallly execute the lambda. |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 141 | sk_sp<GrSemaphore> semaphore = fSemaphore; |
| 142 | GrBackendTexture backendTexture = fBackendTexture; |
| 143 | RefHelper* refHelper = fRefHelper; |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 144 | |
Brian Salomon | f391d0f | 2018-12-14 09:18:50 -0500 | [diff] [blame] | 145 | GrBackendFormat format = backendTexture.getBackendFormat(); |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 146 | SkASSERT(format.isValid()); |
| 147 | |
Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 148 | sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy( |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 149 | [refHelper, releaseProcHelper, semaphore, |
| 150 | backendTexture](GrResourceProvider* resourceProvider) { |
Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 151 | if (semaphore) { |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 152 | resourceProvider->priv().gpu()->waitSemaphore(semaphore); |
| 153 | } |
| 154 | |
| 155 | sk_sp<GrTexture> tex; |
| 156 | if (refHelper->fBorrowedTexture) { |
| 157 | // If a client re-draws the same image multiple times, the texture we return |
| 158 | // will be cached and re-used. If they draw a subset, though, we may be |
| 159 | // re-called. In that case, we want to re-use the borrowed texture we've |
| 160 | // previously created. |
| 161 | tex = sk_ref_sp(refHelper->fBorrowedTexture); |
| 162 | SkASSERT(tex); |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 163 | } else { |
| 164 | // We just gained access to the texture. If we're on the original context, we |
| 165 | // could use the original texture, but we'd have no way of detecting that it's |
| 166 | // no longer in-use. So we always make a wrapped copy, where the release proc |
| 167 | // informs us that the context is done with it. This is unfortunate - we'll have |
| 168 | // two texture objects referencing the same GPU object. However, no client can |
| 169 | // ever see the original texture, so this should be safe. |
Brian Salomon | fa2ebea | 2019-01-24 15:58:58 -0500 | [diff] [blame] | 170 | // We make the texture uncacheable so that the release proc is called ASAP. |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 171 | tex = resourceProvider->wrapBackendTexture( |
Brian Salomon | aa6ca0a | 2019-01-24 16:03:07 -0500 | [diff] [blame] | 172 | backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, |
| 173 | kRead_GrIOType); |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 174 | if (!tex) { |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 175 | return sk_sp<GrTexture>(); |
| 176 | } |
| 177 | refHelper->fBorrowedTexture = tex.get(); |
| 178 | |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 179 | tex->setRelease(releaseProcHelper); |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 180 | } |
| 181 | |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 182 | return tex; |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 183 | }, |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 184 | format, desc, fSurfaceOrigin, mipMapped, GrInternalSurfaceFlags::kReadOnly, |
| 185 | SkBackingFit::kExact, SkBudgeted::kNo); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 186 | |
Greg Daniel | e320486 | 2018-04-16 11:24:10 -0400 | [diff] [blame] | 187 | if (!proxy) { |
| 188 | return nullptr; |
| 189 | } |
| 190 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 191 | if (0 == origin.fX && 0 == origin.fY && |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 192 | info.width() == fBackendTexture.width() && info.height() == fBackendTexture.height() && |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 193 | (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) { |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 194 | // If the caller wants the entire texture and we have the correct mip support, we're done |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 195 | return proxy; |
| 196 | } else { |
| 197 | // Otherwise, make a copy of the requested subset. Make sure our temporary is renderable, |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 198 | // because Vulkan will want to do the copy as a draw. All other copies would require a |
| 199 | // layout change in Vulkan and we do not change the layout of borrowed images. |
Greg Daniel | 45d6303 | 2017-10-30 13:41:26 -0400 | [diff] [blame] | 200 | GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo; |
| 201 | |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 202 | GrBackendFormat format = proxy->backendFormat().makeTexture2D(); |
| 203 | if (!format.isValid()) { |
| 204 | return nullptr; |
| 205 | } |
| 206 | |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 207 | sk_sp<GrRenderTargetContext> rtContext( |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 208 | context->priv().makeDeferredRenderTargetContext( |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 209 | format, SkBackingFit::kExact, info.width(), info.height(), |
| 210 | proxy->config(), nullptr, 1, mipMapped, proxy->origin(), nullptr, |
| 211 | SkBudgeted::kYes)); |
Brian Salomon | 63e7973 | 2017-05-15 21:23:13 -0400 | [diff] [blame] | 212 | |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 213 | if (!rtContext) { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 214 | return nullptr; |
| 215 | } |
| 216 | |
| 217 | SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height()); |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 218 | if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 219 | return nullptr; |
| 220 | } |
| 221 | |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 222 | return rtContext->asTextureProxyRef(); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 223 | } |
| 224 | } |
Greg Daniel | 9cc2823 | 2018-04-06 10:00:09 -0400 | [diff] [blame] | 225 | |