| 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" |
| 9 | |
| 10 | #include "GrContext.h" |
| 11 | #include "GrContextPriv.h" |
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 12 | #include "GrGpu.h" |
| Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 13 | #include "GrProxyProvider.h" |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 14 | #include "GrRenderTargetContext.h" |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 15 | #include "GrResourceCache.h" |
| 16 | #include "GrResourceProvider.h" |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 17 | #include "GrResourceProviderPriv.h" |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 18 | #include "GrSemaphore.h" |
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 19 | #include "GrTexture.h" |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 20 | #include "GrTexturePriv.h" |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 21 | |
| 22 | #include "SkGr.h" |
| 23 | #include "SkMessageBus.h" |
| 24 | |
| 25 | GrBackendTextureImageGenerator::RefHelper::~RefHelper() { |
| 26 | SkASSERT(nullptr == fBorrowedTexture); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 27 | |
| 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 Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 34 | std::unique_ptr<SkImageGenerator> |
| Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 35 | GrBackendTextureImageGenerator::Make(sk_sp<GrTexture> texture, GrSurfaceOrigin origin, |
| 36 | sk_sp<GrSemaphore> semaphore, |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 37 | SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) { |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 38 | 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 Phillips | 6be756b | 2018-01-16 15:07:54 -0500 | [diff] [blame] | 48 | context->contextPriv().getResourceCache()->insertCrossContextGpuResource(texture.get()); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 49 | |
| Robert Phillips | b67821d | 2017-12-13 15:00:45 -0500 | [diff] [blame] | 50 | GrBackendTexture backendTexture = texture->getBackendTexture(); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 51 | |
| 52 | SkImageInfo info = SkImageInfo::Make(texture->width(), texture->height(), colorType, alphaType, |
| 53 | std::move(colorSpace)); |
| 54 | return std::unique_ptr<SkImageGenerator>(new GrBackendTextureImageGenerator( |
| Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 55 | info, texture.get(), origin, context->uniqueID(), std::move(semaphore), backendTexture)); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | GrBackendTextureImageGenerator::GrBackendTextureImageGenerator(const SkImageInfo& info, |
| 59 | GrTexture* texture, |
| Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 60 | GrSurfaceOrigin origin, |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 61 | 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 Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 67 | , fBackendTexture(backendTex) |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 68 | , fConfig(backendTex.config()) |
| Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 69 | , fSurfaceOrigin(origin) { } |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 70 | |
| 71 | GrBackendTextureImageGenerator::~GrBackendTextureImageGenerator() { |
| 72 | fRefHelper->unref(); |
| 73 | } |
| 74 | |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 75 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 76 | |
| 77 | #if SK_SUPPORT_GPU |
| 78 | void GrBackendTextureImageGenerator::ReleaseRefHelper_TextureReleaseProc(void* ctx) { |
| 79 | RefHelper* refHelper = static_cast<RefHelper*>(ctx); |
| 80 | SkASSERT(refHelper); |
| 81 | |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 82 | refHelper->fBorrowedTexture = nullptr; |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 83 | refHelper->fBorrowingContextReleaseProc = nullptr; |
| Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 84 | refHelper->fBorrowingContextID = SK_InvalidGenID; |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 85 | refHelper->unref(); |
| 86 | } |
| 87 | |
| Stan Iliev | ba81af2 | 2017-06-08 15:16:53 -0400 | [diff] [blame] | 88 | sk_sp<GrTextureProxy> GrBackendTextureImageGenerator::onGenerateTexture( |
| Christopher Cameron | 77e9666 | 2017-07-08 01:47:47 -0700 | [diff] [blame] | 89 | GrContext* context, const SkImageInfo& info, const SkIPoint& origin, |
| Greg Daniel | f88c12e | 2017-10-09 09:57:35 -0400 | [diff] [blame] | 90 | SkTransferFunctionBehavior, bool willNeedMipMaps) { |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 91 | SkASSERT(context); |
| 92 | |
| 93 | if (context->contextPriv().getBackend() != fBackendTexture.backend()) { |
| 94 | return nullptr; |
| 95 | } |
| 96 | |
| Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 97 | auto proxyProvider = context->contextPriv().proxyProvider(); |
| 98 | |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 99 | fBorrowingMutex.acquire(); |
| 100 | sk_sp<GrReleaseProcHelper> releaseProcHelper; |
| 101 | if (SK_InvalidGenID != fRefHelper->fBorrowingContextID) { |
| Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 102 | if (fRefHelper->fBorrowingContextID != context->uniqueID()) { |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 103 | fBorrowingMutex.release(); |
| Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 104 | return nullptr; |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 105 | } 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 Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 109 | } |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 110 | } 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 Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 118 | } |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 119 | fRefHelper->fBorrowingContextID = context->uniqueID(); |
| 120 | fBorrowingMutex.release(); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 121 | |
| 122 | SkASSERT(fRefHelper->fBorrowingContextID == context->uniqueID()); |
| 123 | |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 124 | 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 Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 133 | sk_sp<GrSemaphore> semaphore = fSemaphore; |
| 134 | GrBackendTexture backendTexture = fBackendTexture; |
| 135 | RefHelper* refHelper = fRefHelper; |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 136 | |
| Robert Phillips | 777707b | 2018-01-17 11:40:14 -0500 | [diff] [blame] | 137 | sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy( |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 138 | [refHelper, releaseProcHelper, semaphore, backendTexture] |
| Robert Phillips | ce5209a | 2018-02-13 11:13:51 -0500 | [diff] [blame] | 139 | (GrResourceProvider* resourceProvider) { |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 140 | if (!resourceProvider) { |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 141 | return sk_sp<GrTexture>(); |
| 142 | } |
| 143 | |
| Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 144 | if (semaphore) { |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 145 | 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 Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 156 | } 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 Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 166 | return sk_sp<GrTexture>(); |
| 167 | } |
| 168 | refHelper->fBorrowedTexture = tex.get(); |
| 169 | |
| Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 170 | tex->setRelease(releaseProcHelper); |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 171 | } |
| 172 | |
| Greg Daniel | e728f67 | 2018-01-17 10:52:04 -0500 | [diff] [blame] | 173 | return tex; |
| 174 | |
| 175 | }, desc, mipMapped, SkBackingFit::kExact, SkBudgeted::kNo); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 176 | |
| 177 | if (0 == origin.fX && 0 == origin.fY && |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 178 | info.width() == fBackendTexture.width() && info.height() == fBackendTexture.height() && |
| Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 179 | (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) { |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 180 | // 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] | 181 | return proxy; |
| 182 | } else { |
| 183 | // 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] | 184 | // 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 Daniel | 45d6303 | 2017-10-30 13:41:26 -0400 | [diff] [blame] | 186 | GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo; |
| Brian Salomon | 366093f | 2018-02-13 09:25:22 -0500 | [diff] [blame] | 187 | sk_sp<SkColorSpace> colorSpace; |
| 188 | if (GrPixelConfigIsSRGB(desc.fConfig)) { |
| 189 | colorSpace = SkColorSpace::MakeSRGB(); |
| 190 | } |
| Greg Daniel | 45d6303 | 2017-10-30 13:41:26 -0400 | [diff] [blame] | 191 | |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 192 | sk_sp<GrRenderTargetContext> rtContext(context->makeDeferredRenderTargetContext( |
| Brian Salomon | 366093f | 2018-02-13 09:25:22 -0500 | [diff] [blame] | 193 | SkBackingFit::kExact, info.width(), info.height(), proxy->config(), |
| 194 | std::move(colorSpace), 1, mipMapped, proxy->origin(), nullptr, SkBudgeted::kYes)); |
| Brian Salomon | 63e7973 | 2017-05-15 21:23:13 -0400 | [diff] [blame] | 195 | |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 196 | if (!rtContext) { |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 197 | return nullptr; |
| 198 | } |
| 199 | |
| 200 | SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height()); |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 201 | if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) { |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 202 | return nullptr; |
| 203 | } |
| 204 | |
| Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 205 | return rtContext->asTextureProxyRef(); |
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 206 | } |
| 207 | } |
| 208 | #endif |