blob: 648f862b75a18caf051591f5b77fd9879398594e [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
Brian Salomoncdd8a0a2019-01-10 12:09:52 -05008#include "SkImage_GpuBase.h"
Jim Van Verth8026ccc2018-10-04 13:10:39 -04009#include "GrBackendSurface.h"
10#include "GrClip.h"
11#include "GrContext.h"
12#include "GrContextPriv.h"
13#include "GrRenderTargetContext.h"
14#include "GrTexture.h"
15#include "GrTextureAdjuster.h"
16#include "SkBitmapCache.h"
17#include "SkImage_Gpu.h"
Brian Salomoncdd8a0a2019-01-10 12:09:52 -050018#include "SkPromiseImageTexture.h"
Jim Van Verth8bbce0e2018-10-08 14:34:52 -040019#include "SkReadPixelsRec.h"
Brian Salomon1bf0ed82019-01-16 13:51:35 -050020#include "SkTLList.h"
Brian Salomoncdd8a0a2019-01-10 12:09:52 -050021#include "effects/GrYUVtoRGBEffect.h"
Jim Van Verth8026ccc2018-10-04 13:10:39 -040022
23SkImage_GpuBase::SkImage_GpuBase(sk_sp<GrContext> context, int width, int height, uint32_t uniqueID,
Brian Salomonf05e6d32018-12-20 08:41:41 -050024 SkAlphaType at, sk_sp<SkColorSpace> cs)
Jim Van Verth8026ccc2018-10-04 13:10:39 -040025 : INHERITED(width, height, uniqueID)
26 , fContext(std::move(context))
27 , fAlphaType(at)
Jim Van Verth8026ccc2018-10-04 13:10:39 -040028 , fColorSpace(std::move(cs)) {}
29
30SkImage_GpuBase::~SkImage_GpuBase() {}
31
32//////////////////////////////////////////////////////////////////////////////////////////////////
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
Jim Van Verth8026ccc2018-10-04 13:10:39 -040041bool SkImage_GpuBase::ValidateBackendTexture(GrContext* ctx, const GrBackendTexture& tex,
42 GrPixelConfig* config, SkColorType ct, SkAlphaType at,
43 sk_sp<SkColorSpace> cs) {
44 if (!tex.isValid()) {
45 return false;
46 }
47 // TODO: Create a SkImageColorInfo struct for color, alpha, and color space so we don't need to
48 // create a fake image info here.
49 SkImageInfo info = SkImageInfo::Make(1, 1, ct, at, cs);
50 if (!SkImageInfoIsValid(info)) {
51 return false;
52 }
Brian Salomonf391d0f2018-12-14 09:18:50 -050053 GrBackendFormat backendFormat = tex.getBackendFormat();
54 if (!backendFormat.isValid()) {
55 return false;
56 }
Robert Phillips9da87e02019-02-04 13:26:26 -050057 *config = ctx->priv().caps()->getConfigFromBackendFormat(backendFormat, ct);
Brian Salomonf391d0f2018-12-14 09:18:50 -050058 return *config != kUnknown_GrPixelConfig;
Jim Van Verth8026ccc2018-10-04 13:10:39 -040059}
60
61//////////////////////////////////////////////////////////////////////////////////////////////////
62
Brian Osmane50cdf02018-10-19 13:02:14 -040063bool SkImage_GpuBase::getROPixels(SkBitmap* dst, CachingHint chint) const {
Robert Phillips9da87e02019-02-04 13:26:26 -050064 if (!fContext->priv().resourceProvider()) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -040065 // DDL TODO: buffer up the readback so it occurs when the DDL is drawn?
66 return false;
67 }
68
Jim Van Verth8026ccc2018-10-04 13:10:39 -040069 const auto desc = SkBitmapCacheDesc::Make(this);
70 if (SkBitmapCache::Find(desc, dst)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -040071 SkASSERT(dst->isImmutable());
72 SkASSERT(dst->getPixels());
73 return true;
74 }
75
76 SkBitmapCache::RecPtr rec = nullptr;
77 SkPixmap pmap;
78 if (kAllow_CachingHint == chint) {
79 rec = SkBitmapCache::Alloc(desc, this->onImageInfo(), &pmap);
80 if (!rec) {
81 return false;
82 }
83 } else {
84 if (!dst->tryAllocPixels(this->onImageInfo()) || !dst->peekPixels(&pmap)) {
85 return false;
86 }
87 }
88
Robert Phillips9da87e02019-02-04 13:26:26 -050089 sk_sp<GrSurfaceContext> sContext = fContext->priv().makeWrappedSurfaceContext(
Jim Van Verth8026ccc2018-10-04 13:10:39 -040090 this->asTextureProxyRef(),
91 fColorSpace);
92 if (!sContext) {
93 return false;
94 }
95
96 if (!sContext->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), 0, 0)) {
97 return false;
98 }
99
100 if (rec) {
101 SkBitmapCache::Add(std::move(rec), dst);
102 this->notifyAddedToRasterCache();
103 }
104 return true;
105}
106
107sk_sp<SkImage> SkImage_GpuBase::onMakeSubset(const SkIRect& subset) const {
108 sk_sp<GrSurfaceProxy> proxy = this->asTextureProxyRef();
109
110 GrSurfaceDesc desc;
111 desc.fWidth = subset.width();
112 desc.fHeight = subset.height();
113 desc.fConfig = proxy->config();
114
Greg Daniel4065d452018-11-16 15:43:41 -0500115 GrBackendFormat format = proxy->backendFormat().makeTexture2D();
116 if (!format.isValid()) {
117 return nullptr;
118 }
119
Brian Salomonf05e6d32018-12-20 08:41:41 -0500120 // TODO: Should this inherit our proxy's budgeted status?
Robert Phillips9da87e02019-02-04 13:26:26 -0500121 sk_sp<GrSurfaceContext> sContext(fContext->priv().makeDeferredSurfaceContext(
Brian Salomonf05e6d32018-12-20 08:41:41 -0500122 format, desc, proxy->origin(), GrMipMapped::kNo, SkBackingFit::kExact,
123 proxy->isBudgeted()));
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400124 if (!sContext) {
125 return nullptr;
126 }
127
128 if (!sContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) {
129 return nullptr;
130 }
131
132 // MDB: this call is okay bc we know 'sContext' was kExact
Brian Salomonf05e6d32018-12-20 08:41:41 -0500133 return sk_make_sp<SkImage_Gpu>(fContext, kNeedNewImageUniqueID, fAlphaType,
Brian Osmane9560492019-02-05 17:00:03 -0500134 sContext->asTextureProxyRef(), this->refColorSpace());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400135}
136
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400137static void apply_premul(const SkImageInfo& info, void* pixels, size_t rowBytes) {
138 switch (info.colorType()) {
139 case kRGBA_8888_SkColorType:
140 case kBGRA_8888_SkColorType:
141 break;
142 default:
143 return; // nothing to do
144 }
145
Brian Salomon3f4cd772019-01-11 16:03:19 -0500146 // SkColor is not necessarily RGBA or BGRA, but it is one of them on little-endian,
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400147 // and in either case, the alpha-byte is always in the same place, so we can safely call
148 // SkPreMultiplyColor()
149 //
150 SkColor* row = (SkColor*)pixels;
151 for (int y = 0; y < info.height(); ++y) {
152 for (int x = 0; x < info.width(); ++x) {
153 row[x] = SkPreMultiplyColor(row[x]);
154 }
155 row = (SkColor*)((char*)(row)+rowBytes);
156 }
157}
158
159bool SkImage_GpuBase::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB,
160 int srcX, int srcY, CachingHint) const {
Robert Phillips9da87e02019-02-04 13:26:26 -0500161 if (!fContext->priv().resourceProvider()) {
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
166 if (!SkImageInfoValidConversion(dstInfo, this->onImageInfo())) {
167 return false;
168 }
169
170 SkReadPixelsRec rec(dstInfo, dstPixels, dstRB, srcX, srcY);
171 if (!rec.trim(this->width(), this->height())) {
172 return false;
173 }
174
175 // TODO: this seems to duplicate code in GrTextureContext::onReadPixels and
176 // GrRenderTargetContext::onReadPixels
177 uint32_t flags = 0;
178 if (kUnpremul_SkAlphaType == rec.fInfo.alphaType() && kPremul_SkAlphaType == fAlphaType) {
179 // let the GPU perform this transformation for us
180 flags = GrContextPriv::kUnpremul_PixelOpsFlag;
181 }
182
Robert Phillips9da87e02019-02-04 13:26:26 -0500183 sk_sp<GrSurfaceContext> sContext = fContext->priv().makeWrappedSurfaceContext(
Brian Osmane9560492019-02-05 17:00:03 -0500184 this->asTextureProxyRef(), this->refColorSpace());
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400185 if (!sContext) {
186 return false;
187 }
188
189 if (!sContext->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY, flags)) {
190 return false;
191 }
192
193 // do we have to manually fix-up the alpha channel?
194 // src dst
195 // unpremul premul fix manually
196 // premul unpremul done by kUnpremul_PixelOpsFlag
197 // all other combos need to change.
198 //
199 // Should this be handled by Ganesh? todo:?
200 //
201 if (kPremul_SkAlphaType == rec.fInfo.alphaType() && kUnpremul_SkAlphaType == fAlphaType) {
202 apply_premul(rec.fInfo, rec.fPixels, rec.fRowBytes);
203 }
204 return true;
205}
206
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400207sk_sp<GrTextureProxy> SkImage_GpuBase::asTextureProxyRef(GrContext* context,
208 const GrSamplerState& params,
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400209 SkScalar scaleAdjust[2]) const {
Robert Phillipsfe0963c2019-02-07 13:25:07 -0500210 if (!fContext->priv().matches(context)) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400211 SkASSERT(0);
212 return nullptr;
213 }
214
215 GrTextureAdjuster adjuster(fContext.get(), this->asTextureProxyRef(), fAlphaType,
216 this->uniqueID(), fColorSpace.get());
Brian Osman6064e1c2018-10-19 14:27:54 -0400217 return adjuster.refTextureProxyForParams(params, scaleAdjust);
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400218}
219
220GrBackendTexture SkImage_GpuBase::onGetBackendTexture(bool flushPendingGrContextIO,
221 GrSurfaceOrigin* origin) const {
222 sk_sp<GrTextureProxy> proxy = this->asTextureProxyRef();
223 SkASSERT(proxy);
224
Robert Phillips9da87e02019-02-04 13:26:26 -0500225 if (!fContext->priv().resourceProvider() && !proxy->isInstantiated()) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400226 // This image was created with a DDL context and cannot be instantiated.
227 return GrBackendTexture();
228}
229
Robert Phillips9da87e02019-02-04 13:26:26 -0500230 if (!proxy->instantiate(fContext->priv().resourceProvider())) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400231 return GrBackendTexture(); // invalid
232 }
233
234 GrTexture* texture = proxy->peekTexture();
235
236 if (texture) {
237 if (flushPendingGrContextIO) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500238 fContext->priv().prepareSurfaceForExternalIO(proxy.get());
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400239 }
240 if (origin) {
241 *origin = proxy->origin();
242 }
243 return texture->getBackendTexture();
244 }
245 return GrBackendTexture(); // invalid
246}
247
248GrTexture* SkImage_GpuBase::onGetTexture() const {
249 GrTextureProxy* proxy = this->peekProxy();
250 if (!proxy) {
251 return nullptr;
252 }
253
254 sk_sp<GrTextureProxy> proxyRef = this->asTextureProxyRef();
Robert Phillips9da87e02019-02-04 13:26:26 -0500255 if (!fContext->priv().resourceProvider() && !proxyRef->isInstantiated()) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400256 // This image was created with a DDL context and cannot be instantiated.
257 return nullptr;
258 }
259
Robert Phillips9da87e02019-02-04 13:26:26 -0500260 if (!proxy->instantiate(fContext->priv().resourceProvider())) {
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400261 return nullptr;
262 }
263
264 return proxy->peekTexture();
265}
266
Jim Van Verth8026ccc2018-10-04 13:10:39 -0400267bool SkImage_GpuBase::onIsValid(GrContext* context) const {
268 // The base class has already checked that context isn't abandoned (if it's not nullptr)
269 if (fContext->abandoned()) {
270 return false;
271 }
272
273 if (context && context != fContext.get()) {
274 return false;
275 }
276
277 return true;
278}
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400279
Jim Van Verth0e671942018-11-09 12:03:57 -0500280bool SkImage_GpuBase::MakeTempTextureProxies(GrContext* ctx, const GrBackendTexture yuvaTextures[],
Jim Van Verth53275362018-11-09 15:42:35 -0500281 int numTextures, const SkYUVAIndex yuvaIndices[4],
282 GrSurfaceOrigin imageOrigin,
Jim Van Verth0e671942018-11-09 12:03:57 -0500283 sk_sp<GrTextureProxy> tempTextureProxies[4]) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500284 GrProxyProvider* proxyProvider = ctx->priv().proxyProvider();
Jim Van Verth0e671942018-11-09 12:03:57 -0500285
286 // We need to make a copy of the input backend textures because we need to preserve the result
287 // of validate_backend_texture.
288 GrBackendTexture yuvaTexturesCopy[4];
289 for (int textureIndex = 0; textureIndex < numTextures; ++textureIndex) {
290 yuvaTexturesCopy[textureIndex] = yuvaTextures[textureIndex];
Brian Salomonf391d0f2018-12-14 09:18:50 -0500291 GrBackendFormat backendFormat = yuvaTexturesCopy[textureIndex].getBackendFormat();
292 if (!backendFormat.isValid()) {
293 return false;
294 }
295 yuvaTexturesCopy[textureIndex].fConfig =
Robert Phillips9da87e02019-02-04 13:26:26 -0500296 ctx->priv().caps()->getYUVAConfigFromBackendFormat(backendFormat);
Brian Salomonf391d0f2018-12-14 09:18:50 -0500297 if (yuvaTexturesCopy[textureIndex].fConfig == kUnknown_GrPixelConfig) {
Jim Van Verth0e671942018-11-09 12:03:57 -0500298 return false;
299 }
300 SkASSERT(yuvaTexturesCopy[textureIndex].isValid());
301
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500302 tempTextureProxies[textureIndex] = proxyProvider->wrapBackendTexture(
303 yuvaTexturesCopy[textureIndex], imageOrigin, kBorrow_GrWrapOwnership,
304 GrWrapCacheable::kNo, kRead_GrIOType);
Jim Van Verth0e671942018-11-09 12:03:57 -0500305 if (!tempTextureProxies[textureIndex]) {
306 return false;
307 }
Jim Van Verth53275362018-11-09 15:42:35 -0500308
309 // Check that each texture contains the channel data for the corresponding YUVA index
310 GrPixelConfig config = yuvaTexturesCopy[textureIndex].fConfig;
311 for (int yuvaIndex = 0; yuvaIndex < SkYUVAIndex::kIndexCount; ++yuvaIndex) {
312 if (yuvaIndices[yuvaIndex].fIndex == textureIndex) {
313 switch (yuvaIndices[yuvaIndex].fChannel) {
314 case SkColorChannel::kR:
315 if (kAlpha_8_as_Alpha_GrPixelConfig == config) {
316 return false;
317 }
318 break;
319 case SkColorChannel::kG:
320 case SkColorChannel::kB:
321 if (kAlpha_8_as_Alpha_GrPixelConfig == config ||
322 kAlpha_8_as_Red_GrPixelConfig == config) {
323 return false;
324 }
325 break;
326 case SkColorChannel::kA:
327 default:
328 if (kRGB_888_GrPixelConfig == config) {
329 return false;
330 }
331 break;
332 }
333 }
334 }
Jim Van Verth0e671942018-11-09 12:03:57 -0500335 }
336
337 return true;
338}
339
340bool SkImage_GpuBase::RenderYUVAToRGBA(GrContext* ctx, GrRenderTargetContext* renderTargetContext,
341 const SkRect& rect, SkYUVColorSpace yuvColorSpace,
Brian Osmane9560492019-02-05 17:00:03 -0500342 sk_sp<GrColorSpaceXform> colorSpaceXform,
Jim Van Verth0e671942018-11-09 12:03:57 -0500343 const sk_sp<GrTextureProxy> proxies[4],
344 const SkYUVAIndex yuvaIndices[4]) {
345 SkASSERT(renderTargetContext);
346 if (!renderTargetContext->asSurfaceProxy()) {
347 return false;
348 }
349
350 GrPaint paint;
351 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
352
Brian Osmane9560492019-02-05 17:00:03 -0500353 auto fp = GrYUVtoRGBEffect::Make(proxies, yuvaIndices, yuvColorSpace,
354 GrSamplerState::Filter::kNearest);
355 if (colorSpaceXform) {
356 fp = GrColorSpaceXformEffect::Make(std::move(fp), std::move(colorSpaceXform));
357 }
358 paint.addColorFragmentProcessor(std::move(fp));
Jim Van Verth0e671942018-11-09 12:03:57 -0500359
360 renderTargetContext->drawRect(GrNoClip(), std::move(paint), GrAA::kNo, SkMatrix::I(), rect);
361
362 // DDL TODO: in the promise image version we must not flush here
Robert Phillips9da87e02019-02-04 13:26:26 -0500363 ctx->priv().flushSurfaceWrites(renderTargetContext->asSurfaceProxy());
Jim Van Verth0e671942018-11-09 12:03:57 -0500364
365 return true;
366}
367
Brian Salomonbe5a0932018-12-10 10:03:26 -0500368sk_sp<GrTextureProxy> SkImage_GpuBase::MakePromiseImageLazyProxy(
369 GrContext* context, int width, int height, GrSurfaceOrigin origin, GrPixelConfig config,
370 GrBackendFormat backendFormat, GrMipMapped mipMapped,
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500371 PromiseImageTextureFulfillProc fulfillProc,
372 PromiseImageTextureReleaseProc releaseProc,
373 PromiseImageTextureDoneProc doneProc,
Brian Salomonf55e8d52019-01-30 17:28:20 -0500374 PromiseImageTextureContext textureContext,
375 DelayReleaseCallback delayReleaseCallback) {
Brian Salomonbe5a0932018-12-10 10:03:26 -0500376 SkASSERT(context);
377 SkASSERT(width > 0 && height > 0);
378 SkASSERT(doneProc);
Brian Salomonf391d0f2018-12-14 09:18:50 -0500379 SkASSERT(config != kUnknown_GrPixelConfig);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500380
381 if (!fulfillProc || !releaseProc) {
382 doneProc(textureContext);
383 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400384 }
385
Brian Salomonbe5a0932018-12-10 10:03:26 -0500386 if (mipMapped == GrMipMapped::kYes &&
387 GrTextureTypeHasRestrictedSampling(backendFormat.textureType())) {
388 // It is invalid to have a GL_TEXTURE_EXTERNAL or GL_TEXTURE_RECTANGLE and have mips as
389 // well.
390 doneProc(textureContext);
391 return nullptr;
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400392 }
Brian Salomonbe5a0932018-12-10 10:03:26 -0500393
394 /**
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500395 * This class is the lazy instantiation callback for promise images. It manages calling the
396 * client's Fulfill, Release, and Done procs. It attempts to reuse a GrTexture instance in
397 * cases where the client provides the same SkPromiseImageTexture for successive Fulfill calls.
398 * The created GrTexture is given a key based on a unique ID associated with the
399 * SkPromiseImageTexture. When the texture enters "idle" state (meaning it is not being used by
400 * the GPU and is at rest in the resource cache) the client's Release proc is called
401 * using GrTexture's idle proc mechanism. If the same SkPromiseImageTexture is provided for
402 * another fulfill we find the cached GrTexture. If the proxy, and therefore this object,
403 * is destroyed, we invalidate the GrTexture's key. Also if the client overwrites or
404 * destroys their SkPromiseImageTexture we invalidate the key.
405 *
406 * Currently a GrTexture is only reused for a given SkPromiseImageTexture if the
407 * SkPromiseImageTexture is reused in Fulfill for the same promise SkImage. However, we'd
408 * like to relax that so that a SkPromiseImageTexture can be reused with different promise
409 * SkImages that will reuse a single GrTexture.
Brian Salomonbe5a0932018-12-10 10:03:26 -0500410 */
411 class PromiseLazyInstantiateCallback {
412 public:
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500413 PromiseLazyInstantiateCallback(PromiseImageTextureFulfillProc fulfillProc,
414 PromiseImageTextureReleaseProc releaseProc,
415 PromiseImageTextureDoneProc doneProc,
416 PromiseImageTextureContext context,
Brian Salomonf55e8d52019-01-30 17:28:20 -0500417 DelayReleaseCallback delayReleaseCallback,
Brian Salomonbe5a0932018-12-10 10:03:26 -0500418 GrPixelConfig config)
419 : fFulfillProc(fulfillProc)
Brian Salomonf55e8d52019-01-30 17:28:20 -0500420 , fConfig(config)
421 , fDelayReleaseCallback(delayReleaseCallback) {
Brian Salomon553610d2019-01-14 17:34:12 -0500422 auto doneHelper = sk_make_sp<GrReleaseProcHelper>(doneProc, context);
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500423 fReleaseContext = sk_make_sp<IdleContext::PromiseImageReleaseContext>(
424 releaseProc, context, std::move(doneHelper));
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500425 }
Brian Salomon553610d2019-01-14 17:34:12 -0500426
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500427 ~PromiseLazyInstantiateCallback() = default;
Brian Salomonbe5a0932018-12-10 10:03:26 -0500428
429 sk_sp<GrSurface> operator()(GrResourceProvider* resourceProvider) {
430 if (!resourceProvider) {
Brian Salomonf55e8d52019-01-30 17:28:20 -0500431 if (fDelayedReleaseTexture) {
432 fDelayedReleaseTexture.reset();
433 }
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500434 return nullptr;
435 }
Brian Salomonf55e8d52019-01-30 17:28:20 -0500436 if (fDelayedReleaseTexture) {
437 return fDelayedReleaseTexture;
438 }
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500439
440 sk_sp<GrTexture> cachedTexture;
441 SkASSERT(fLastFulfilledKey.isValid() == (fLastFulfillID > 0));
442 if (fLastFulfilledKey.isValid()) {
443 auto surf = resourceProvider->findByUniqueKey<GrSurface>(fLastFulfilledKey);
444 if (surf) {
445 cachedTexture = sk_ref_sp(surf->asTexture());
446 SkASSERT(cachedTexture);
447 }
448 }
449 // If the release callback hasn't been called already by releasing the GrTexture
450 // then we can be sure that won't happen so long as we have a ref to the texture.
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500451 if (cachedTexture && !fReleaseContext->isReleased()) {
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500452 return std::move(cachedTexture);
453 }
454 GrBackendTexture backendTexture;
Brian Salomon553610d2019-01-14 17:34:12 -0500455 sk_sp<SkPromiseImageTexture> promiseTexture =
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500456 fFulfillProc(fReleaseContext->textureContext());
457 fReleaseContext->notifyWasFulfilled();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500458 if (!promiseTexture) {
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500459 fReleaseContext->release();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500460 return sk_sp<GrTexture>();
461 }
462 bool same = promiseTexture->uniqueID() == fLastFulfillID;
463 SkASSERT(!same || fLastFulfilledKey.isValid());
464 if (same && cachedTexture) {
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500465 SkASSERT(fReleaseContext->unique());
466 this->addToIdleContext(cachedTexture.get());
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500467 return std::move(cachedTexture);
468 } else if (cachedTexture) {
469 cachedTexture->resourcePriv().removeUniqueKey();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500470 }
471 fLastFulfillID = promiseTexture->uniqueID();
472
473 backendTexture = promiseTexture->backendTexture();
474 backendTexture.fConfig = fConfig;
475 if (!backendTexture.isValid()) {
476 // Even though the GrBackendTexture is not valid, we must call the release
477 // proc to keep our contract of always calling Fulfill and Release in pairs.
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500478 fReleaseContext->release();
Brian Salomon426ba462019-01-10 16:33:06 +0000479 return sk_sp<GrTexture>();
Brian Salomon559c6172019-01-10 10:23:44 -0500480 }
481
Brian Salomonf55e8d52019-01-30 17:28:20 -0500482 sk_sp<GrTexture> tex;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500483 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
484 GrUniqueKey::Builder builder(&fLastFulfilledKey, kDomain, 2, "promise");
485 builder[0] = promiseTexture->uniqueID();
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500486 builder[1] = fConfig;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500487 builder.finish();
Brian Salomon0d606762019-01-25 09:58:38 -0500488 // A texture with this key may already exist from a different instance of this lazy
489 // callback. This could happen if the client fulfills a promise image with a texture
490 // that was previously used to fulfill a different promise image.
Brian Salomon0d606762019-01-25 09:58:38 -0500491 if (auto surf = resourceProvider->findByUniqueKey<GrSurface>(fLastFulfilledKey)) {
492 tex = sk_ref_sp(surf->asTexture());
493 SkASSERT(tex);
494 } else {
495 if ((tex = resourceProvider->wrapBackendTexture(
496 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kYes,
497 kRead_GrIOType))) {
498 tex->resourcePriv().setUniqueKey(fLastFulfilledKey);
499 } else {
500 // Even though we failed to wrap the backend texture, we must call the release
501 // proc to keep our contract of always calling Fulfill and Release in pairs.
502 fReleaseContext->release();
503 return sk_sp<GrTexture>();
504 }
505 }
506 this->addToIdleContext(tex.get());
Brian Salomonf55e8d52019-01-30 17:28:20 -0500507 if (fDelayReleaseCallback == DelayReleaseCallback::kYes) {
508 fDelayedReleaseTexture = tex;
509 }
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500510 tex->resourcePriv().setUniqueKey(fLastFulfilledKey);
511 SkASSERT(fContextID == SK_InvalidUniqueID ||
Robert Phillips9da87e02019-02-04 13:26:26 -0500512 fContextID == tex->getContext()->priv().contextID());
513 fContextID = tex->getContext()->priv().contextID();
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500514 promiseTexture->addKeyToInvalidate(fContextID, fLastFulfilledKey);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500515 return std::move(tex);
516 }
517
518 private:
Brian Salomon553610d2019-01-14 17:34:12 -0500519 // The GrTexture's idle callback mechanism is used to call the client's Release proc via
520 // this class. This also owns a ref counted helper that calls the client's ReleaseProc when
521 // the ref count reaches zero. The callback and any Fulfilled but un-Released texture share
522 // ownership of the IdleContext. Thus, the IdleContext is destroyed and calls the Done proc
523 // after the last fulfilled texture goes idle and calls the Release proc or the proxy's
524 // destructor destroys the lazy callback, whichever comes last.
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500525 class IdleContext {
Brian Salomon553610d2019-01-14 17:34:12 -0500526 public:
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500527 class PromiseImageReleaseContext;
Brian Salomon553610d2019-01-14 17:34:12 -0500528
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500529 IdleContext() = default;
Brian Salomon553610d2019-01-14 17:34:12 -0500530
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500531 ~IdleContext() = default;
Brian Salomon553610d2019-01-14 17:34:12 -0500532
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500533 void addImageReleaseContext(sk_sp<PromiseImageReleaseContext> context) {
534 fReleaseContexts.addToHead(std::move(context));
Brian Salomon553610d2019-01-14 17:34:12 -0500535 }
536
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500537 static void IdleProc(void* context) {
538 IdleContext* idleContext = static_cast<IdleContext*>(context);
539 for (ReleaseContextList::Iter iter = idleContext->fReleaseContexts.headIter();
540 iter.get();
541 iter.next()) {
542 (*iter.get())->release();
543 }
544 idleContext->fReleaseContexts.reset();
545 delete idleContext;
546 }
547
548 class PromiseImageReleaseContext : public SkNVRefCnt<PromiseImageReleaseContext> {
549 public:
550 PromiseImageReleaseContext(PromiseImageTextureReleaseProc releaseProc,
551 PromiseImageTextureContext textureContext,
552 sk_sp<GrReleaseProcHelper> doneHelper)
553 : fReleaseProc(releaseProc)
554 , fTextureContext(textureContext)
555 , fDoneHelper(std::move(doneHelper)) {}
556
557 ~PromiseImageReleaseContext() { SkASSERT(fIsReleased); }
558
559 void release() {
560 SkASSERT(!fIsReleased);
561 fReleaseProc(fTextureContext);
562 fIsReleased = true;
563 }
564
565 void notifyWasFulfilled() { fIsReleased = false; }
566 bool isReleased() const { return fIsReleased; }
567
568 PromiseImageTextureContext textureContext() const { return fTextureContext; }
569
570 private:
571 PromiseImageTextureReleaseProc fReleaseProc;
572 PromiseImageTextureContext fTextureContext;
573 sk_sp<GrReleaseProcHelper> fDoneHelper;
574 bool fIsReleased = true;
575 };
576
Brian Salomon553610d2019-01-14 17:34:12 -0500577 private:
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500578 using ReleaseContextList = SkTLList<sk_sp<PromiseImageReleaseContext>, 4>;
579 ReleaseContextList fReleaseContexts;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500580 };
Brian Salomonbe5a0932018-12-10 10:03:26 -0500581
Brian Salomon1bf0ed82019-01-16 13:51:35 -0500582 void addToIdleContext(GrTexture* texture) {
583 SkASSERT(!fReleaseContext->isReleased());
584 IdleContext* idleContext = static_cast<IdleContext*>(texture->idleContext());
585 if (!idleContext) {
586 idleContext = new IdleContext();
587 texture->setIdleProc(IdleContext::IdleProc, idleContext);
588 }
589 idleContext->addImageReleaseContext(fReleaseContext);
590 }
591
592 sk_sp<IdleContext::PromiseImageReleaseContext> fReleaseContext;
Brian Salomonf55e8d52019-01-30 17:28:20 -0500593 sk_sp<GrTexture> fDelayedReleaseTexture;
Brian Salomon553610d2019-01-14 17:34:12 -0500594 PromiseImageTextureFulfillProc fFulfillProc;
595 GrPixelConfig fConfig;
Brian Salomonf55e8d52019-01-30 17:28:20 -0500596 DelayReleaseCallback fDelayReleaseCallback;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500597
598 // ID of the last SkPromiseImageTexture given to us by the client.
599 uint32_t fLastFulfillID = 0;
600 // ID of the GrContext that we are interacting with.
601 uint32_t fContextID = SK_InvalidUniqueID;
Brian Salomoncdd8a0a2019-01-10 12:09:52 -0500602 GrUniqueKey fLastFulfilledKey;
Brian Salomonf55e8d52019-01-30 17:28:20 -0500603 } callback(fulfillProc, releaseProc, doneProc, textureContext, delayReleaseCallback, config);
Brian Salomonbe5a0932018-12-10 10:03:26 -0500604
Robert Phillips9da87e02019-02-04 13:26:26 -0500605 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Brian Salomonbe5a0932018-12-10 10:03:26 -0500606
607 GrSurfaceDesc desc;
608 desc.fWidth = width;
609 desc.fHeight = height;
610 desc.fConfig = config;
611
612 // We pass kReadOnly here since we should treat content of the client's texture as immutable.
613 return proxyProvider->createLazyProxy(std::move(callback), backendFormat, desc, origin,
614 mipMapped, GrInternalSurfaceFlags::kReadOnly,
615 SkBackingFit::kExact, SkBudgeted::kNo,
616 GrSurfaceProxy::LazyInstantiationType::kDeinstantiate);
Jim Van Verth8bbce0e2018-10-08 14:34:52 -0400617}