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 | |
Robert Phillips | 4e105e2 | 2020-07-16 09:18:50 -0400 | [diff] [blame] | 8 | #include "include/gpu/GrDirectContext.h" |
Robert Phillips | b7bfbc2 | 2020-07-01 12:55:01 -0400 | [diff] [blame] | 9 | #include "include/gpu/GrRecordingContext.h" |
Ben Wagner | 21bca28 | 2019-05-15 10:15:52 -0400 | [diff] [blame] | 10 | #include "src/core/SkMessageBus.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "src/gpu/GrBackendTextureImageGenerator.h" |
| 12 | #include "src/gpu/GrContextPriv.h" |
| 13 | #include "src/gpu/GrGpu.h" |
| 14 | #include "src/gpu/GrProxyProvider.h" |
| 15 | #include "src/gpu/GrRecordingContextPriv.h" |
| 16 | #include "src/gpu/GrRenderTargetContext.h" |
| 17 | #include "src/gpu/GrResourceCache.h" |
| 18 | #include "src/gpu/GrResourceProvider.h" |
| 19 | #include "src/gpu/GrResourceProviderPriv.h" |
| 20 | #include "src/gpu/GrSemaphore.h" |
Greg Daniel | 456f9b5 | 2020-03-05 19:14:18 +0000 | [diff] [blame] | 21 | #include "src/gpu/GrTexture.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 22 | #include "src/gpu/GrTextureProxyPriv.h" |
| 23 | #include "src/gpu/SkGr.h" |
| 24 | #include "src/gpu/gl/GrGLTexture.h" |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 25 | |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 26 | GrBackendTextureImageGenerator::RefHelper::RefHelper(GrTexture* texture, uint32_t owningContextID, |
| 27 | std::unique_ptr<GrSemaphore> semaphore) |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 28 | : fOriginalTexture(texture) |
| 29 | , fOwningContextID(owningContextID) |
| 30 | , fBorrowingContextReleaseProc(nullptr) |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 31 | , fBorrowingContextID(SK_InvalidGenID) |
| 32 | , fSemaphore(std::move(semaphore)) {} |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 33 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 34 | GrBackendTextureImageGenerator::RefHelper::~RefHelper() { |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 35 | SkASSERT(fBorrowingContextID == SK_InvalidUniqueID); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 36 | |
| 37 | // Generator has been freed, and no one is borrowing the texture. Notify the original cache |
| 38 | // that it can free the last ref, so it happens on the correct thread. |
Robert Phillips | ddc2148 | 2019-10-16 14:30:09 -0400 | [diff] [blame] | 39 | GrTextureFreedMessage msg { fOriginalTexture, fOwningContextID }; |
| 40 | SkMessageBus<GrTextureFreedMessage>::Post(msg); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 41 | } |
| 42 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 43 | std::unique_ptr<SkImageGenerator> |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 44 | GrBackendTextureImageGenerator::Make(sk_sp<GrTexture> texture, GrSurfaceOrigin origin, |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 45 | std::unique_ptr<GrSemaphore> semaphore, SkColorType colorType, |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 46 | SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) { |
Robert Phillips | 4e105e2 | 2020-07-16 09:18:50 -0400 | [diff] [blame] | 47 | GrDirectContext* context = texture->getContext(); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 48 | |
| 49 | // Attach our texture to this context's resource cache. This ensures that deletion will happen |
| 50 | // in the correct thread/context. This adds the only ref to the texture that will persist from |
| 51 | // this point. That ref will be released when the generator's RefHelper is freed. |
Robert Phillips | ddc2148 | 2019-10-16 14:30:09 -0400 | [diff] [blame] | 52 | context->priv().getResourceCache()->insertDelayedTextureUnref(texture.get()); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 53 | |
Robert Phillips | b67821d | 2017-12-13 15:00:45 -0500 | [diff] [blame] | 54 | GrBackendTexture backendTexture = texture->getBackendTexture(); |
Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 55 | |
Robert Phillips | 62221e7 | 2019-07-24 15:07:38 -0400 | [diff] [blame] | 56 | if (!context->priv().caps()->areColorTypeAndFormatCompatible( |
| 57 | SkColorTypeToGrColorType(colorType), backendTexture.getBackendFormat())) { |
| 58 | return nullptr; |
Brian Osman | 052ef69 | 2018-03-27 09:56:31 -0400 | [diff] [blame] | 59 | } |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 60 | |
| 61 | SkImageInfo info = SkImageInfo::Make(texture->width(), texture->height(), colorType, alphaType, |
| 62 | std::move(colorSpace)); |
| 63 | return std::unique_ptr<SkImageGenerator>(new GrBackendTextureImageGenerator( |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 64 | info, texture.get(), origin, context->priv().contextID(), |
Robert Phillips | fd0d970 | 2019-02-01 10:19:42 -0500 | [diff] [blame] | 65 | std::move(semaphore), backendTexture)); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 66 | } |
| 67 | |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 68 | GrBackendTextureImageGenerator::GrBackendTextureImageGenerator( |
| 69 | const SkImageInfo& info, |
| 70 | GrTexture* texture, |
| 71 | GrSurfaceOrigin origin, |
| 72 | uint32_t owningContextID, |
| 73 | std::unique_ptr<GrSemaphore> semaphore, |
| 74 | const GrBackendTexture& backendTex) |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 75 | : INHERITED(info) |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 76 | , fRefHelper(new RefHelper(texture, owningContextID, std::move(semaphore))) |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 77 | , fBackendTexture(backendTex) |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 78 | , fSurfaceOrigin(origin) {} |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 79 | |
| 80 | GrBackendTextureImageGenerator::~GrBackendTextureImageGenerator() { |
| 81 | fRefHelper->unref(); |
| 82 | } |
| 83 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 84 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 85 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 86 | void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) { |
| 87 | RefHelper* refHelper = static_cast<RefHelper*>(ctx); |
| 88 | SkASSERT(refHelper); |
| 89 | |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 90 | refHelper->fBorrowingContextReleaseProc = nullptr; |
Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 91 | refHelper->fBorrowingContextID = SK_InvalidGenID; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 92 | refHelper->unref(); |
| 93 | } |
| 94 | |
Brian Salomon | bc074a6 | 2020-03-18 10:06:13 -0400 | [diff] [blame] | 95 | GrSurfaceProxyView GrBackendTextureImageGenerator::onGenerateTexture( |
| 96 | GrRecordingContext* context, |
| 97 | const SkImageInfo& info, |
| 98 | const SkIPoint& origin, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 99 | GrMipmapped mipMapped, |
Brian Salomon | bc074a6 | 2020-03-18 10:06:13 -0400 | [diff] [blame] | 100 | GrImageTexGenPolicy texGenPolicy) { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 101 | SkASSERT(context); |
| 102 | |
Robert Phillips | 4217ea7 | 2019-01-30 13:08:28 -0500 | [diff] [blame] | 103 | if (context->backend() != fBackendTexture.backend()) { |
Greg Daniel | cc104db | 2020-02-03 14:17:08 -0500 | [diff] [blame] | 104 | return {}; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 105 | } |
Brian Osman | 052ef69 | 2018-03-27 09:56:31 -0400 | [diff] [blame] | 106 | if (info.colorType() != this->getInfo().colorType()) { |
Greg Daniel | cc104db | 2020-02-03 14:17:08 -0500 | [diff] [blame] | 107 | return {}; |
Brian Osman | 052ef69 | 2018-03-27 09:56:31 -0400 | [diff] [blame] | 108 | } |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 109 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 110 | auto proxyProvider = context->priv().proxyProvider(); |
Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 111 | |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 112 | fBorrowingMutex.acquire(); |
Brian Salomon | b2c5dae | 2019-03-04 10:25:17 -0500 | [diff] [blame] | 113 | sk_sp<GrRefCntedCallback> releaseProcHelper; |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 114 | if (SK_InvalidGenID != fRefHelper->fBorrowingContextID) { |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 115 | if (fRefHelper->fBorrowingContextID != context->priv().contextID()) { |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 116 | fBorrowingMutex.release(); |
Chris Dalton | 5a5fe79 | 2020-02-15 11:41:30 -0700 | [diff] [blame] | 117 | context->priv().printWarningMessage( |
| 118 | "GrBackendTextureImageGenerator: Trying to use texture on two GrContexts!\n"); |
Greg Daniel | cc104db | 2020-02-03 14:17:08 -0500 | [diff] [blame] | 119 | return {}; |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 120 | } else { |
| 121 | SkASSERT(fRefHelper->fBorrowingContextReleaseProc); |
| 122 | // Ref the release proc to be held by the proxy we make below |
| 123 | releaseProcHelper = sk_ref_sp(fRefHelper->fBorrowingContextReleaseProc); |
Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 124 | } |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 125 | } else { |
| 126 | SkASSERT(!fRefHelper->fBorrowingContextReleaseProc); |
| 127 | // The ref we add to fRefHelper here will be passed into and owned by the |
Brian Salomon | b2c5dae | 2019-03-04 10:25:17 -0500 | [diff] [blame] | 128 | // GrRefCntedCallback. |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 129 | fRefHelper->ref(); |
Brian Salomon | b2c5dae | 2019-03-04 10:25:17 -0500 | [diff] [blame] | 130 | releaseProcHelper.reset( |
| 131 | new GrRefCntedCallback(ReleaseRefHelper_TextureReleaseProc, fRefHelper)); |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 132 | fRefHelper->fBorrowingContextReleaseProc = releaseProcHelper.get(); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 133 | } |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 134 | fRefHelper->fBorrowingContextID = context->priv().contextID(); |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 135 | if (!fRefHelper->fBorrowedTextureKey.isValid()) { |
| 136 | static const auto kDomain = GrUniqueKey::GenerateDomain(); |
| 137 | GrUniqueKey::Builder builder(&fRefHelper->fBorrowedTextureKey, kDomain, 1); |
| 138 | builder[0] = this->uniqueID(); |
| 139 | } |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 140 | fBorrowingMutex.release(); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 141 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 142 | SkASSERT(fRefHelper->fBorrowingContextID == context->priv().contextID()); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 143 | |
Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 144 | GrBackendFormat backendFormat = fBackendTexture.getBackendFormat(); |
| 145 | SkASSERT(backendFormat.isValid()); |
| 146 | |
| 147 | GrColorType grColorType = SkColorTypeToGrColorType(info.colorType()); |
| 148 | |
Brian Salomon | 40a4062 | 2020-07-21 10:32:07 -0400 | [diff] [blame] | 149 | GrMipmapped textureIsMipMapped = fBackendTexture.hasMipmaps() ? GrMipmapped::kYes |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 150 | : GrMipmapped::kNo; |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 151 | |
Chris Dalton | 95d8ceb | 2019-07-30 11:17:59 -0600 | [diff] [blame] | 152 | // Ganesh assumes that, when wrapping a mipmapped backend texture from a client, that its |
| 153 | // mipmaps are fully fleshed out. |
Brian Salomon | 40a4062 | 2020-07-21 10:32:07 -0400 | [diff] [blame] | 154 | GrMipmapStatus mipmapStatus = fBackendTexture.hasMipmaps() |
Brian Salomon | a6db510 | 2020-07-21 09:56:23 -0400 | [diff] [blame] | 155 | ? GrMipmapStatus::kValid : GrMipmapStatus::kNotAllocated; |
Chris Dalton | 95d8ceb | 2019-07-30 11:17:59 -0600 | [diff] [blame] | 156 | |
Greg Daniel | ce3ddaa | 2020-01-22 16:58:15 -0500 | [diff] [blame] | 157 | GrSwizzle readSwizzle = context->priv().caps()->getReadSwizzle(backendFormat, grColorType); |
| 158 | |
Brian Salomon | b6a3a3b | 2019-04-01 12:29:34 -0400 | [diff] [blame] | 159 | // Must make copies of member variables to capture in the lambda since this image generator may |
| 160 | // be deleted before we actually execute the lambda. |
Brian Salomon | 8a78e9c | 2020-03-27 10:42:15 -0400 | [diff] [blame] | 161 | sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy( |
| 162 | [refHelper = fRefHelper, releaseProcHelper, backendTexture = fBackendTexture]( |
Brian Salomon | 63410e9 | 2020-03-23 18:32:50 -0400 | [diff] [blame] | 163 | GrResourceProvider* resourceProvider, |
| 164 | const GrSurfaceProxy::LazySurfaceDesc&) -> GrSurfaceProxy::LazyCallbackResult { |
Brian Salomon | 8a78e9c | 2020-03-27 10:42:15 -0400 | [diff] [blame] | 165 | if (refHelper->fSemaphore) { |
| 166 | resourceProvider->priv().gpu()->waitSemaphore(refHelper->fSemaphore.get()); |
| 167 | } |
Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 168 | |
Brian Salomon | 8a78e9c | 2020-03-27 10:42:15 -0400 | [diff] [blame] | 169 | // If a client re-draws the same image multiple times, the texture we return |
| 170 | // will be cached and re-used. If they draw a subset, though, we may be |
| 171 | // re-called. In that case, we want to re-use the borrowed texture we've |
| 172 | // previously created. |
| 173 | sk_sp<GrTexture> tex; |
| 174 | SkASSERT(refHelper->fBorrowedTextureKey.isValid()); |
| 175 | auto surf = resourceProvider->findByUniqueKey<GrSurface>( |
| 176 | refHelper->fBorrowedTextureKey); |
| 177 | if (surf) { |
| 178 | SkASSERT(surf->asTexture()); |
| 179 | tex = sk_ref_sp(surf->asTexture()); |
| 180 | } else { |
| 181 | // We just gained access to the texture. If we're on the original |
| 182 | // context, we could use the original texture, but we'd have no way of |
| 183 | // detecting that it's no longer in-use. So we always make a wrapped |
| 184 | // copy, where the release proc informs us that the context is done with |
| 185 | // it. This is unfortunate - we'll have two texture objects referencing |
| 186 | // the same GPU object. However, no client can ever see the original |
| 187 | // texture, so this should be safe. We make the texture uncacheable so |
| 188 | // that the release proc is called ASAP. |
| 189 | tex = resourceProvider->wrapBackendTexture( |
| 190 | backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, |
| 191 | kRead_GrIOType); |
| 192 | if (!tex) { |
| 193 | return {}; |
| 194 | } |
| 195 | tex->setRelease(releaseProcHelper); |
| 196 | tex->resourcePriv().setUniqueKey(refHelper->fBorrowedTextureKey); |
| 197 | } |
| 198 | // We use keys to avoid re-wrapping the GrBackendTexture in a GrTexture. |
| 199 | // This is unrelated to the whatever SkImage key may be assigned to the |
| 200 | // proxy. |
| 201 | return {std::move(tex), true, GrSurfaceProxy::LazyInstantiationKeyMode::kUnsynced}; |
| 202 | }, |
Greg Daniel | c113f00 | 2020-08-26 13:28:22 -0400 | [diff] [blame^] | 203 | backendFormat, fBackendTexture.dimensions(), textureIsMipMapped, mipmapStatus, |
| 204 | GrInternalSurfaceFlags::kReadOnly, SkBackingFit::kExact, SkBudgeted::kNo, |
Brian Salomon | 8a78e9c | 2020-03-27 10:42:15 -0400 | [diff] [blame] | 205 | GrProtected::kNo, GrSurfaceProxy::UseAllocator::kYes); |
Greg Daniel | e320486 | 2018-04-16 11:24:10 -0400 | [diff] [blame] | 206 | if (!proxy) { |
Greg Daniel | cc104db | 2020-02-03 14:17:08 -0500 | [diff] [blame] | 207 | return {}; |
Greg Daniel | e320486 | 2018-04-16 11:24:10 -0400 | [diff] [blame] | 208 | } |
| 209 | |
Brian Salomon | bc074a6 | 2020-03-18 10:06:13 -0400 | [diff] [blame] | 210 | if (texGenPolicy == GrImageTexGenPolicy::kDraw && origin.isZero() && |
| 211 | info.dimensions() == fBackendTexture.dimensions() && |
Brian Salomon | 8c82a87 | 2020-07-21 12:09:58 -0400 | [diff] [blame] | 212 | (mipMapped == GrMipmapped::kNo || proxy->mipmapped() == GrMipmapped::kYes)) { |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 213 | // If the caller wants the entire texture and we have the correct mip support, we're done |
Greg Daniel | cc104db | 2020-02-03 14:17:08 -0500 | [diff] [blame] | 214 | return GrSurfaceProxyView(std::move(proxy), fSurfaceOrigin, readSwizzle); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 215 | } else { |
Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 216 | SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height()); |
Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 217 | |
Brian Salomon | bc074a6 | 2020-03-18 10:06:13 -0400 | [diff] [blame] | 218 | SkBudgeted budgeted = texGenPolicy == GrImageTexGenPolicy::kNew_Uncached_Unbudgeted |
| 219 | ? SkBudgeted::kNo |
| 220 | : SkBudgeted::kYes; |
| 221 | |
Brian Salomon | c524378 | 2020-04-02 12:50:34 -0400 | [diff] [blame] | 222 | auto copy = GrSurfaceProxy::Copy(context, proxy.get(), fSurfaceOrigin, mipMapped, subset, |
| 223 | SkBackingFit::kExact, budgeted); |
| 224 | return {std::move(copy), fSurfaceOrigin, readSwizzle}; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 225 | } |
| 226 | } |