blob: 37829747efafb564f0a4025c5a7f70c7870560b4 [file] [log] [blame]
reed85d91782015-09-10 14:33:38 -07001/*
2 * Copyright 2015 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 Osmanbd659552018-09-11 10:03:19 -04008#include "SkImage_Lazy.h"
Brian Osmandf7e0752017-04-26 16:20:28 -04009
10#include "SkBitmap.h"
11#include "SkBitmapCache.h"
Brian Osmanb70fd912018-10-22 16:10:44 -040012#include "SkCachedData.h"
Brian Osmandf7e0752017-04-26 16:20:28 -040013#include "SkData.h"
14#include "SkImageGenerator.h"
reed85d91782015-09-10 14:33:38 -070015#include "SkImagePriv.h"
Brian Osmandf7e0752017-04-26 16:20:28 -040016#include "SkNextID.h"
reed85d91782015-09-10 14:33:38 -070017
Brian Osmandf7e0752017-04-26 16:20:28 -040018#if SK_SUPPORT_GPU
19#include "GrContext.h"
20#include "GrContextPriv.h"
21#include "GrGpuResourcePriv.h"
22#include "GrImageTextureMaker.h"
23#include "GrResourceKey.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050024#include "GrProxyProvider.h"
Brian Salomon2bbdcc42017-09-07 12:36:34 -040025#include "GrSamplerState.h"
Brian Osmandf7e0752017-04-26 16:20:28 -040026#include "GrYUVProvider.h"
27#include "SkGr.h"
28#endif
reed85d91782015-09-10 14:33:38 -070029
Brian Osmandf7e0752017-04-26 16:20:28 -040030// Ref-counted tuple(SkImageGenerator, SkMutex) which allows sharing one generator among N images
Mike Klein408ef212018-10-30 15:23:00 +000031class SharedGenerator final : public SkNVRefCnt<SharedGenerator> {
Brian Osmandf7e0752017-04-26 16:20:28 -040032public:
33 static sk_sp<SharedGenerator> Make(std::unique_ptr<SkImageGenerator> gen) {
34 return gen ? sk_sp<SharedGenerator>(new SharedGenerator(std::move(gen))) : nullptr;
35 }
36
Matt Sarettb2004f72017-05-18 09:26:50 -040037 // This is thread safe. It is a const field set in the constructor.
38 const SkImageInfo& getInfo() { return fGenerator->getInfo(); }
39
Brian Osmandf7e0752017-04-26 16:20:28 -040040private:
41 explicit SharedGenerator(std::unique_ptr<SkImageGenerator> gen)
42 : fGenerator(std::move(gen)) {
43 SkASSERT(fGenerator);
44 }
45
46 friend class ScopedGenerator;
47 friend class SkImage_Lazy;
48
49 std::unique_ptr<SkImageGenerator> fGenerator;
50 SkMutex fMutex;
51};
52
reed85d91782015-09-10 14:33:38 -070053///////////////////////////////////////////////////////////////////////////////
54
Christopher Cameron77e96662017-07-08 01:47:47 -070055SkImage_Lazy::Validator::Validator(sk_sp<SharedGenerator> gen, const SkIRect* subset,
Brian Osmanf48c9962019-01-14 11:15:50 -050056 const SkColorType* colorType, sk_sp<SkColorSpace> colorSpace)
Brian Osmandf7e0752017-04-26 16:20:28 -040057 : fSharedGenerator(std::move(gen)) {
Brian Osmandf7e0752017-04-26 16:20:28 -040058 if (!fSharedGenerator) {
59 return;
60 }
61
62 // The following generator accessors are safe without acquiring the mutex (const getters).
63 // TODO: refactor to use a ScopedGenerator instead, for clarity.
64 const SkImageInfo& info = fSharedGenerator->fGenerator->getInfo();
65 if (info.isEmpty()) {
66 fSharedGenerator.reset();
67 return;
68 }
69
70 fUniqueID = fSharedGenerator->fGenerator->uniqueID();
71 const SkIRect bounds = SkIRect::MakeWH(info.width(), info.height());
72 if (subset) {
73 if (!bounds.contains(*subset)) {
74 fSharedGenerator.reset();
75 return;
76 }
77 if (*subset != bounds) {
78 // we need a different uniqueID since we really are a subset of the raw generator
79 fUniqueID = SkNextID::ImageID();
80 }
81 } else {
82 subset = &bounds;
83 }
84
85 fInfo = info.makeWH(subset->width(), subset->height());
86 fOrigin = SkIPoint::Make(subset->x(), subset->y());
Brian Osmanf48c9962019-01-14 11:15:50 -050087 if (colorType || colorSpace) {
88 if (colorType) {
89 fInfo = fInfo.makeColorType(*colorType);
90 }
91 if (colorSpace) {
92 fInfo = fInfo.makeColorSpace(colorSpace);
93 }
Christopher Cameron77e96662017-07-08 01:47:47 -070094 fUniqueID = SkNextID::ImageID();
95 }
Brian Osmandf7e0752017-04-26 16:20:28 -040096}
97
98///////////////////////////////////////////////////////////////////////////////
99
100// Helper for exclusive access to a shared generator.
101class SkImage_Lazy::ScopedGenerator {
102public:
103 ScopedGenerator(const sk_sp<SharedGenerator>& gen)
104 : fSharedGenerator(gen)
105 , fAutoAquire(gen->fMutex) {}
106
107 SkImageGenerator* operator->() const {
108 fSharedGenerator->fMutex.assertHeld();
109 return fSharedGenerator->fGenerator.get();
110 }
111
112 operator SkImageGenerator*() const {
113 fSharedGenerator->fMutex.assertHeld();
114 return fSharedGenerator->fGenerator.get();
115 }
116
117private:
118 const sk_sp<SharedGenerator>& fSharedGenerator;
119 SkAutoExclusive fAutoAquire;
120};
121
122///////////////////////////////////////////////////////////////////////////////
123
124SkImage_Lazy::SkImage_Lazy(Validator* validator)
125 : INHERITED(validator->fInfo.width(), validator->fInfo.height(), validator->fUniqueID)
126 , fSharedGenerator(std::move(validator->fSharedGenerator))
127 , fInfo(validator->fInfo)
128 , fOrigin(validator->fOrigin) {
129 SkASSERT(fSharedGenerator);
Brian Osmaneb7e5292018-08-08 14:32:06 -0400130 fUniqueID = validator->fUniqueID;
Brian Osmandf7e0752017-04-26 16:20:28 -0400131}
132
Brian Osmanbd659552018-09-11 10:03:19 -0400133SkImage_Lazy::~SkImage_Lazy() {
134#if SK_SUPPORT_GPU
135 for (int i = 0; i < fUniqueKeyInvalidatedMessages.count(); ++i) {
136 SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(*fUniqueKeyInvalidatedMessages[i]);
137 }
138 fUniqueKeyInvalidatedMessages.deleteAll();
139#endif
140}
141
Brian Osmandf7e0752017-04-26 16:20:28 -0400142//////////////////////////////////////////////////////////////////////////////////////////////////
143
Brian Osmanc87cfb62018-07-11 09:08:46 -0400144static bool generate_pixels(SkImageGenerator* gen, const SkPixmap& pmap, int originX, int originY) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400145 const int genW = gen->getInfo().width();
146 const int genH = gen->getInfo().height();
147 const SkIRect srcR = SkIRect::MakeWH(genW, genH);
148 const SkIRect dstR = SkIRect::MakeXYWH(originX, originY, pmap.width(), pmap.height());
149 if (!srcR.contains(dstR)) {
150 return false;
151 }
152
153 // If they are requesting a subset, we have to have a temp allocation for full image, and
154 // then copy the subset into their allocation
155 SkBitmap full;
156 SkPixmap fullPM;
157 const SkPixmap* dstPM = &pmap;
158 if (srcR != dstR) {
159 if (!full.tryAllocPixels(pmap.info().makeWH(genW, genH))) {
160 return false;
161 }
162 if (!full.peekPixels(&fullPM)) {
163 return false;
164 }
165 dstPM = &fullPM;
166 }
167
Brian Osmanc87cfb62018-07-11 09:08:46 -0400168 if (!gen->getPixels(dstPM->info(), dstPM->writable_addr(), dstPM->rowBytes())) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400169 return false;
170 }
171
172 if (srcR != dstR) {
173 if (!full.readPixels(pmap, originX, originY)) {
174 return false;
175 }
176 }
177 return true;
178}
179
Brian Osman00766bf2018-10-22 15:59:23 -0400180bool SkImage_Lazy::getROPixels(SkBitmap* bitmap, SkImage::CachingHint chint) const {
181 auto check_output_bitmap = [bitmap]() {
182 SkASSERT(bitmap->isImmutable());
183 SkASSERT(bitmap->getPixels());
184 (void)bitmap;
185 };
186
187 auto desc = SkBitmapCacheDesc::Make(this);
188 if (SkBitmapCache::Find(desc, bitmap)) {
189 check_output_bitmap();
Brian Osmandf7e0752017-04-26 16:20:28 -0400190 return true;
191 }
192
Brian Osmandf7e0752017-04-26 16:20:28 -0400193 if (SkImage::kAllow_CachingHint == chint) {
Brian Osman00766bf2018-10-22 15:59:23 -0400194 SkPixmap pmap;
195 SkBitmapCache::RecPtr cacheRec = SkBitmapCache::Alloc(desc, fInfo, &pmap);
196 if (!cacheRec ||
197 !generate_pixels(ScopedGenerator(fSharedGenerator), pmap,
198 fOrigin.x(), fOrigin.y())) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400199 return false;
200 }
Brian Osmandf7e0752017-04-26 16:20:28 -0400201 SkBitmapCache::Add(std::move(cacheRec), bitmap);
Mike Reed30301c42018-07-19 09:39:21 -0400202 this->notifyAddedToRasterCache();
Brian Osmandf7e0752017-04-26 16:20:28 -0400203 } else {
Brian Osman00766bf2018-10-22 15:59:23 -0400204 if (!bitmap->tryAllocPixels(fInfo) ||
205 !generate_pixels(ScopedGenerator(fSharedGenerator), bitmap->pixmap(),
206 fOrigin.x(), fOrigin.y())) {
207 return false;
208 }
Brian Osmana0dc3d22018-10-09 15:17:38 -0400209 bitmap->setImmutable();
Brian Osmandf7e0752017-04-26 16:20:28 -0400210 }
211
Brian Osman00766bf2018-10-22 15:59:23 -0400212 check_output_bitmap();
Brian Osmandf7e0752017-04-26 16:20:28 -0400213 return true;
214}
215
216//////////////////////////////////////////////////////////////////////////////////////////////////
217
Brian Osmanf1b43822017-04-20 13:43:23 -0400218bool SkImage_Lazy::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB,
219 int srcX, int srcY, CachingHint chint) const {
reed85d91782015-09-10 14:33:38 -0700220 SkBitmap bm;
Brian Osmane50cdf02018-10-19 13:02:14 -0400221 if (this->getROPixels(&bm, chint)) {
reed85d91782015-09-10 14:33:38 -0700222 return bm.readPixels(dstInfo, dstPixels, dstRB, srcX, srcY);
223 }
224 return false;
225}
226
Ben Wagnerbdf54332018-05-15 14:12:14 -0400227sk_sp<SkData> SkImage_Lazy::onRefEncoded() const {
228 ScopedGenerator generator(fSharedGenerator);
229 return generator->refEncodedData();
230}
reed85d91782015-09-10 14:33:38 -0700231
Brian Osman5bbd0762017-05-08 11:07:42 -0400232bool SkImage_Lazy::onIsValid(GrContext* context) const {
233 ScopedGenerator generator(fSharedGenerator);
234 return generator->isValid(context);
235}
236
Brian Osmandf7e0752017-04-26 16:20:28 -0400237///////////////////////////////////////////////////////////////////////////////////////////////////
238
Robert Phillipsb726d582017-03-09 16:36:32 -0500239#if SK_SUPPORT_GPU
Brian Osmanf1b43822017-04-20 13:43:23 -0400240sk_sp<GrTextureProxy> SkImage_Lazy::asTextureProxyRef(GrContext* context,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400241 const GrSamplerState& params,
Brian Osmanf1b43822017-04-20 13:43:23 -0400242 SkScalar scaleAdjust[2]) const {
Brian Osmandf7e0752017-04-26 16:20:28 -0400243 if (!context) {
244 return nullptr;
245 }
246
247 GrImageTextureMaker textureMaker(context, this, kAllow_CachingHint);
Brian Osman6064e1c2018-10-19 14:27:54 -0400248 return textureMaker.refTextureProxyForParams(params, scaleAdjust);
Robert Phillipsb726d582017-03-09 16:36:32 -0500249}
250#endif
251
Brian Osmanf1b43822017-04-20 13:43:23 -0400252sk_sp<SkImage> SkImage_Lazy::onMakeSubset(const SkIRect& subset) const {
Brian Osmandf7e0752017-04-26 16:20:28 -0400253 SkASSERT(fInfo.bounds().contains(subset));
254 SkASSERT(fInfo.bounds() != subset);
reed7b6945b2015-09-24 00:50:58 -0700255
Brian Osmandf7e0752017-04-26 16:20:28 -0400256 const SkIRect generatorSubset = subset.makeOffset(fOrigin.x(), fOrigin.y());
Brian Osmanf48c9962019-01-14 11:15:50 -0500257 const SkColorType colorType = fInfo.colorType();
258 Validator validator(fSharedGenerator, &generatorSubset, &colorType, fInfo.refColorSpace());
Brian Osmanf1b43822017-04-20 13:43:23 -0400259 return validator ? sk_sp<SkImage>(new SkImage_Lazy(&validator)) : nullptr;
reed7b6945b2015-09-24 00:50:58 -0700260}
261
Brian Osmanf48c9962019-01-14 11:15:50 -0500262sk_sp<SkImage> SkImage_Lazy::onMakeColorTypeAndColorSpace(SkColorType targetCT,
263 sk_sp<SkColorSpace> targetCS) const {
264 SkAutoExclusive autoAquire(fOnMakeColorTypeAndSpaceMutex);
265 if (fOnMakeColorTypeAndSpaceResult &&
266 targetCT == fOnMakeColorTypeAndSpaceResult->colorType() &&
267 SkColorSpace::Equals(targetCS.get(), fOnMakeColorTypeAndSpaceResult->colorSpace())) {
268 return fOnMakeColorTypeAndSpaceResult;
Christopher Camerond4b67872017-07-13 15:18:08 -0700269 }
Christopher Cameron77e96662017-07-08 01:47:47 -0700270 const SkIRect generatorSubset =
271 SkIRect::MakeXYWH(fOrigin.x(), fOrigin.y(), fInfo.width(), fInfo.height());
Brian Osmanf48c9962019-01-14 11:15:50 -0500272 Validator validator(fSharedGenerator, &generatorSubset, &targetCT, targetCS);
Christopher Camerond4b67872017-07-13 15:18:08 -0700273 sk_sp<SkImage> result = validator ? sk_sp<SkImage>(new SkImage_Lazy(&validator)) : nullptr;
274 if (result) {
Brian Osmanf48c9962019-01-14 11:15:50 -0500275 fOnMakeColorTypeAndSpaceResult = result;
Christopher Camerond4b67872017-07-13 15:18:08 -0700276 }
277 return result;
Matt Sarett6de13102017-03-14 14:10:48 -0400278}
279
Mike Reed185130c2017-02-15 15:14:16 -0500280sk_sp<SkImage> SkImage::MakeFromGenerator(std::unique_ptr<SkImageGenerator> generator,
281 const SkIRect* subset) {
Brian Osmanf48c9962019-01-14 11:15:50 -0500282 SkImage_Lazy::Validator
283 validator(SharedGenerator::Make(std::move(generator)), subset, nullptr, nullptr);
fmalita7929e3a2016-10-27 08:15:44 -0700284
Brian Osmanf1b43822017-04-20 13:43:23 -0400285 return validator ? sk_make_sp<SkImage_Lazy>(&validator) : nullptr;
reed85d91782015-09-10 14:33:38 -0700286}
Brian Osmandf7e0752017-04-26 16:20:28 -0400287
288//////////////////////////////////////////////////////////////////////////////////////////////////
289
Brian Osmandf7e0752017-04-26 16:20:28 -0400290#if SK_SUPPORT_GPU
291
Brian Osmanbd659552018-09-11 10:03:19 -0400292void SkImage_Lazy::makeCacheKeyFromOrigKey(const GrUniqueKey& origKey,
293 GrUniqueKey* cacheKey) const {
Brian Osman10494e32018-09-10 12:45:18 -0400294 SkASSERT(!cacheKey->isValid());
295 if (origKey.isValid()) {
296 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
297 GrUniqueKey::Builder builder(cacheKey, origKey, kDomain, 0, "Image");
298 }
299}
300
Brian Osmandf7e0752017-04-26 16:20:28 -0400301class Generator_GrYUVProvider : public GrYUVProvider {
Brian Osmandf7e0752017-04-26 16:20:28 -0400302public:
303 Generator_GrYUVProvider(SkImageGenerator* gen) : fGen(gen) {}
304
Robert Phillipsb4a8eac2018-09-21 08:26:33 -0400305private:
306 uint32_t onGetID() const override { return fGen->uniqueID(); }
Jim Van Verthe24b5872018-10-29 16:26:02 -0400307 bool onQueryYUVA8(SkYUVASizeInfo* sizeInfo,
Jim Van Verth8f11e432018-10-18 14:36:59 -0400308 SkYUVAIndex yuvaIndices[SkYUVAIndex::kIndexCount],
309 SkYUVColorSpace* colorSpace) const override {
310 return fGen->queryYUVA8(sizeInfo, yuvaIndices, colorSpace);
Brian Osmandf7e0752017-04-26 16:20:28 -0400311 }
Jim Van Verthe24b5872018-10-29 16:26:02 -0400312 bool onGetYUVA8Planes(const SkYUVASizeInfo& sizeInfo,
Jim Van Verth8f11e432018-10-18 14:36:59 -0400313 const SkYUVAIndex yuvaIndices[SkYUVAIndex::kIndexCount],
314 void* planes[]) override {
315 return fGen->getYUVA8Planes(sizeInfo, yuvaIndices, planes);
Brian Osmandf7e0752017-04-26 16:20:28 -0400316 }
Robert Phillipsb4a8eac2018-09-21 08:26:33 -0400317
318 SkImageGenerator* fGen;
319
320 typedef GrYUVProvider INHERITED;
Brian Osmandf7e0752017-04-26 16:20:28 -0400321};
322
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500323static void set_key_on_proxy(GrProxyProvider* proxyProvider,
Greg Danielfc5060d2017-10-04 18:36:15 +0000324 GrTextureProxy* proxy, GrTextureProxy* originalProxy,
325 const GrUniqueKey& key) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400326 if (key.isValid()) {
Greg Danielf6f7b672018-02-15 13:06:26 -0500327 if (originalProxy && originalProxy->getUniqueKey().isValid()) {
328 SkASSERT(originalProxy->getUniqueKey() == key);
Greg Daniele252f082017-10-23 16:05:23 -0400329 SkASSERT(GrMipMapped::kYes == proxy->mipMapped() &&
330 GrMipMapped::kNo == originalProxy->mipMapped());
Greg Danielf6f7b672018-02-15 13:06:26 -0500331 // If we had an originalProxy with a valid key, that means there already is a proxy in
332 // the cache which matches the key, but it does not have mip levels and we require them.
333 // Thus we must remove the unique key from that proxy.
Chris Dalton2de13dd2019-01-03 15:11:59 -0700334 SkASSERT(originalProxy->getUniqueKey() == key);
335 proxyProvider->removeUniqueKeyFromProxy(originalProxy);
Greg Danielfc5060d2017-10-04 18:36:15 +0000336 }
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500337 proxyProvider->assignUniqueKeyToProxy(key, proxy);
Brian Osmandf7e0752017-04-26 16:20:28 -0400338 }
339}
340
Jim Van Verthe24b5872018-10-29 16:26:02 -0400341sk_sp<SkCachedData> SkImage_Lazy::getPlanes(SkYUVASizeInfo* yuvaSizeInfo,
Jim Van Verth8f11e432018-10-18 14:36:59 -0400342 SkYUVAIndex yuvaIndices[SkYUVAIndex::kIndexCount],
Robert Phillipsb4a8eac2018-09-21 08:26:33 -0400343 SkYUVColorSpace* yuvColorSpace,
Jim Van Verthe24b5872018-10-29 16:26:02 -0400344 const void* planes[SkYUVASizeInfo::kMaxCount]) {
Robert Phillipsb4a8eac2018-09-21 08:26:33 -0400345 ScopedGenerator generator(fSharedGenerator);
346 Generator_GrYUVProvider provider(generator);
347
Jim Van Verth8f11e432018-10-18 14:36:59 -0400348 sk_sp<SkCachedData> data = provider.getPlanes(yuvaSizeInfo, yuvaIndices, yuvColorSpace, planes);
Robert Phillipsb4a8eac2018-09-21 08:26:33 -0400349 if (!data) {
350 return nullptr;
351 }
352
353 return data;
354}
355
356
Brian Osmandf7e0752017-04-26 16:20:28 -0400357/*
358 * We have 4 ways to try to return a texture (in sorted order)
359 *
360 * 1. Check the cache for a pre-existing one
361 * 2. Ask the generator to natively create one
362 * 3. Ask the generator to return YUV planes, which the GPU can convert
363 * 4. Ask the generator to return RGB(A) data, which the GPU can convert
364 */
Brian Osmanbd659552018-09-11 10:03:19 -0400365sk_sp<GrTextureProxy> SkImage_Lazy::lockTextureProxy(
366 GrContext* ctx,
367 const GrUniqueKey& origKey,
368 SkImage::CachingHint chint,
369 bool willBeMipped,
Brian Osmanbd659552018-09-11 10:03:19 -0400370 GrTextureMaker::AllowedTexGenType genType) const {
Brian Osmandf7e0752017-04-26 16:20:28 -0400371 // Values representing the various texture lock paths we can take. Used for logging the path
372 // taken to a histogram.
373 enum LockTexturePath {
374 kFailure_LockTexturePath,
375 kPreExisting_LockTexturePath,
376 kNative_LockTexturePath,
377 kCompressed_LockTexturePath, // Deprecated
378 kYUV_LockTexturePath,
379 kRGBA_LockTexturePath,
380 };
381
382 enum { kLockTexturePathCount = kRGBA_LockTexturePath + 1 };
383
Brian Osman10494e32018-09-10 12:45:18 -0400384 // Build our texture key.
Greg Daniel25ceb1c2018-09-27 17:01:41 -0400385 // Even though some proxies created here may have a specific origin and use that origin, we do
386 // not include that in the key. Since SkImages are meant to be immutable, a given SkImage will
387 // always have an associated proxy that is always one origin or the other. It never can change
388 // origins. Thus we don't need to include that info in the key iteself.
Brian Osman10494e32018-09-10 12:45:18 -0400389 GrUniqueKey key;
390 this->makeCacheKeyFromOrigKey(origKey, &key);
Brian Osmandf7e0752017-04-26 16:20:28 -0400391
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500392 GrProxyProvider* proxyProvider = ctx->contextPriv().proxyProvider();
Greg Danielfc5060d2017-10-04 18:36:15 +0000393 sk_sp<GrTextureProxy> proxy;
394
Brian Osmandf7e0752017-04-26 16:20:28 -0400395 // 1. Check the cache for a pre-existing one
396 if (key.isValid()) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500397 proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kTopLeft_GrSurfaceOrigin);
Greg Danielfc5060d2017-10-04 18:36:15 +0000398 if (proxy) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400399 SK_HISTOGRAM_ENUMERATION("LockTexturePath", kPreExisting_LockTexturePath,
400 kLockTexturePathCount);
Greg Daniele252f082017-10-23 16:05:23 -0400401 if (!willBeMipped || GrMipMapped::kYes == proxy->mipMapped()) {
Greg Danielfc5060d2017-10-04 18:36:15 +0000402 return proxy;
403 }
Brian Osmandf7e0752017-04-26 16:20:28 -0400404 }
405 }
406
Brian Osmandf7e0752017-04-26 16:20:28 -0400407 // 2. Ask the generator to natively create one
Greg Danielfc5060d2017-10-04 18:36:15 +0000408 if (!proxy) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400409 ScopedGenerator generator(fSharedGenerator);
Stan Ilievba81af22017-06-08 15:16:53 -0400410 if (GrTextureMaker::AllowedTexGenType::kCheap == genType &&
411 SkImageGenerator::TexGenType::kCheap != generator->onCanGenerateTexture()) {
412 return nullptr;
413 }
Brian Osmanb3f38302018-09-07 15:24:44 -0400414 if ((proxy = generator->generateTexture(ctx, fInfo, fOrigin, willBeMipped))) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400415 SK_HISTOGRAM_ENUMERATION("LockTexturePath", kNative_LockTexturePath,
416 kLockTexturePathCount);
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500417 set_key_on_proxy(proxyProvider, proxy.get(), nullptr, key);
Greg Daniele252f082017-10-23 16:05:23 -0400418 if (!willBeMipped || GrMipMapped::kYes == proxy->mipMapped()) {
Greg Daniel2ad08202018-09-07 09:13:36 -0400419 *fUniqueKeyInvalidatedMessages.append() =
420 new GrUniqueKeyInvalidatedMessage(key, ctx->uniqueID());
Greg Danielfc5060d2017-10-04 18:36:15 +0000421 return proxy;
422 }
Brian Osmandf7e0752017-04-26 16:20:28 -0400423 }
424 }
425
Greg Daniel3e70fa32017-10-05 16:27:06 -0400426 // 3. Ask the generator to return YUV planes, which the GPU can convert. If we will be mipping
427 // the texture we fall through here and have the CPU generate the mip maps for us.
428 if (!proxy && !willBeMipped && !ctx->contextPriv().disableGpuYUVConversion()) {
Brian Osmanb3f38302018-09-07 15:24:44 -0400429 const GrSurfaceDesc desc = GrImageInfoToSurfaceDesc(fInfo);
Greg Daniel4065d452018-11-16 15:43:41 -0500430
431 SkColorType colorType = fInfo.colorType();
432 GrBackendFormat format =
433 ctx->contextPriv().caps()->getBackendFormatFromColorType(colorType);
434
Brian Osmandf7e0752017-04-26 16:20:28 -0400435 ScopedGenerator generator(fSharedGenerator);
436 Generator_GrYUVProvider provider(generator);
Christopher Cameron77e96662017-07-08 01:47:47 -0700437
Brian Osmanf48c9962019-01-14 11:15:50 -0500438 // The pixels in the texture will be in the generator's color space.
439 // If onMakeColorTypeAndColorSpace has been called then this will not match this image's
440 // color space. To correct this, apply a color space conversion from the generator's color
441 // space to this image's color space.
Brian Osman861ea5b2018-06-14 09:14:03 -0400442 SkColorSpace* generatorColorSpace = fSharedGenerator->fGenerator->getInfo().colorSpace();
443 SkColorSpace* thisColorSpace = fInfo.colorSpace();
Christopher Cameron77e96662017-07-08 01:47:47 -0700444
Mike Kleinae5e8642018-10-03 17:00:41 -0400445 // TODO: Update to create the mipped surface in the YUV generator and draw the base
446 // layer directly into the mipped surface.
Greg Daniel4065d452018-11-16 15:43:41 -0500447 proxy = provider.refAsTextureProxy(ctx, format, desc, generatorColorSpace, thisColorSpace);
Mike Kleinae5e8642018-10-03 17:00:41 -0400448 if (proxy) {
449 SK_HISTOGRAM_ENUMERATION("LockTexturePath", kYUV_LockTexturePath,
450 kLockTexturePathCount);
451 set_key_on_proxy(proxyProvider, proxy.get(), nullptr, key);
452 *fUniqueKeyInvalidatedMessages.append() =
453 new GrUniqueKeyInvalidatedMessage(key, ctx->uniqueID());
454 return proxy;
Brian Osmandf7e0752017-04-26 16:20:28 -0400455 }
456 }
457
458 // 4. Ask the generator to return RGB(A) data, which the GPU can convert
459 SkBitmap bitmap;
Brian Osman00766bf2018-10-22 15:59:23 -0400460 if (!proxy && this->getROPixels(&bitmap, chint)) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400461 if (willBeMipped) {
Brian Osman2b23c4b2018-06-01 12:25:08 -0400462 proxy = proxyProvider->createMipMapProxyFromBitmap(bitmap);
Brian Osmandf7e0752017-04-26 16:20:28 -0400463 }
464 if (!proxy) {
Brian Osman2b23c4b2018-06-01 12:25:08 -0400465 proxy = GrUploadBitmapToTextureProxy(proxyProvider, bitmap);
Brian Osmandf7e0752017-04-26 16:20:28 -0400466 }
Greg Daniele252f082017-10-23 16:05:23 -0400467 if (proxy && (!willBeMipped || GrMipMapped::kYes == proxy->mipMapped())) {
Brian Osmandf7e0752017-04-26 16:20:28 -0400468 SK_HISTOGRAM_ENUMERATION("LockTexturePath", kRGBA_LockTexturePath,
469 kLockTexturePathCount);
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500470 set_key_on_proxy(proxyProvider, proxy.get(), nullptr, key);
Greg Daniel2ad08202018-09-07 09:13:36 -0400471 *fUniqueKeyInvalidatedMessages.append() =
472 new GrUniqueKeyInvalidatedMessage(key, ctx->uniqueID());
Brian Osmandf7e0752017-04-26 16:20:28 -0400473 return proxy;
474 }
475 }
Greg Danielfc5060d2017-10-04 18:36:15 +0000476
477 if (proxy) {
478 // We need a mipped proxy, but we either found a proxy earlier that wasn't mipped, generated
479 // a native non mipped proxy, or generated a non-mipped yuv proxy. Thus we generate a new
480 // mipped surface and copy the original proxy into the base layer. We will then let the gpu
481 // generate the rest of the mips.
482 SkASSERT(willBeMipped);
Greg Daniele252f082017-10-23 16:05:23 -0400483 SkASSERT(GrMipMapped::kNo == proxy->mipMapped());
Greg Daniel2ad08202018-09-07 09:13:36 -0400484 *fUniqueKeyInvalidatedMessages.append() =
485 new GrUniqueKeyInvalidatedMessage(key, ctx->uniqueID());
Greg Daniele1da1d92017-10-06 15:59:27 -0400486 if (auto mippedProxy = GrCopyBaseMipMapToTextureProxy(ctx, proxy.get())) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500487 set_key_on_proxy(proxyProvider, mippedProxy.get(), proxy.get(), key);
Greg Danielfc5060d2017-10-04 18:36:15 +0000488 return mippedProxy;
489 }
Greg Daniel8f5bbda2018-06-08 17:22:23 -0400490 // We failed to make a mipped proxy with the base copied into it. This could have
491 // been from failure to make the proxy or failure to do the copy. Thus we will fall
492 // back to just using the non mipped proxy; See skbug.com/7094.
493 return proxy;
Greg Danielfc5060d2017-10-04 18:36:15 +0000494 }
495
Brian Osmandf7e0752017-04-26 16:20:28 -0400496 SK_HISTOGRAM_ENUMERATION("LockTexturePath", kFailure_LockTexturePath,
497 kLockTexturePathCount);
498 return nullptr;
499}
500
501///////////////////////////////////////////////////////////////////////////////////////////////////
502
503#endif