blob: 5b2a5e2aad3c33ad5582bd6826895d3aad13d21f [file] [log] [blame]
Jim Van Verth8026ccc2018-10-04 13:10:39 -04001/*
2 * Copyright 2018 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
Greg Danielc7672092020-02-06 14:32:54 -05008#include "src/image/SkImage_GpuBase.h"
9
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkPromiseImageTexture.h"
11#include "include/gpu/GrBackendSurface.h"
12#include "include/gpu/GrContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "include/private/GrRecordingContext.h"
14#include "src/core/SkBitmapCache.h"
15#include "src/core/SkTLList.h"
16#include "src/gpu/GrClip.h"
17#include "src/gpu/GrContextPriv.h"
Brian Salomonf2ebdd92019-09-30 12:15:30 -040018#include "src/gpu/GrImageInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/gpu/GrRecordingContextPriv.h"
20#include "src/gpu/GrRenderTargetContext.h"
Greg Daniel456f9b52020-03-05 19:14:18 +000021#include "src/gpu/GrTexture.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "src/gpu/GrTextureAdjuster.h"
23#include "src/gpu/effects/GrYUVtoRGBEffect.h"
24#include "src/image/SkImage_Gpu.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050025#include "src/image/SkReadPixelsRec.h"
Jim Van Verth8026ccc2018-10-04 13:10:39 -040026
Brian Salomon9f2b86c2019-10-22 10:37:46 -040027SkImage_GpuBase::SkImage_GpuBase(sk_sp<GrContext> context, SkISize size, uint32_t uniqueID,
Brian Salomon5ad6fd32019-03-21 15:30:08 -040028 SkColorType ct, SkAlphaType at, sk_sp<SkColorSpace> cs)
Brian Salomon9f2b86c2019-10-22 10:37:46 -040029 : INHERITED(SkImageInfo::Make(size, ct, at, std::move(cs)), uniqueID)
Brian Salomon5ad6fd32019-03-21 15:30:08 -040030 , fContext(std::move(context)) {}
Jim Van Verth8026ccc2018-10-04 13:10:39 -040031
Jim Van Verth8026ccc2018-10-04 13:10:39 -040032//////////////////////////////////////////////////////////////////////////////////////////////////
33
Robert Phillipsfd0d9702019-02-01 10:19:42 -050034#if GR_TEST_UTILS
35void SkImage_GpuBase::resetContext(sk_sp<GrContext> newContext) {
Robert Phillipsfe0963c2019-02-07 13:25:07 -050036 SkASSERT(fContext->priv().matches(newContext.get()));
Robert Phillipsfd0d9702019-02-01 10:19:42 -050037 fContext = newContext;
38}
39#endif
40
Robert Phillips62221e72019-07-24 15:07:38 -040041bool SkImage_GpuBase::ValidateBackendTexture(const GrCaps* caps, const GrBackendTexture& tex,
42 GrColorType grCT, SkColorType ct, SkAlphaType at,
Jim Van Verth8026ccc2018-10-04 13:10:39 -040043 sk_sp<SkColorSpace> cs) {
44 if (!tex.isValid()) {
45 return false;
46 }
Brian Salomon2cae3b02020-03-27 11:18:08 -040047 SkColorInfo info(ct, at, cs);
48 if (!SkColorInfoIsValid(info)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -040049 return false;
50 }
Brian Salomonf391d0f2018-12-14 09:18:50 -050051 GrBackendFormat backendFormat = tex.getBackendFormat();
52 if (!backendFormat.isValid()) {
53 return false;
54 }
Greg Daniele877dce2019-07-11 10:52:43 -040055
Robert Phillips62221e72019-07-24 15:07:38 -040056 return caps->areColorTypeAndFormatCompatible(grCT, backendFormat);
Jim Van Verth8026ccc2018-10-04 13:10:39 -040057}
58
Robert Phillipsead321b2019-12-19 10:16:32 -050059bool SkImage_GpuBase::ValidateCompressedBackendTexture(const GrCaps* caps,
60 const GrBackendTexture& tex,
61 SkAlphaType at) {
Robert Phillipsead321b2019-12-19 10:16:32 -050062 if (!tex.isValid() || tex.width() <= 0 || tex.height() <= 0) {
63 return false;
64 }
65
66 if (tex.width() > caps->maxTextureSize() || tex.height() > caps->maxTextureSize()) {
67 return false;
68 }
69
70 if (at == kUnknown_SkAlphaType) {
71 return false;
72 }
73
74 GrBackendFormat backendFormat = tex.getBackendFormat();
75 if (!backendFormat.isValid()) {
76 return false;
77 }
78
79 if (!caps->isFormatCompressed(backendFormat)) {
80 return false;
81 }
82
83 return true;
84}
85
Jim Van Verth8026ccc2018-10-04 13:10:39 -040086//////////////////////////////////////////////////////////////////////////////////////////////////
87
Brian Osmane50cdf02018-10-19 13:02:14 -040088bool SkImage_GpuBase::getROPixels(SkBitmap* dst, CachingHint chint) const {
Robert Phillips920d4882019-03-04 15:16:44 -050089 auto direct = fContext->priv().asDirectContext();
90 if (!direct) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -040091 // DDL TODO: buffer up the readback so it occurs when the DDL is drawn?
92 return false;
93 }
94
Jim Van Verth8026ccc2018-10-04 13:10:39 -040095 const auto desc = SkBitmapCacheDesc::Make(this);
96 if (SkBitmapCache::Find(desc, dst)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -040097 SkASSERT(dst->isImmutable());
98 SkASSERT(dst->getPixels());
99 return true;
100 }
101
102 SkBitmapCache::RecPtr rec = nullptr;
103 SkPixmap pmap;
104 if (kAllow_CachingHint == chint) {
Brian Salomon5ad6fd32019-03-21 15:30:08 -0400105 rec = SkBitmapCache::Alloc(desc, this->imageInfo(), &pmap);
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400106 if (!rec) {
107 return false;
108 }
109 } else {
Brian Salomon5ad6fd32019-03-21 15:30:08 -0400110 if (!dst->tryAllocPixels(this->imageInfo()) || !dst->peekPixels(&pmap)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400111 return false;
112 }
113 }
114
Greg Daniel37c127f2020-02-05 10:37:27 -0500115 const GrSurfaceProxyView* view = this->view(direct);
116 SkASSERT(view);
Greg Danielc7672092020-02-06 14:32:54 -0500117 GrColorType grColorType = SkColorTypeAndFormatToGrColorType(
118 fContext->priv().caps(), this->colorType(), view->proxy()->backendFormat());
Greg Danielba88ab62019-07-26 09:14:01 -0400119
Greg Daniel37c127f2020-02-05 10:37:27 -0500120 auto sContext = GrSurfaceContext::Make(direct, *view, grColorType, this->alphaType(),
121 this->refColorSpace());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400122 if (!sContext) {
123 return false;
124 }
125
Brian Salomon1d435302019-07-01 13:05:28 -0400126 if (!sContext->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), {0, 0})) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400127 return false;
128 }
129
130 if (rec) {
131 SkBitmapCache::Add(std::move(rec), dst);
132 this->notifyAddedToRasterCache();
133 }
134 return true;
135}
136
Robert Phillips6603a172019-03-05 12:35:44 -0500137sk_sp<SkImage> SkImage_GpuBase::onMakeSubset(GrRecordingContext* context,
138 const SkIRect& subset) const {
139 if (!context || !fContext->priv().matches(context)) {
140 return nullptr;
141 }
142
Greg Daniel37c127f2020-02-05 10:37:27 -0500143 const GrSurfaceProxyView* view = this->view(context);
144 SkASSERT(view && view->proxy());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400145
Brian Salomonc5243782020-04-02 12:50:34 -0400146 auto copyView = GrSurfaceProxyView::Copy(context, *view, GrMipMapped::kNo, subset,
147 SkBackingFit::kExact, view->proxy()->isBudgeted());
Greg Daniel3155f7f2020-01-16 16:54:26 -0500148
Brian Salomonc5243782020-04-02 12:50:34 -0400149 if (!copyView) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400150 return nullptr;
151 }
152
153 // MDB: this call is okay bc we know 'sContext' was kExact
Greg Daniel40903af2020-01-30 14:55:05 -0500154 return sk_make_sp<SkImage_Gpu>(fContext, kNeedNewImageUniqueID, std::move(copyView),
Greg Daniel7c165a42020-01-22 12:22:36 -0500155 this->colorType(), this->alphaType(), this->refColorSpace());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400156}
157
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400158bool SkImage_GpuBase::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB,
159 int srcX, int srcY, CachingHint) const {
Robert Phillips920d4882019-03-04 15:16:44 -0500160 auto direct = fContext->priv().asDirectContext();
161 if (!direct) {
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400162 // DDL TODO: buffer up the readback so it occurs when the DDL is drawn?
163 return false;
164 }
165
Brian Salomon5ad6fd32019-03-21 15:30:08 -0400166 if (!SkImageInfoValidConversion(dstInfo, this->imageInfo())) {
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400167 return false;
168 }
169
Greg Daniel37c127f2020-02-05 10:37:27 -0500170 const GrSurfaceProxyView* view = this->view(direct);
171 SkASSERT(view);
Greg Danielc7672092020-02-06 14:32:54 -0500172 GrColorType grColorType = SkColorTypeAndFormatToGrColorType(
173 fContext->priv().caps(), this->colorType(), view->proxy()->backendFormat());
Greg Danielba88ab62019-07-26 09:14:01 -0400174
Greg Daniel37c127f2020-02-05 10:37:27 -0500175 auto sContext = GrSurfaceContext::Make(direct, *view, grColorType, this->alphaType(),
176 this->refColorSpace());
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400177 if (!sContext) {
178 return false;
179 }
180
Brian Salomon1d435302019-07-01 13:05:28 -0400181 return sContext->readPixels(dstInfo, dstPixels, dstRB, {srcX, srcY});
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400182}
183
Brian Salomonc8d092a2020-02-24 10:14:21 -0500184GrSurfaceProxyView SkImage_GpuBase::refView(GrRecordingContext* context,
Brian Salomonecbb0fb2020-02-28 18:07:32 -0500185 GrMipMapped mipMapped) const {
Robert Phillips6603a172019-03-05 12:35:44 -0500186 if (!context || !fContext->priv().matches(context)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400187 SkASSERT(0);
Greg Danielfebdedf2020-02-05 17:06:27 -0500188 return {};
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400189 }
190
Greg Daniel37c127f2020-02-05 10:37:27 -0500191 GrTextureAdjuster adjuster(fContext.get(), *this->view(context), this->imageInfo().colorInfo(),
192 this->uniqueID());
Brian Salomonecbb0fb2020-02-28 18:07:32 -0500193 return adjuster.view(mipMapped);
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400194}
195
196GrBackendTexture SkImage_GpuBase::onGetBackendTexture(bool flushPendingGrContextIO,
197 GrSurfaceOrigin* origin) const {
Robert Phillips920d4882019-03-04 15:16:44 -0500198 auto direct = fContext->priv().asDirectContext();
199 if (!direct) {
200 // This image was created with a DDL context and cannot be instantiated.
Greg Danielc7672092020-02-06 14:32:54 -0500201 return GrBackendTexture(); // invalid
Robert Phillips920d4882019-03-04 15:16:44 -0500202 }
203
Greg Danielfebdedf2020-02-05 17:06:27 -0500204 const GrSurfaceProxyView* view = this->view(direct);
205 SkASSERT(view && *view);
206 GrSurfaceProxy* proxy = view->proxy();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400207
Robert Phillips920d4882019-03-04 15:16:44 -0500208 if (!proxy->isInstantiated()) {
209 auto resourceProvider = direct->priv().resourceProvider();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400210
Robert Phillips920d4882019-03-04 15:16:44 -0500211 if (!proxy->instantiate(resourceProvider)) {
Greg Danielc7672092020-02-06 14:32:54 -0500212 return GrBackendTexture(); // invalid
Robert Phillips920d4882019-03-04 15:16:44 -0500213 }
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400214 }
215
216 GrTexture* texture = proxy->peekTexture();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400217 if (texture) {
218 if (flushPendingGrContextIO) {
Greg Daniel55f040b2020-02-13 15:38:32 +0000219 direct->priv().flushSurface(proxy);
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400220 }
221 if (origin) {
Greg Danielb8d84f82020-02-13 14:25:00 -0500222 *origin = view->origin();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400223 }
224 return texture->getBackendTexture();
225 }
Greg Danielc7672092020-02-06 14:32:54 -0500226 return GrBackendTexture(); // invalid
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400227}
228
Greg Daniel7c902112020-03-06 13:07:10 -0500229GrTexture* SkImage_GpuBase::getTexture() const {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400230 GrTextureProxy* proxy = this->peekProxy();
Robert Phillips193c4212019-03-04 12:18:53 -0500231 if (proxy && proxy->isInstantiated()) {
232 return proxy->peekTexture();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400233 }
234
Robert Phillips193c4212019-03-04 12:18:53 -0500235 auto direct = fContext->priv().asDirectContext();
236 if (!direct) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400237 // This image was created with a DDL context and cannot be instantiated.
238 return nullptr;
239 }
240
Greg Danielfebdedf2020-02-05 17:06:27 -0500241 const GrSurfaceProxyView* view = this->view(direct);
242 SkASSERT(view && *view && !view->proxy()->isInstantiated());
Robert Phillips193c4212019-03-04 12:18:53 -0500243
Greg Danielfebdedf2020-02-05 17:06:27 -0500244 if (!view->proxy()->instantiate(direct->priv().resourceProvider())) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400245 return nullptr;
246 }
247
Greg Danielfebdedf2020-02-05 17:06:27 -0500248 return view->proxy()->peekTexture();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400249}
250
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400251bool SkImage_GpuBase::onIsValid(GrContext* context) const {
252 // The base class has already checked that context isn't abandoned (if it's not nullptr)
Robert Phillips920d4882019-03-04 15:16:44 -0500253 if (fContext->priv().abandoned()) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400254 return false;
255 }
256
Robert Phillips920d4882019-03-04 15:16:44 -0500257 if (context && !fContext->priv().matches(context)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400258 return false;
259 }
260
261 return true;
262}
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400263
Jim Van Verth0e671942018-11-09 12:03:57 -0500264bool SkImage_GpuBase::MakeTempTextureProxies(GrContext* ctx, const GrBackendTexture yuvaTextures[],
Jim Van Verth53275362018-11-09 15:42:35 -0500265 int numTextures, const SkYUVAIndex yuvaIndices[4],
266 GrSurfaceOrigin imageOrigin,
Greg Danielc7672092020-02-06 14:32:54 -0500267 GrSurfaceProxyView tempViews[4]) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500268 GrProxyProvider* proxyProvider = ctx->priv().proxyProvider();
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400269 const GrCaps* caps = ctx->priv().caps();
Jim Van Verth0e671942018-11-09 12:03:57 -0500270
Jim Van Verth0e671942018-11-09 12:03:57 -0500271 for (int textureIndex = 0; textureIndex < numTextures; ++textureIndex) {
Robert Phillips62221e72019-07-24 15:07:38 -0400272 GrBackendFormat backendFormat = yuvaTextures[textureIndex].getBackendFormat();
Brian Salomonf391d0f2018-12-14 09:18:50 -0500273 if (!backendFormat.isValid()) {
274 return false;
275 }
Robert Phillips1cd1ed82019-07-23 13:21:01 -0400276
Robert Phillips00c9f0d2019-08-02 17:17:35 -0400277 GrColorType grColorType = caps->getYUVAColorTypeFromBackendFormat(
Greg Danielc7672092020-02-06 14:32:54 -0500278 backendFormat, yuvaIndices[3].fIndex == textureIndex);
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400279 if (GrColorType::kUnknown == grColorType) {
280 return false;
281 }
282
Robert Phillips62221e72019-07-24 15:07:38 -0400283 SkASSERT(yuvaTextures[textureIndex].isValid());
Jim Van Verth0e671942018-11-09 12:03:57 -0500284
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400285 auto proxy = proxyProvider->wrapBackendTexture(yuvaTextures[textureIndex],
Greg Daniel3a365112020-02-14 10:47:18 -0500286 kBorrow_GrWrapOwnership,
Greg Danielc7672092020-02-06 14:32:54 -0500287 GrWrapCacheable::kNo, kRead_GrIOType);
288 if (!proxy) {
Jim Van Verth0e671942018-11-09 12:03:57 -0500289 return false;
290 }
Greg Danielc7672092020-02-06 14:32:54 -0500291 GrSwizzle swizzle = caps->getReadSwizzle(proxy->backendFormat(), grColorType);
292 tempViews[textureIndex] = GrSurfaceProxyView(std::move(proxy), imageOrigin, swizzle);
Jim Van Verth53275362018-11-09 15:42:35 -0500293
294 // Check that each texture contains the channel data for the corresponding YUVA index
Brian Salomon2f23ae62020-03-26 16:17:56 -0400295 auto channelFlags = GrColorTypeChannelFlags(grColorType);
Jim Van Verth53275362018-11-09 15:42:35 -0500296 for (int yuvaIndex = 0; yuvaIndex < SkYUVAIndex::kIndexCount; ++yuvaIndex) {
297 if (yuvaIndices[yuvaIndex].fIndex == textureIndex) {
298 switch (yuvaIndices[yuvaIndex].fChannel) {
299 case SkColorChannel::kR:
Greg Danielc7672092020-02-06 14:32:54 -0500300 // TODO: Chrome needs to be patched before this can be
301 // enforced.
Brian Salomon2f23ae62020-03-26 16:17:56 -0400302 // if (!(kRed_SkColorChannelFlag & channelFlags)) {
Greg Danielc7672092020-02-06 14:32:54 -0500303 // return false;
304 // }
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400305 break;
306 case SkColorChannel::kG:
Brian Salomon2f23ae62020-03-26 16:17:56 -0400307 if (!(kGreen_SkColorChannelFlag & channelFlags)) {
Jim Van Verth53275362018-11-09 15:42:35 -0500308 return false;
309 }
310 break;
Jim Van Verth53275362018-11-09 15:42:35 -0500311 case SkColorChannel::kB:
Brian Salomon2f23ae62020-03-26 16:17:56 -0400312 if (!(kBlue_SkColorChannelFlag & channelFlags)) {
Jim Van Verth53275362018-11-09 15:42:35 -0500313 return false;
314 }
315 break;
316 case SkColorChannel::kA:
Brian Salomon2f23ae62020-03-26 16:17:56 -0400317 if (!(kAlpha_SkColorChannelFlag & channelFlags)) {
Jim Van Verth53275362018-11-09 15:42:35 -0500318 return false;
319 }
320 break;
321 }
322 }
323 }
Jim Van Verth0e671942018-11-09 12:03:57 -0500324 }
325
326 return true;
327}
328
329bool SkImage_GpuBase::RenderYUVAToRGBA(GrContext* ctx, GrRenderTargetContext* renderTargetContext,
330 const SkRect& rect, SkYUVColorSpace yuvColorSpace,
Brian Osmane9560492019-02-05 17:00:03 -0500331 sk_sp<GrColorSpaceXform> colorSpaceXform,
Greg Danielc7672092020-02-06 14:32:54 -0500332 GrSurfaceProxyView views[4],
Jim Van Verth0e671942018-11-09 12:03:57 -0500333 const SkYUVAIndex yuvaIndices[4]) {
334 SkASSERT(renderTargetContext);
335 if (!renderTargetContext->asSurfaceProxy()) {
336 return false;
337 }
338
339 GrPaint paint;
340 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
341
Brian Salomonca6b2f42020-01-24 11:31:21 -0500342 const auto& caps = *ctx->priv().caps();
Greg Danielc7672092020-02-06 14:32:54 -0500343 auto fp = GrYUVtoRGBEffect::Make(views, yuvaIndices, yuvColorSpace,
Brian Salomonca6b2f42020-01-24 11:31:21 -0500344 GrSamplerState::Filter::kNearest, caps);
Brian Osmane9560492019-02-05 17:00:03 -0500345 if (colorSpaceXform) {
346 fp = GrColorSpaceXformEffect::Make(std::move(fp), std::move(colorSpaceXform));
347 }
348 paint.addColorFragmentProcessor(std::move(fp));
Jim Van Verth0e671942018-11-09 12:03:57 -0500349
350 renderTargetContext->drawRect(GrNoClip(), std::move(paint), GrAA::kNo, SkMatrix::I(), rect);
Jim Van Verth0e671942018-11-09 12:03:57 -0500351 return true;
352}
353
Brian Salomonbe5a0932018-12-10 10:03:26 -0500354sk_sp<GrTextureProxy> SkImage_GpuBase::MakePromiseImageLazyProxy(
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400355 GrContext* context, int width, int height,
Brian Salomonbe5a0932018-12-10 10:03:26 -0500356 GrBackendFormat backendFormat, GrMipMapped mipMapped,
Greg Danielc7672092020-02-06 14:32:54 -0500357 PromiseImageTextureFulfillProc fulfillProc, PromiseImageTextureReleaseProc releaseProc,
358 PromiseImageTextureDoneProc doneProc, PromiseImageTextureContext textureContext,
Brian Salomon0cc57542019-03-08 13:28:46 -0500359 PromiseImageApiVersion version) {
Brian Salomonbe5a0932018-12-10 10:03:26 -0500360 SkASSERT(context);
361 SkASSERT(width > 0 && height > 0);
362 SkASSERT(doneProc);
363
364 if (!fulfillProc || !releaseProc) {
365 doneProc(textureContext);
366 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400367 }
368
Brian Salomonbe5a0932018-12-10 10:03:26 -0500369 if (mipMapped == GrMipMapped::kYes &&
370 GrTextureTypeHasRestrictedSampling(backendFormat.textureType())) {
371 // It is invalid to have a GL_TEXTURE_EXTERNAL or GL_TEXTURE_RECTANGLE and have mips as
372 // well.
373 doneProc(textureContext);
374 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400375 }
Brian Salomonbe5a0932018-12-10 10:03:26 -0500376
377 /**
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500378 * This class is the lazy instantiation callback for promise images. It manages calling the
379 * client's Fulfill, Release, and Done procs. It attempts to reuse a GrTexture instance in
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500380 * cases where the client provides the same SkPromiseImageTexture as Fulfill results for
381 * multiple SkImages. The created GrTexture is given a key based on a unique ID associated with
382 * the SkPromiseImageTexture.
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500383 *
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500384 * The GrTexutre idle proc mechanism is used to call the Release and Done procs. We use this
385 * instead of the GrSurface release proc because the GrTexture is cached and therefore may
386 * outlive the proxy into which this callback is installed.
387 *
388 * A key invalidation message is installed on the SkPromiseImageTexture so that the GrTexture
389 * is deleted once it can no longer be used to instantiate a proxy.
Brian Salomonbe5a0932018-12-10 10:03:26 -0500390 */
391 class PromiseLazyInstantiateCallback {
392 public:
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500393 PromiseLazyInstantiateCallback(PromiseImageTextureFulfillProc fulfillProc,
394 PromiseImageTextureReleaseProc releaseProc,
395 PromiseImageTextureDoneProc doneProc,
396 PromiseImageTextureContext context,
Brian Salomon0cc57542019-03-08 13:28:46 -0500397 PromiseImageApiVersion version)
398 : fFulfillProc(fulfillProc)
399 , fReleaseProc(releaseProc)
Brian Salomon0cc57542019-03-08 13:28:46 -0500400 , fVersion(version) {
Brian Salomone80b8092019-03-08 13:25:19 -0500401 fDoneCallback = sk_make_sp<GrRefCntedCallback>(doneProc, context);
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500402 }
403 PromiseLazyInstantiateCallback(PromiseLazyInstantiateCallback&&) = default;
404 PromiseLazyInstantiateCallback(const PromiseLazyInstantiateCallback&) {
405 // Because we get wrapped in std::function we must be copyable. But we should never
406 // be copied.
407 SkASSERT(false);
408 }
409 PromiseLazyInstantiateCallback& operator=(PromiseLazyInstantiateCallback&&) = default;
410 PromiseLazyInstantiateCallback& operator=(const PromiseLazyInstantiateCallback&) {
411 SkASSERT(false);
412 return *this;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500413 }
Brian Salomon553610d2019-01-14 17:34:12 -0500414
Brian Salomon88b8d112019-03-07 15:25:34 +0000415 ~PromiseLazyInstantiateCallback() {
Brian Salomon876a0172019-03-08 11:12:14 -0500416 // Our destructor can run on any thread. We trigger the unref of fTexture by message.
Robert Phillipsddc21482019-10-16 14:30:09 -0400417 // This unreffed texture pointer is a real problem! When the context has been
418 // abandoned, the GrTexture pointed to by this pointer is deleted! Due to virtual
419 // inheritance any manipulation of this pointer at that point will cause a crash.
420 // For now we "work around" the problem by just passing it, untouched, into the
421 // message bus but this very fragile.
422 // In the future the GrSurface class hierarchy refactoring should eliminate this
423 // difficulty by removing the virtual inheritance.
Brian Salomon876a0172019-03-08 11:12:14 -0500424 if (fTexture) {
Robert Phillipsddc21482019-10-16 14:30:09 -0400425 SkMessageBus<GrTextureFreedMessage>::Post({fTexture, fTextureContextID});
Brian Salomon876a0172019-03-08 11:12:14 -0500426 }
Brian Salomon88b8d112019-03-07 15:25:34 +0000427 }
428
Brian Salomonbeb7f522019-08-30 16:19:42 -0400429 GrSurfaceProxy::LazyCallbackResult operator()(GrResourceProvider* resourceProvider) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400430 // We use the unique key in a way that is unrelated to the SkImage-based key that the
431 // proxy may receive, hence kUnsynced.
432 static constexpr auto kKeySyncMode =
433 GrSurfaceProxy::LazyInstantiationKeyMode::kUnsynced;
434
Brian Salomonbeb7f522019-08-30 16:19:42 -0400435 // In order to make the SkImage "thread safe" we rely on holding an extra ref to the
436 // texture in the callback and signalling the unref via a message to the resource cache.
437 // We need to extend the callback's lifetime to that of the proxy.
438 static constexpr auto kReleaseCallbackOnInstantiation = false;
439
Brian Salomon876a0172019-03-08 11:12:14 -0500440 // Our proxy is getting instantiated for the second+ time. We are only allowed to call
441 // Fulfill once. So return our cached result.
442 if (fTexture) {
Brian Salomonbeb7f522019-08-30 16:19:42 -0400443 return {sk_ref_sp(fTexture), kReleaseCallbackOnInstantiation, kKeySyncMode};
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400444 } else if (fFulfillProcFailed) {
Brian Salomond538d3d2019-04-04 12:18:17 -0400445 // We've already called fulfill and it failed. Our contract says that we should only
446 // call each callback once.
447 return {};
Brian Salomon876a0172019-03-08 11:12:14 -0500448 }
Brian Salomone80b8092019-03-08 13:25:19 -0500449 SkASSERT(fDoneCallback);
450 PromiseImageTextureContext textureContext = fDoneCallback->context();
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500451 sk_sp<SkPromiseImageTexture> promiseTexture = fFulfillProc(textureContext);
452 // From here on out our contract is that the release proc must be called, even if
453 // the return from fulfill was invalid or we fail for some other reason.
Brian Salomone80b8092019-03-08 13:25:19 -0500454 auto releaseCallback = sk_make_sp<GrRefCntedCallback>(fReleaseProc, textureContext);
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500455 if (!promiseTexture) {
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400456 fFulfillProcFailed = true;
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400457 return {};
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500458 }
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500459
Robert Phillips62221e72019-07-24 15:07:38 -0400460 const GrBackendTexture& backendTexture = promiseTexture->backendTexture();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500461 if (!backendTexture.isValid()) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400462 return {};
Brian Salomon559c6172019-01-10 10:23:44 -0500463 }
464
Brian Salomonf55e8d52019-01-30 17:28:20 -0500465 sk_sp<GrTexture> tex;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500466 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
Brian Salomon7d88f312019-02-28 10:03:03 -0500467 GrUniqueKey key;
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400468 GrUniqueKey::Builder builder(&key, kDomain, 1, "promise");
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500469 builder[0] = promiseTexture->uniqueID();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500470 builder.finish();
Brian Salomon0d606762019-01-25 09:58:38 -0500471 // A texture with this key may already exist from a different instance of this lazy
472 // callback. This could happen if the client fulfills a promise image with a texture
473 // that was previously used to fulfill a different promise image.
Brian Salomon7d88f312019-02-28 10:03:03 -0500474 if (auto surf = resourceProvider->findByUniqueKey<GrSurface>(key)) {
Brian Salomon0d606762019-01-25 09:58:38 -0500475 tex = sk_ref_sp(surf->asTexture());
476 SkASSERT(tex);
477 } else {
478 if ((tex = resourceProvider->wrapBackendTexture(
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400479 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kYes,
480 kRead_GrIOType))) {
Brian Salomon7d88f312019-02-28 10:03:03 -0500481 tex->resourcePriv().setUniqueKey(key);
Brian Salomon0d606762019-01-25 09:58:38 -0500482 } else {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400483 return {};
Brian Salomon0d606762019-01-25 09:58:38 -0500484 }
485 }
Brian Salomon0cc57542019-03-08 13:28:46 -0500486 auto releaseIdleState = fVersion == PromiseImageApiVersion::kLegacy
487 ? GrTexture::IdleState::kFinished
488 : GrTexture::IdleState::kFlushed;
489 tex->addIdleProc(std::move(releaseCallback), releaseIdleState);
Brian Salomone80b8092019-03-08 13:25:19 -0500490 tex->addIdleProc(std::move(fDoneCallback), GrTexture::IdleState::kFinished);
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500491 promiseTexture->addKeyToInvalidate(tex->getContext()->priv().contextID(), key);
Brian Salomon876a0172019-03-08 11:12:14 -0500492 fTexture = tex.get();
493 // We need to hold on to the GrTexture in case our proxy gets reinstantiated. However,
494 // we can't unref in our destructor because we may be on another thread then. So we
495 // let the cache know it is waiting on an unref message. We will send that message from
496 // our destructor.
497 GrContext* context = fTexture->getContext();
Robert Phillipsddc21482019-10-16 14:30:09 -0400498 context->priv().getResourceCache()->insertDelayedTextureUnref(fTexture);
Brian Salomon876a0172019-03-08 11:12:14 -0500499 fTextureContextID = context->priv().contextID();
Brian Salomonbeb7f522019-08-30 16:19:42 -0400500 return {std::move(tex), kReleaseCallbackOnInstantiation, kKeySyncMode};
Brian Salomonbe5a0932018-12-10 10:03:26 -0500501 }
502
503 private:
Brian Salomone80b8092019-03-08 13:25:19 -0500504 PromiseImageTextureFulfillProc fFulfillProc;
505 PromiseImageTextureReleaseProc fReleaseProc;
506 sk_sp<GrRefCntedCallback> fDoneCallback;
Brian Salomon876a0172019-03-08 11:12:14 -0500507 GrTexture* fTexture = nullptr;
508 uint32_t fTextureContextID = SK_InvalidUniqueID;
Brian Salomon0cc57542019-03-08 13:28:46 -0500509 PromiseImageApiVersion fVersion;
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400510 bool fFulfillProcFailed = false;
511 } callback(fulfillProc, releaseProc, doneProc, textureContext, version);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500512
Robert Phillips9da87e02019-02-04 13:26:26 -0500513 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Brian Salomonbe5a0932018-12-10 10:03:26 -0500514
Chris Dalton95d8ceb2019-07-30 11:17:59 -0600515 // Ganesh assumes that, when wrapping a mipmapped backend texture from a client, that its
516 // mipmaps are fully fleshed out.
517 GrMipMapsStatus mipMapsStatus = (GrMipMapped::kYes == mipMapped)
518 ? GrMipMapsStatus::kValid : GrMipMapsStatus::kNotAllocated;
519
Brian Salomonbe5a0932018-12-10 10:03:26 -0500520 // We pass kReadOnly here since we should treat content of the client's texture as immutable.
Brian Salomone8a766b2019-07-19 14:24:36 -0400521 // The promise API provides no way for the client to indicated that the texture is protected.
Greg Daniel3a365112020-02-14 10:47:18 -0500522 return proxyProvider->createLazyProxy(
Brian Salomondf1bd6d2020-03-26 20:37:01 -0400523 std::move(callback), backendFormat, {width, height}, GrRenderable::kNo, 1, mipMapped,
524 mipMapsStatus, GrInternalSurfaceFlags::kReadOnly, SkBackingFit::kExact, SkBudgeted::kNo,
525 GrProtected::kNo, GrSurfaceProxy::UseAllocator::kYes);
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400526}