blob: 5447c3d42f4e1a3ff154764d33e684bc854174e7 [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
Greg Daniel3155f7f2020-01-16 16:54:26 -0500146 GrColorType grColorType = SkColorTypeToGrColorType(this->colorType());
147
Greg Danielc7672092020-02-06 14:32:54 -0500148 GrSurfaceProxyView copyView = GrSurfaceProxy::Copy(
149 context, view->proxy(), view->origin(), grColorType, GrMipMapped::kNo, subset,
150 SkBackingFit::kExact, view->proxy()->isBudgeted());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400151
Greg Daniel40903af2020-01-30 14:55:05 -0500152 if (!copyView.proxy()) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400153 return nullptr;
154 }
155
156 // MDB: this call is okay bc we know 'sContext' was kExact
Greg Daniel40903af2020-01-30 14:55:05 -0500157 return sk_make_sp<SkImage_Gpu>(fContext, kNeedNewImageUniqueID, std::move(copyView),
Greg Daniel7c165a42020-01-22 12:22:36 -0500158 this->colorType(), this->alphaType(), this->refColorSpace());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400159}
160
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400161bool SkImage_GpuBase::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB,
162 int srcX, int srcY, CachingHint) const {
Robert Phillips920d4882019-03-04 15:16:44 -0500163 auto direct = fContext->priv().asDirectContext();
164 if (!direct) {
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400165 // DDL TODO: buffer up the readback so it occurs when the DDL is drawn?
166 return false;
167 }
168
Brian Salomon5ad6fd32019-03-21 15:30:08 -0400169 if (!SkImageInfoValidConversion(dstInfo, this->imageInfo())) {
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400170 return false;
171 }
172
Greg Daniel37c127f2020-02-05 10:37:27 -0500173 const GrSurfaceProxyView* view = this->view(direct);
174 SkASSERT(view);
Greg Danielc7672092020-02-06 14:32:54 -0500175 GrColorType grColorType = SkColorTypeAndFormatToGrColorType(
176 fContext->priv().caps(), this->colorType(), view->proxy()->backendFormat());
Greg Danielba88ab62019-07-26 09:14:01 -0400177
Greg Daniel37c127f2020-02-05 10:37:27 -0500178 auto sContext = GrSurfaceContext::Make(direct, *view, grColorType, this->alphaType(),
179 this->refColorSpace());
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400180 if (!sContext) {
181 return false;
182 }
183
Brian Salomon1d435302019-07-01 13:05:28 -0400184 return sContext->readPixels(dstInfo, dstPixels, dstRB, {srcX, srcY});
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400185}
186
Brian Salomonc8d092a2020-02-24 10:14:21 -0500187GrSurfaceProxyView SkImage_GpuBase::refView(GrRecordingContext* context,
Brian Salomonecbb0fb2020-02-28 18:07:32 -0500188 GrMipMapped mipMapped) const {
Robert Phillips6603a172019-03-05 12:35:44 -0500189 if (!context || !fContext->priv().matches(context)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400190 SkASSERT(0);
Greg Danielfebdedf2020-02-05 17:06:27 -0500191 return {};
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400192 }
193
Greg Daniel37c127f2020-02-05 10:37:27 -0500194 GrTextureAdjuster adjuster(fContext.get(), *this->view(context), this->imageInfo().colorInfo(),
195 this->uniqueID());
Brian Salomonecbb0fb2020-02-28 18:07:32 -0500196 return adjuster.view(mipMapped);
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400197}
198
199GrBackendTexture SkImage_GpuBase::onGetBackendTexture(bool flushPendingGrContextIO,
200 GrSurfaceOrigin* origin) const {
Robert Phillips920d4882019-03-04 15:16:44 -0500201 auto direct = fContext->priv().asDirectContext();
202 if (!direct) {
203 // This image was created with a DDL context and cannot be instantiated.
Greg Danielc7672092020-02-06 14:32:54 -0500204 return GrBackendTexture(); // invalid
Robert Phillips920d4882019-03-04 15:16:44 -0500205 }
206
Greg Danielfebdedf2020-02-05 17:06:27 -0500207 const GrSurfaceProxyView* view = this->view(direct);
208 SkASSERT(view && *view);
209 GrSurfaceProxy* proxy = view->proxy();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400210
Robert Phillips920d4882019-03-04 15:16:44 -0500211 if (!proxy->isInstantiated()) {
212 auto resourceProvider = direct->priv().resourceProvider();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400213
Robert Phillips920d4882019-03-04 15:16:44 -0500214 if (!proxy->instantiate(resourceProvider)) {
Greg Danielc7672092020-02-06 14:32:54 -0500215 return GrBackendTexture(); // invalid
Robert Phillips920d4882019-03-04 15:16:44 -0500216 }
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400217 }
218
219 GrTexture* texture = proxy->peekTexture();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400220 if (texture) {
221 if (flushPendingGrContextIO) {
Greg Daniel55f040b2020-02-13 15:38:32 +0000222 direct->priv().flushSurface(proxy);
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400223 }
224 if (origin) {
Greg Danielb8d84f82020-02-13 14:25:00 -0500225 *origin = view->origin();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400226 }
227 return texture->getBackendTexture();
228 }
Greg Danielc7672092020-02-06 14:32:54 -0500229 return GrBackendTexture(); // invalid
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400230}
231
Greg Daniel7c902112020-03-06 13:07:10 -0500232GrTexture* SkImage_GpuBase::getTexture() const {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400233 GrTextureProxy* proxy = this->peekProxy();
Robert Phillips193c4212019-03-04 12:18:53 -0500234 if (proxy && proxy->isInstantiated()) {
235 return proxy->peekTexture();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400236 }
237
Robert Phillips193c4212019-03-04 12:18:53 -0500238 auto direct = fContext->priv().asDirectContext();
239 if (!direct) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400240 // This image was created with a DDL context and cannot be instantiated.
241 return nullptr;
242 }
243
Greg Danielfebdedf2020-02-05 17:06:27 -0500244 const GrSurfaceProxyView* view = this->view(direct);
245 SkASSERT(view && *view && !view->proxy()->isInstantiated());
Robert Phillips193c4212019-03-04 12:18:53 -0500246
Greg Danielfebdedf2020-02-05 17:06:27 -0500247 if (!view->proxy()->instantiate(direct->priv().resourceProvider())) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400248 return nullptr;
249 }
250
Greg Danielfebdedf2020-02-05 17:06:27 -0500251 return view->proxy()->peekTexture();
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400252}
253
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400254bool SkImage_GpuBase::onIsValid(GrContext* context) const {
255 // The base class has already checked that context isn't abandoned (if it's not nullptr)
Robert Phillips920d4882019-03-04 15:16:44 -0500256 if (fContext->priv().abandoned()) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400257 return false;
258 }
259
Robert Phillips920d4882019-03-04 15:16:44 -0500260 if (context && !fContext->priv().matches(context)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400261 return false;
262 }
263
264 return true;
265}
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400266
Jim Van Verth0e671942018-11-09 12:03:57 -0500267bool SkImage_GpuBase::MakeTempTextureProxies(GrContext* ctx, const GrBackendTexture yuvaTextures[],
Jim Van Verth53275362018-11-09 15:42:35 -0500268 int numTextures, const SkYUVAIndex yuvaIndices[4],
269 GrSurfaceOrigin imageOrigin,
Greg Danielc7672092020-02-06 14:32:54 -0500270 GrSurfaceProxyView tempViews[4]) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500271 GrProxyProvider* proxyProvider = ctx->priv().proxyProvider();
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400272 const GrCaps* caps = ctx->priv().caps();
Jim Van Verth0e671942018-11-09 12:03:57 -0500273
Jim Van Verth0e671942018-11-09 12:03:57 -0500274 for (int textureIndex = 0; textureIndex < numTextures; ++textureIndex) {
Robert Phillips62221e72019-07-24 15:07:38 -0400275 GrBackendFormat backendFormat = yuvaTextures[textureIndex].getBackendFormat();
Brian Salomonf391d0f2018-12-14 09:18:50 -0500276 if (!backendFormat.isValid()) {
277 return false;
278 }
Robert Phillips1cd1ed82019-07-23 13:21:01 -0400279
Robert Phillips00c9f0d2019-08-02 17:17:35 -0400280 GrColorType grColorType = caps->getYUVAColorTypeFromBackendFormat(
Greg Danielc7672092020-02-06 14:32:54 -0500281 backendFormat, yuvaIndices[3].fIndex == textureIndex);
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400282 if (GrColorType::kUnknown == grColorType) {
283 return false;
284 }
285
Robert Phillips62221e72019-07-24 15:07:38 -0400286 SkASSERT(yuvaTextures[textureIndex].isValid());
Jim Van Verth0e671942018-11-09 12:03:57 -0500287
Greg Danielc7672092020-02-06 14:32:54 -0500288 auto proxy = proxyProvider->wrapBackendTexture(yuvaTextures[textureIndex], grColorType,
Greg Daniel3a365112020-02-14 10:47:18 -0500289 kBorrow_GrWrapOwnership,
Greg Danielc7672092020-02-06 14:32:54 -0500290 GrWrapCacheable::kNo, kRead_GrIOType);
291 if (!proxy) {
Jim Van Verth0e671942018-11-09 12:03:57 -0500292 return false;
293 }
Greg Danielc7672092020-02-06 14:32:54 -0500294 GrSwizzle swizzle = caps->getReadSwizzle(proxy->backendFormat(), grColorType);
295 tempViews[textureIndex] = GrSurfaceProxyView(std::move(proxy), imageOrigin, swizzle);
Jim Van Verth53275362018-11-09 15:42:35 -0500296
297 // Check that each texture contains the channel data for the corresponding YUVA index
Brian Salomon2f23ae62020-03-26 16:17:56 -0400298 auto channelFlags = GrColorTypeChannelFlags(grColorType);
Jim Van Verth53275362018-11-09 15:42:35 -0500299 for (int yuvaIndex = 0; yuvaIndex < SkYUVAIndex::kIndexCount; ++yuvaIndex) {
300 if (yuvaIndices[yuvaIndex].fIndex == textureIndex) {
301 switch (yuvaIndices[yuvaIndex].fChannel) {
302 case SkColorChannel::kR:
Greg Danielc7672092020-02-06 14:32:54 -0500303 // TODO: Chrome needs to be patched before this can be
304 // enforced.
Brian Salomon2f23ae62020-03-26 16:17:56 -0400305 // if (!(kRed_SkColorChannelFlag & channelFlags)) {
Greg Danielc7672092020-02-06 14:32:54 -0500306 // return false;
307 // }
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400308 break;
309 case SkColorChannel::kG:
Brian Salomon2f23ae62020-03-26 16:17:56 -0400310 if (!(kGreen_SkColorChannelFlag & channelFlags)) {
Jim Van Verth53275362018-11-09 15:42:35 -0500311 return false;
312 }
313 break;
Jim Van Verth53275362018-11-09 15:42:35 -0500314 case SkColorChannel::kB:
Brian Salomon2f23ae62020-03-26 16:17:56 -0400315 if (!(kBlue_SkColorChannelFlag & channelFlags)) {
Jim Van Verth53275362018-11-09 15:42:35 -0500316 return false;
317 }
318 break;
319 case SkColorChannel::kA:
Brian Salomon2f23ae62020-03-26 16:17:56 -0400320 if (!(kAlpha_SkColorChannelFlag & channelFlags)) {
Jim Van Verth53275362018-11-09 15:42:35 -0500321 return false;
322 }
323 break;
324 }
325 }
326 }
Jim Van Verth0e671942018-11-09 12:03:57 -0500327 }
328
329 return true;
330}
331
332bool SkImage_GpuBase::RenderYUVAToRGBA(GrContext* ctx, GrRenderTargetContext* renderTargetContext,
333 const SkRect& rect, SkYUVColorSpace yuvColorSpace,
Brian Osmane9560492019-02-05 17:00:03 -0500334 sk_sp<GrColorSpaceXform> colorSpaceXform,
Greg Danielc7672092020-02-06 14:32:54 -0500335 GrSurfaceProxyView views[4],
Jim Van Verth0e671942018-11-09 12:03:57 -0500336 const SkYUVAIndex yuvaIndices[4]) {
337 SkASSERT(renderTargetContext);
338 if (!renderTargetContext->asSurfaceProxy()) {
339 return false;
340 }
341
342 GrPaint paint;
343 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
344
Brian Salomonca6b2f42020-01-24 11:31:21 -0500345 const auto& caps = *ctx->priv().caps();
Greg Danielc7672092020-02-06 14:32:54 -0500346 auto fp = GrYUVtoRGBEffect::Make(views, yuvaIndices, yuvColorSpace,
Brian Salomonca6b2f42020-01-24 11:31:21 -0500347 GrSamplerState::Filter::kNearest, caps);
Brian Osmane9560492019-02-05 17:00:03 -0500348 if (colorSpaceXform) {
349 fp = GrColorSpaceXformEffect::Make(std::move(fp), std::move(colorSpaceXform));
350 }
351 paint.addColorFragmentProcessor(std::move(fp));
Jim Van Verth0e671942018-11-09 12:03:57 -0500352
353 renderTargetContext->drawRect(GrNoClip(), std::move(paint), GrAA::kNo, SkMatrix::I(), rect);
Jim Van Verth0e671942018-11-09 12:03:57 -0500354 return true;
355}
356
Brian Salomonbe5a0932018-12-10 10:03:26 -0500357sk_sp<GrTextureProxy> SkImage_GpuBase::MakePromiseImageLazyProxy(
Greg Daniel3a365112020-02-14 10:47:18 -0500358 GrContext* context, int width, int height, GrColorType colorType,
Brian Salomonbe5a0932018-12-10 10:03:26 -0500359 GrBackendFormat backendFormat, GrMipMapped mipMapped,
Greg Danielc7672092020-02-06 14:32:54 -0500360 PromiseImageTextureFulfillProc fulfillProc, PromiseImageTextureReleaseProc releaseProc,
361 PromiseImageTextureDoneProc doneProc, PromiseImageTextureContext textureContext,
Brian Salomon0cc57542019-03-08 13:28:46 -0500362 PromiseImageApiVersion version) {
Brian Salomonbe5a0932018-12-10 10:03:26 -0500363 SkASSERT(context);
364 SkASSERT(width > 0 && height > 0);
365 SkASSERT(doneProc);
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400366 SkASSERT(colorType != GrColorType::kUnknown);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500367
368 if (!fulfillProc || !releaseProc) {
369 doneProc(textureContext);
370 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400371 }
372
Brian Salomonbe5a0932018-12-10 10:03:26 -0500373 if (mipMapped == GrMipMapped::kYes &&
374 GrTextureTypeHasRestrictedSampling(backendFormat.textureType())) {
375 // It is invalid to have a GL_TEXTURE_EXTERNAL or GL_TEXTURE_RECTANGLE and have mips as
376 // well.
377 doneProc(textureContext);
378 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400379 }
Brian Salomonbe5a0932018-12-10 10:03:26 -0500380
381 /**
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500382 * This class is the lazy instantiation callback for promise images. It manages calling the
383 * client's Fulfill, Release, and Done procs. It attempts to reuse a GrTexture instance in
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500384 * cases where the client provides the same SkPromiseImageTexture as Fulfill results for
385 * multiple SkImages. The created GrTexture is given a key based on a unique ID associated with
386 * the SkPromiseImageTexture.
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500387 *
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500388 * The GrTexutre idle proc mechanism is used to call the Release and Done procs. We use this
389 * instead of the GrSurface release proc because the GrTexture is cached and therefore may
390 * outlive the proxy into which this callback is installed.
391 *
392 * A key invalidation message is installed on the SkPromiseImageTexture so that the GrTexture
393 * is deleted once it can no longer be used to instantiate a proxy.
Brian Salomonbe5a0932018-12-10 10:03:26 -0500394 */
395 class PromiseLazyInstantiateCallback {
396 public:
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500397 PromiseLazyInstantiateCallback(PromiseImageTextureFulfillProc fulfillProc,
398 PromiseImageTextureReleaseProc releaseProc,
399 PromiseImageTextureDoneProc doneProc,
400 PromiseImageTextureContext context,
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400401 GrColorType colorType,
Brian Salomon0cc57542019-03-08 13:28:46 -0500402 PromiseImageApiVersion version)
403 : fFulfillProc(fulfillProc)
404 , fReleaseProc(releaseProc)
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400405 , fColorType(colorType)
Brian Salomon0cc57542019-03-08 13:28:46 -0500406 , fVersion(version) {
Brian Salomone80b8092019-03-08 13:25:19 -0500407 fDoneCallback = sk_make_sp<GrRefCntedCallback>(doneProc, context);
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500408 }
409 PromiseLazyInstantiateCallback(PromiseLazyInstantiateCallback&&) = default;
410 PromiseLazyInstantiateCallback(const PromiseLazyInstantiateCallback&) {
411 // Because we get wrapped in std::function we must be copyable. But we should never
412 // be copied.
413 SkASSERT(false);
414 }
415 PromiseLazyInstantiateCallback& operator=(PromiseLazyInstantiateCallback&&) = default;
416 PromiseLazyInstantiateCallback& operator=(const PromiseLazyInstantiateCallback&) {
417 SkASSERT(false);
418 return *this;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500419 }
Brian Salomon553610d2019-01-14 17:34:12 -0500420
Brian Salomon88b8d112019-03-07 15:25:34 +0000421 ~PromiseLazyInstantiateCallback() {
Brian Salomon876a0172019-03-08 11:12:14 -0500422 // Our destructor can run on any thread. We trigger the unref of fTexture by message.
Robert Phillipsddc21482019-10-16 14:30:09 -0400423 // This unreffed texture pointer is a real problem! When the context has been
424 // abandoned, the GrTexture pointed to by this pointer is deleted! Due to virtual
425 // inheritance any manipulation of this pointer at that point will cause a crash.
426 // For now we "work around" the problem by just passing it, untouched, into the
427 // message bus but this very fragile.
428 // In the future the GrSurface class hierarchy refactoring should eliminate this
429 // difficulty by removing the virtual inheritance.
Brian Salomon876a0172019-03-08 11:12:14 -0500430 if (fTexture) {
Robert Phillipsddc21482019-10-16 14:30:09 -0400431 SkMessageBus<GrTextureFreedMessage>::Post({fTexture, fTextureContextID});
Brian Salomon876a0172019-03-08 11:12:14 -0500432 }
Brian Salomon88b8d112019-03-07 15:25:34 +0000433 }
434
Brian Salomonbeb7f522019-08-30 16:19:42 -0400435 GrSurfaceProxy::LazyCallbackResult operator()(GrResourceProvider* resourceProvider) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400436 // We use the unique key in a way that is unrelated to the SkImage-based key that the
437 // proxy may receive, hence kUnsynced.
438 static constexpr auto kKeySyncMode =
439 GrSurfaceProxy::LazyInstantiationKeyMode::kUnsynced;
440
Brian Salomonbeb7f522019-08-30 16:19:42 -0400441 // In order to make the SkImage "thread safe" we rely on holding an extra ref to the
442 // texture in the callback and signalling the unref via a message to the resource cache.
443 // We need to extend the callback's lifetime to that of the proxy.
444 static constexpr auto kReleaseCallbackOnInstantiation = false;
445
Brian Salomon876a0172019-03-08 11:12:14 -0500446 // Our proxy is getting instantiated for the second+ time. We are only allowed to call
447 // Fulfill once. So return our cached result.
448 if (fTexture) {
Brian Salomonbeb7f522019-08-30 16:19:42 -0400449 return {sk_ref_sp(fTexture), kReleaseCallbackOnInstantiation, kKeySyncMode};
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400450 } else if (fColorType == GrColorType::kUnknown) {
Brian Salomond538d3d2019-04-04 12:18:17 -0400451 // We've already called fulfill and it failed. Our contract says that we should only
452 // call each callback once.
453 return {};
Brian Salomon876a0172019-03-08 11:12:14 -0500454 }
Brian Salomone80b8092019-03-08 13:25:19 -0500455 SkASSERT(fDoneCallback);
456 PromiseImageTextureContext textureContext = fDoneCallback->context();
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500457 sk_sp<SkPromiseImageTexture> promiseTexture = fFulfillProc(textureContext);
458 // From here on out our contract is that the release proc must be called, even if
459 // the return from fulfill was invalid or we fail for some other reason.
Brian Salomone80b8092019-03-08 13:25:19 -0500460 auto releaseCallback = sk_make_sp<GrRefCntedCallback>(fReleaseProc, textureContext);
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500461 if (!promiseTexture) {
Brian Salomond538d3d2019-04-04 12:18:17 -0400462 // This records that we have failed.
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400463 fColorType = GrColorType::kUnknown;
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400464 return {};
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500465 }
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500466
Robert Phillips62221e72019-07-24 15:07:38 -0400467 const GrBackendTexture& backendTexture = promiseTexture->backendTexture();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500468 if (!backendTexture.isValid()) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400469 return {};
Brian Salomon559c6172019-01-10 10:23:44 -0500470 }
471
Brian Salomonf55e8d52019-01-30 17:28:20 -0500472 sk_sp<GrTexture> tex;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500473 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
Brian Salomon7d88f312019-02-28 10:03:03 -0500474 GrUniqueKey key;
475 GrUniqueKey::Builder builder(&key, kDomain, 2, "promise");
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500476 builder[0] = promiseTexture->uniqueID();
Greg Danielc7672092020-02-06 14:32:54 -0500477 builder[1] = (uint32_t)fColorType;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500478 builder.finish();
Brian Salomon0d606762019-01-25 09:58:38 -0500479 // A texture with this key may already exist from a different instance of this lazy
480 // callback. This could happen if the client fulfills a promise image with a texture
481 // that was previously used to fulfill a different promise image.
Brian Salomon7d88f312019-02-28 10:03:03 -0500482 if (auto surf = resourceProvider->findByUniqueKey<GrSurface>(key)) {
Brian Salomon0d606762019-01-25 09:58:38 -0500483 tex = sk_ref_sp(surf->asTexture());
484 SkASSERT(tex);
485 } else {
486 if ((tex = resourceProvider->wrapBackendTexture(
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400487 backendTexture, fColorType, kBorrow_GrWrapOwnership,
488 GrWrapCacheable::kYes, kRead_GrIOType))) {
Brian Salomon7d88f312019-02-28 10:03:03 -0500489 tex->resourcePriv().setUniqueKey(key);
Brian Salomon0d606762019-01-25 09:58:38 -0500490 } else {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400491 return {};
Brian Salomon0d606762019-01-25 09:58:38 -0500492 }
493 }
Brian Salomon0cc57542019-03-08 13:28:46 -0500494 auto releaseIdleState = fVersion == PromiseImageApiVersion::kLegacy
495 ? GrTexture::IdleState::kFinished
496 : GrTexture::IdleState::kFlushed;
497 tex->addIdleProc(std::move(releaseCallback), releaseIdleState);
Brian Salomone80b8092019-03-08 13:25:19 -0500498 tex->addIdleProc(std::move(fDoneCallback), GrTexture::IdleState::kFinished);
Brian Salomonb2c5dae2019-03-04 10:25:17 -0500499 promiseTexture->addKeyToInvalidate(tex->getContext()->priv().contextID(), key);
Brian Salomon876a0172019-03-08 11:12:14 -0500500 fTexture = tex.get();
501 // We need to hold on to the GrTexture in case our proxy gets reinstantiated. However,
502 // we can't unref in our destructor because we may be on another thread then. So we
503 // let the cache know it is waiting on an unref message. We will send that message from
504 // our destructor.
505 GrContext* context = fTexture->getContext();
Robert Phillipsddc21482019-10-16 14:30:09 -0400506 context->priv().getResourceCache()->insertDelayedTextureUnref(fTexture);
Brian Salomon876a0172019-03-08 11:12:14 -0500507 fTextureContextID = context->priv().contextID();
Brian Salomonbeb7f522019-08-30 16:19:42 -0400508 return {std::move(tex), kReleaseCallbackOnInstantiation, kKeySyncMode};
Brian Salomonbe5a0932018-12-10 10:03:26 -0500509 }
510
511 private:
Brian Salomone80b8092019-03-08 13:25:19 -0500512 PromiseImageTextureFulfillProc fFulfillProc;
513 PromiseImageTextureReleaseProc fReleaseProc;
514 sk_sp<GrRefCntedCallback> fDoneCallback;
Brian Salomon876a0172019-03-08 11:12:14 -0500515 GrTexture* fTexture = nullptr;
516 uint32_t fTextureContextID = SK_InvalidUniqueID;
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400517 GrColorType fColorType;
Brian Salomon0cc57542019-03-08 13:28:46 -0500518 PromiseImageApiVersion fVersion;
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400519 } callback(fulfillProc, releaseProc, doneProc, textureContext, colorType, version);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500520
Robert Phillips9da87e02019-02-04 13:26:26 -0500521 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Brian Salomonbe5a0932018-12-10 10:03:26 -0500522
Chris Dalton95d8ceb2019-07-30 11:17:59 -0600523 // Ganesh assumes that, when wrapping a mipmapped backend texture from a client, that its
524 // mipmaps are fully fleshed out.
525 GrMipMapsStatus mipMapsStatus = (GrMipMapped::kYes == mipMapped)
526 ? GrMipMapsStatus::kValid : GrMipMapsStatus::kNotAllocated;
527
Brian Salomonbe5a0932018-12-10 10:03:26 -0500528 // We pass kReadOnly here since we should treat content of the client's texture as immutable.
Brian Salomone8a766b2019-07-19 14:24:36 -0400529 // The promise API provides no way for the client to indicated that the texture is protected.
Greg Daniel3a365112020-02-14 10:47:18 -0500530 return proxyProvider->createLazyProxy(
Brian Salomondf1bd6d2020-03-26 20:37:01 -0400531 std::move(callback), backendFormat, {width, height}, GrRenderable::kNo, 1, mipMapped,
532 mipMapsStatus, GrInternalSurfaceFlags::kReadOnly, SkBackingFit::kExact, SkBudgeted::kNo,
533 GrProtected::kNo, GrSurfaceProxy::UseAllocator::kYes);
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400534}