blob: ce6bf28b742c740a93ffe8f89445085c072d3e28 [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"
Robert Phillips44333c52020-06-30 13:28:00 -040013#include "include/private/GrDirectContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "include/private/GrRecordingContext.h"
15#include "src/core/SkBitmapCache.h"
16#include "src/core/SkTLList.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/gpu/GrContextPriv.h"
Brian Salomonf2ebdd92019-09-30 12:15:30 -040018#include "src/gpu/GrImageInfo.h"
Robert Phillipse19babf2020-04-06 13:57:30 -040019#include "src/gpu/GrProxyProvider.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#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 Phillipsf8f45d92020-07-01 11:11:18 -040089 auto direct = fContext->asDirectContext();
Robert Phillips920d4882019-03-04 15:16:44 -050090 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 Phillipsf8f45d92020-07-01 11:11:18 -0400160 auto direct = fContext->asDirectContext();
Robert Phillips920d4882019-03-04 15:16:44 -0500161 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 Phillipsf8f45d92020-07-01 11:11:18 -0400198 auto direct = fContext->asDirectContext();
Robert Phillips920d4882019-03-04 15:16:44 -0500199 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 Phillipsf8f45d92020-07-01 11:11:18 -0400235 auto direct = fContext->asDirectContext();
Robert Phillips193c4212019-03-04 12:18:53 -0500236 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 Phillips9eb00022020-06-30 15:30:12 -0400253 if (fContext->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
Robert Phillipse22c5ca2020-06-19 12:29:57 -0400264bool SkImage_GpuBase::MakeTempTextureProxies(GrContext* ctx,
265 const GrBackendTexture yuvaTextures[],
266 int numTextures,
267 const SkYUVAIndex yuvaIndices[4],
Jim Van Verth53275362018-11-09 15:42:35 -0500268 GrSurfaceOrigin imageOrigin,
Robert Phillipse22c5ca2020-06-19 12:29:57 -0400269 GrSurfaceProxyView tempViews[4],
270 sk_sp<GrRefCntedCallback> releaseHelper) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500271 GrProxyProvider* proxyProvider = ctx->priv().proxyProvider();
Jim Van Verth0e671942018-11-09 12:03:57 -0500272 for (int textureIndex = 0; textureIndex < numTextures; ++textureIndex) {
Brian Salomonc505a452020-04-06 10:29:02 -0400273 const GrBackendFormat& backendFormat = yuvaTextures[textureIndex].getBackendFormat();
Brian Salomonf391d0f2018-12-14 09:18:50 -0500274 if (!backendFormat.isValid()) {
275 return false;
276 }
Robert Phillips1cd1ed82019-07-23 13:21:01 -0400277
Robert Phillips62221e72019-07-24 15:07:38 -0400278 SkASSERT(yuvaTextures[textureIndex].isValid());
Jim Van Verth0e671942018-11-09 12:03:57 -0500279
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400280 auto proxy = proxyProvider->wrapBackendTexture(yuvaTextures[textureIndex],
Greg Daniel3a365112020-02-14 10:47:18 -0500281 kBorrow_GrWrapOwnership,
Robert Phillipse22c5ca2020-06-19 12:29:57 -0400282 GrWrapCacheable::kNo, kRead_GrIOType,
283 releaseHelper);
Greg Danielc7672092020-02-06 14:32:54 -0500284 if (!proxy) {
Jim Van Verth0e671942018-11-09 12:03:57 -0500285 return false;
286 }
Brian Salomonc505a452020-04-06 10:29:02 -0400287 tempViews[textureIndex] =
288 GrSurfaceProxyView(std::move(proxy), imageOrigin, GrSwizzle("rgba"));
Jim Van Verth53275362018-11-09 15:42:35 -0500289
290 // Check that each texture contains the channel data for the corresponding YUVA index
Brian Salomonc505a452020-04-06 10:29:02 -0400291 auto formatChannelMask = backendFormat.channelMask();
292 if (formatChannelMask & kGray_SkColorChannelFlag) {
293 formatChannelMask |= kRGB_SkColorChannelFlags;
294 }
Jim Van Verth53275362018-11-09 15:42:35 -0500295 for (int yuvaIndex = 0; yuvaIndex < SkYUVAIndex::kIndexCount; ++yuvaIndex) {
296 if (yuvaIndices[yuvaIndex].fIndex == textureIndex) {
Brian Salomonc505a452020-04-06 10:29:02 -0400297 uint32_t channelAsMask = 1 << static_cast<int>(yuvaIndices[yuvaIndex].fChannel);
298 if (!(channelAsMask & formatChannelMask)) {
299 return false;
Jim Van Verth53275362018-11-09 15:42:35 -0500300 }
301 }
302 }
Jim Van Verth0e671942018-11-09 12:03:57 -0500303 }
304
305 return true;
306}
307
308bool SkImage_GpuBase::RenderYUVAToRGBA(GrContext* ctx, GrRenderTargetContext* renderTargetContext,
309 const SkRect& rect, SkYUVColorSpace yuvColorSpace,
Brian Osmane9560492019-02-05 17:00:03 -0500310 sk_sp<GrColorSpaceXform> colorSpaceXform,
Greg Danielc7672092020-02-06 14:32:54 -0500311 GrSurfaceProxyView views[4],
Jim Van Verth0e671942018-11-09 12:03:57 -0500312 const SkYUVAIndex yuvaIndices[4]) {
313 SkASSERT(renderTargetContext);
314 if (!renderTargetContext->asSurfaceProxy()) {
315 return false;
316 }
317
318 GrPaint paint;
319 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
320
Brian Salomonca6b2f42020-01-24 11:31:21 -0500321 const auto& caps = *ctx->priv().caps();
Greg Danielc7672092020-02-06 14:32:54 -0500322 auto fp = GrYUVtoRGBEffect::Make(views, yuvaIndices, yuvColorSpace,
Brian Salomonca6b2f42020-01-24 11:31:21 -0500323 GrSamplerState::Filter::kNearest, caps);
Brian Osmane9560492019-02-05 17:00:03 -0500324 if (colorSpaceXform) {
325 fp = GrColorSpaceXformEffect::Make(std::move(fp), std::move(colorSpaceXform));
326 }
327 paint.addColorFragmentProcessor(std::move(fp));
Jim Van Verth0e671942018-11-09 12:03:57 -0500328
Michael Ludwig7c12e282020-05-29 09:54:07 -0400329 renderTargetContext->drawRect(nullptr, std::move(paint), GrAA::kNo, SkMatrix::I(), rect);
Jim Van Verth0e671942018-11-09 12:03:57 -0500330 return true;
331}
332
Brian Salomonbe5a0932018-12-10 10:03:26 -0500333sk_sp<GrTextureProxy> SkImage_GpuBase::MakePromiseImageLazyProxy(
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400334 GrContext* context, int width, int height,
Brian Salomonbe5a0932018-12-10 10:03:26 -0500335 GrBackendFormat backendFormat, GrMipMapped mipMapped,
Greg Danielc7672092020-02-06 14:32:54 -0500336 PromiseImageTextureFulfillProc fulfillProc, PromiseImageTextureReleaseProc releaseProc,
337 PromiseImageTextureDoneProc doneProc, PromiseImageTextureContext textureContext,
Brian Salomon0cc57542019-03-08 13:28:46 -0500338 PromiseImageApiVersion version) {
Brian Salomonbe5a0932018-12-10 10:03:26 -0500339 SkASSERT(context);
340 SkASSERT(width > 0 && height > 0);
341 SkASSERT(doneProc);
342
343 if (!fulfillProc || !releaseProc) {
344 doneProc(textureContext);
345 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400346 }
347
Brian Salomonbe5a0932018-12-10 10:03:26 -0500348 if (mipMapped == GrMipMapped::kYes &&
349 GrTextureTypeHasRestrictedSampling(backendFormat.textureType())) {
350 // It is invalid to have a GL_TEXTURE_EXTERNAL or GL_TEXTURE_RECTANGLE and have mips as
351 // well.
352 doneProc(textureContext);
353 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400354 }
Brian Salomonbe5a0932018-12-10 10:03:26 -0500355
356 /**
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500357 * This class is the lazy instantiation callback for promise images. It manages calling the
358 * client's Fulfill, Release, and Done procs. It attempts to reuse a GrTexture instance in
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500359 * cases where the client provides the same SkPromiseImageTexture as Fulfill results for
360 * multiple SkImages. The created GrTexture is given a key based on a unique ID associated with
361 * the SkPromiseImageTexture.
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500362 *
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500363 * The GrTexutre idle proc mechanism is used to call the Release and Done procs. We use this
364 * instead of the GrSurface release proc because the GrTexture is cached and therefore may
365 * outlive the proxy into which this callback is installed.
366 *
367 * A key invalidation message is installed on the SkPromiseImageTexture so that the GrTexture
368 * is deleted once it can no longer be used to instantiate a proxy.
Brian Salomonbe5a0932018-12-10 10:03:26 -0500369 */
370 class PromiseLazyInstantiateCallback {
371 public:
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500372 PromiseLazyInstantiateCallback(PromiseImageTextureFulfillProc fulfillProc,
373 PromiseImageTextureReleaseProc releaseProc,
374 PromiseImageTextureDoneProc doneProc,
375 PromiseImageTextureContext context,
Brian Salomon0cc57542019-03-08 13:28:46 -0500376 PromiseImageApiVersion version)
377 : fFulfillProc(fulfillProc)
378 , fReleaseProc(releaseProc)
Brian Salomon0cc57542019-03-08 13:28:46 -0500379 , fVersion(version) {
Brian Salomone80b8092019-03-08 13:25:19 -0500380 fDoneCallback = sk_make_sp<GrRefCntedCallback>(doneProc, context);
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500381 }
382 PromiseLazyInstantiateCallback(PromiseLazyInstantiateCallback&&) = default;
383 PromiseLazyInstantiateCallback(const PromiseLazyInstantiateCallback&) {
384 // Because we get wrapped in std::function we must be copyable. But we should never
385 // be copied.
386 SkASSERT(false);
387 }
388 PromiseLazyInstantiateCallback& operator=(PromiseLazyInstantiateCallback&&) = default;
389 PromiseLazyInstantiateCallback& operator=(const PromiseLazyInstantiateCallback&) {
390 SkASSERT(false);
391 return *this;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500392 }
Brian Salomon553610d2019-01-14 17:34:12 -0500393
Brian Salomon88b8d112019-03-07 15:25:34 +0000394 ~PromiseLazyInstantiateCallback() {
Brian Salomon876a0172019-03-08 11:12:14 -0500395 // Our destructor can run on any thread. We trigger the unref of fTexture by message.
Robert Phillipsddc21482019-10-16 14:30:09 -0400396 // This unreffed texture pointer is a real problem! When the context has been
397 // abandoned, the GrTexture pointed to by this pointer is deleted! Due to virtual
398 // inheritance any manipulation of this pointer at that point will cause a crash.
399 // For now we "work around" the problem by just passing it, untouched, into the
400 // message bus but this very fragile.
401 // In the future the GrSurface class hierarchy refactoring should eliminate this
402 // difficulty by removing the virtual inheritance.
Brian Salomon876a0172019-03-08 11:12:14 -0500403 if (fTexture) {
Robert Phillipsddc21482019-10-16 14:30:09 -0400404 SkMessageBus<GrTextureFreedMessage>::Post({fTexture, fTextureContextID});
Brian Salomon876a0172019-03-08 11:12:14 -0500405 }
Brian Salomon88b8d112019-03-07 15:25:34 +0000406 }
407
Brian Salomon63410e92020-03-23 18:32:50 -0400408 GrSurfaceProxy::LazyCallbackResult operator()(GrResourceProvider* resourceProvider,
409 const GrSurfaceProxy::LazySurfaceDesc&) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400410 // We use the unique key in a way that is unrelated to the SkImage-based key that the
411 // proxy may receive, hence kUnsynced.
412 static constexpr auto kKeySyncMode =
413 GrSurfaceProxy::LazyInstantiationKeyMode::kUnsynced;
414
Brian Salomonbeb7f522019-08-30 16:19:42 -0400415 // In order to make the SkImage "thread safe" we rely on holding an extra ref to the
416 // texture in the callback and signalling the unref via a message to the resource cache.
417 // We need to extend the callback's lifetime to that of the proxy.
418 static constexpr auto kReleaseCallbackOnInstantiation = false;
419
Brian Salomon876a0172019-03-08 11:12:14 -0500420 // Our proxy is getting instantiated for the second+ time. We are only allowed to call
421 // Fulfill once. So return our cached result.
422 if (fTexture) {
Brian Salomonbeb7f522019-08-30 16:19:42 -0400423 return {sk_ref_sp(fTexture), kReleaseCallbackOnInstantiation, kKeySyncMode};
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400424 } else if (fFulfillProcFailed) {
Brian Salomond538d3d2019-04-04 12:18:17 -0400425 // We've already called fulfill and it failed. Our contract says that we should only
426 // call each callback once.
427 return {};
Brian Salomon876a0172019-03-08 11:12:14 -0500428 }
Brian Salomone80b8092019-03-08 13:25:19 -0500429 SkASSERT(fDoneCallback);
430 PromiseImageTextureContext textureContext = fDoneCallback->context();
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500431 sk_sp<SkPromiseImageTexture> promiseTexture = fFulfillProc(textureContext);
432 // From here on out our contract is that the release proc must be called, even if
433 // the return from fulfill was invalid or we fail for some other reason.
Brian Salomone80b8092019-03-08 13:25:19 -0500434 auto releaseCallback = sk_make_sp<GrRefCntedCallback>(fReleaseProc, textureContext);
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500435 if (!promiseTexture) {
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400436 fFulfillProcFailed = true;
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400437 return {};
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500438 }
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500439
Robert Phillips62221e72019-07-24 15:07:38 -0400440 const GrBackendTexture& backendTexture = promiseTexture->backendTexture();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500441 if (!backendTexture.isValid()) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400442 return {};
Brian Salomon559c6172019-01-10 10:23:44 -0500443 }
444
Brian Salomonf55e8d52019-01-30 17:28:20 -0500445 sk_sp<GrTexture> tex;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500446 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
Brian Salomon7d88f312019-02-28 10:03:03 -0500447 GrUniqueKey key;
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400448 GrUniqueKey::Builder builder(&key, kDomain, 1, "promise");
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500449 builder[0] = promiseTexture->uniqueID();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500450 builder.finish();
Brian Salomon0d606762019-01-25 09:58:38 -0500451 // A texture with this key may already exist from a different instance of this lazy
452 // callback. This could happen if the client fulfills a promise image with a texture
453 // that was previously used to fulfill a different promise image.
Brian Salomon7d88f312019-02-28 10:03:03 -0500454 if (auto surf = resourceProvider->findByUniqueKey<GrSurface>(key)) {
Brian Salomon0d606762019-01-25 09:58:38 -0500455 tex = sk_ref_sp(surf->asTexture());
456 SkASSERT(tex);
457 } else {
458 if ((tex = resourceProvider->wrapBackendTexture(
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400459 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kYes,
460 kRead_GrIOType))) {
Brian Salomon7d88f312019-02-28 10:03:03 -0500461 tex->resourcePriv().setUniqueKey(key);
Brian Salomon0d606762019-01-25 09:58:38 -0500462 } else {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400463 return {};
Brian Salomon0d606762019-01-25 09:58:38 -0500464 }
465 }
Brian Salomon0cc57542019-03-08 13:28:46 -0500466 auto releaseIdleState = fVersion == PromiseImageApiVersion::kLegacy
467 ? GrTexture::IdleState::kFinished
468 : GrTexture::IdleState::kFlushed;
469 tex->addIdleProc(std::move(releaseCallback), releaseIdleState);
Brian Salomone80b8092019-03-08 13:25:19 -0500470 tex->addIdleProc(std::move(fDoneCallback), GrTexture::IdleState::kFinished);
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500471 promiseTexture->addKeyToInvalidate(tex->getContext()->priv().contextID(), key);
Brian Salomon876a0172019-03-08 11:12:14 -0500472 fTexture = tex.get();
473 // We need to hold on to the GrTexture in case our proxy gets reinstantiated. However,
474 // we can't unref in our destructor because we may be on another thread then. So we
475 // let the cache know it is waiting on an unref message. We will send that message from
476 // our destructor.
477 GrContext* context = fTexture->getContext();
Robert Phillipsddc21482019-10-16 14:30:09 -0400478 context->priv().getResourceCache()->insertDelayedTextureUnref(fTexture);
Brian Salomon876a0172019-03-08 11:12:14 -0500479 fTextureContextID = context->priv().contextID();
Brian Salomonbeb7f522019-08-30 16:19:42 -0400480 return {std::move(tex), kReleaseCallbackOnInstantiation, kKeySyncMode};
Brian Salomonbe5a0932018-12-10 10:03:26 -0500481 }
482
483 private:
Brian Salomone80b8092019-03-08 13:25:19 -0500484 PromiseImageTextureFulfillProc fFulfillProc;
485 PromiseImageTextureReleaseProc fReleaseProc;
486 sk_sp<GrRefCntedCallback> fDoneCallback;
Brian Salomon876a0172019-03-08 11:12:14 -0500487 GrTexture* fTexture = nullptr;
488 uint32_t fTextureContextID = SK_InvalidUniqueID;
Brian Salomon0cc57542019-03-08 13:28:46 -0500489 PromiseImageApiVersion fVersion;
Brian Salomonc3ce54a2020-04-01 16:52:37 -0400490 bool fFulfillProcFailed = false;
491 } callback(fulfillProc, releaseProc, doneProc, textureContext, version);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500492
Robert Phillips9da87e02019-02-04 13:26:26 -0500493 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Brian Salomonbe5a0932018-12-10 10:03:26 -0500494
Chris Dalton95d8ceb2019-07-30 11:17:59 -0600495 // Ganesh assumes that, when wrapping a mipmapped backend texture from a client, that its
496 // mipmaps are fully fleshed out.
497 GrMipMapsStatus mipMapsStatus = (GrMipMapped::kYes == mipMapped)
498 ? GrMipMapsStatus::kValid : GrMipMapsStatus::kNotAllocated;
499
Brian Salomonbe5a0932018-12-10 10:03:26 -0500500 // We pass kReadOnly here since we should treat content of the client's texture as immutable.
Brian Salomone8a766b2019-07-19 14:24:36 -0400501 // The promise API provides no way for the client to indicated that the texture is protected.
Greg Daniel3a365112020-02-14 10:47:18 -0500502 return proxyProvider->createLazyProxy(
Brian Salomondf1bd6d2020-03-26 20:37:01 -0400503 std::move(callback), backendFormat, {width, height}, GrRenderable::kNo, 1, mipMapped,
504 mipMapsStatus, GrInternalSurfaceFlags::kReadOnly, SkBackingFit::kExact, SkBudgeted::kNo,
505 GrProtected::kNo, GrSurfaceProxy::UseAllocator::kYes);
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400506}