blob: 88d1ec2813f9a961321c1f1bd67aa2f2ca72236f [file] [log] [blame]
bsalomon@google.com27847de2011-02-22 20:59:41 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 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.
bsalomon@google.com27847de2011-02-22 20:59:41 +00006 */
7
bsalomon@google.com1fadb202011-12-12 16:10:08 +00008#include "GrContext.h"
Brian Salomon5f33a8c2018-02-26 14:32:39 -05009#include "GrBackendSemaphore.h"
Brian Salomonc65aec92017-03-09 09:03:58 -050010#include "GrClip.h"
bsalomon682c2692015-05-22 14:01:46 -070011#include "GrContextOptions.h"
Brian Salomonc65aec92017-03-09 09:03:58 -050012#include "GrContextPriv.h"
robertphillips77a2e522015-10-17 07:43:27 -070013#include "GrDrawingManager.h"
Robert Phillips646e4292017-06-13 12:44:56 -040014#include "GrGpu.h"
Robert Phillipsc994a932018-06-19 13:09:54 -040015#include "GrMemoryPool.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050016#include "GrProxyProvider.h"
Brian Osman11052242016-10-27 14:47:55 -040017#include "GrRenderTargetContext.h"
Brian Salomonc65aec92017-03-09 09:03:58 -050018#include "GrRenderTargetProxy.h"
bsalomon0ea80f42015-02-11 10:49:59 -080019#include "GrResourceCache.h"
bsalomond309e7a2015-04-30 14:18:54 -070020#include "GrResourceProvider.h"
Greg Danield85f97d2017-03-07 13:37:21 -050021#include "GrSemaphore.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000022#include "GrSoftwarePathRenderer.h"
Brian Osman45580d32016-11-23 09:37:01 -050023#include "GrSurfaceContext.h"
bsalomonafbf2d62014-09-30 12:18:44 -070024#include "GrSurfacePriv.h"
Robert Phillips757914d2017-01-25 15:48:30 -050025#include "GrSurfaceProxyPriv.h"
Robert Phillips646e4292017-06-13 12:44:56 -040026#include "GrTexture.h"
Brian Osman45580d32016-11-23 09:37:01 -050027#include "GrTextureContext.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040028#include "GrTracing.h"
Brian Salomon19eaf2d2018-03-19 16:06:44 -040029#include "SkAutoPixmapStorage.h"
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -050030#include "SkDeferredDisplayList.h"
Brian Osman3b655982017-03-07 16:58:08 -050031#include "SkGr.h"
Mike Reed7fcfb622018-02-09 13:26:46 -050032#include "SkImageInfoPriv.h"
Brian Osman51279982017-08-23 10:12:00 -040033#include "SkMakeUnique.h"
Robert Phillips6b6fcc72018-03-30 13:57:00 -040034#include "SkSurface_Gpu.h"
Brian Osman51279982017-08-23 10:12:00 -040035#include "SkTaskGroup.h"
Khushal71652e22018-10-29 13:05:36 -070036#include "SkTraceMemoryDump.h"
joshualitt5478d422014-11-14 16:00:38 -080037#include "effects/GrConfigConversionEffect.h"
Ethan Nicholas00543112018-07-31 09:44:36 -040038#include "effects/GrSkSLFP.h"
Chris Dalton6c3879d2018-11-01 11:13:19 -060039#include "ccpr/GrCoverageCountingPathRenderer.h"
Brian Salomon5f33a8c2018-02-26 14:32:39 -050040#include "text/GrTextBlobCache.h"
Mike Klein0ec1c572018-12-04 11:52:51 -050041#include <atomic>
42#include <unordered_map>
Greg Danielb76a72a2017-07-13 15:07:54 -040043
Robert Phillipse78b7252017-04-06 07:59:41 -040044#define ASSERT_OWNED_PROXY(P) \
Brian Salomonfd98c2c2018-07-31 17:25:29 -040045 SkASSERT(!(P) || !((P)->peekTexture()) || (P)->peekTexture()->getContext() == this)
Robert Phillips7ee385e2017-03-30 08:02:11 -040046#define ASSERT_OWNED_PROXY_PRIV(P) \
Brian Salomonfd98c2c2018-07-31 17:25:29 -040047 SkASSERT(!(P) || !((P)->peekTexture()) || (P)->peekTexture()->getContext() == fContext)
Robert Phillips7ee385e2017-03-30 08:02:11 -040048
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000049#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
joshualitt1de610a2016-01-06 08:26:09 -080050#define ASSERT_SINGLE_OWNER \
51 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(&fSingleOwner);)
robertphillips4fd74ae2016-08-03 14:26:53 -070052#define ASSERT_SINGLE_OWNER_PRIV \
53 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(&fContext->fSingleOwner);)
robertphillips7761d612016-05-16 09:14:53 -070054#define RETURN_IF_ABANDONED if (fDrawingManager->wasAbandoned()) { return; }
Robert Phillips7ee385e2017-03-30 08:02:11 -040055#define RETURN_IF_ABANDONED_PRIV if (fContext->fDrawingManager->wasAbandoned()) { return; }
robertphillips7761d612016-05-16 09:14:53 -070056#define RETURN_FALSE_IF_ABANDONED if (fDrawingManager->wasAbandoned()) { return false; }
Robert Phillipse78b7252017-04-06 07:59:41 -040057#define RETURN_FALSE_IF_ABANDONED_PRIV if (fContext->fDrawingManager->wasAbandoned()) { return false; }
robertphillips7761d612016-05-16 09:14:53 -070058#define RETURN_NULL_IF_ABANDONED if (fDrawingManager->wasAbandoned()) { return nullptr; }
bsalomon@google.combc4b6542011-11-19 13:56:11 +000059
robertphillipsea461502015-05-26 11:38:03 -070060////////////////////////////////////////////////////////////////////////////////
61
joshualitt0acd0d32015-05-07 08:23:19 -070062static int32_t next_id() {
Mike Klein0ec1c572018-12-04 11:52:51 -050063 static std::atomic<int32_t> nextID{1};
joshualitt0acd0d32015-05-07 08:23:19 -070064 int32_t id;
65 do {
Mike Klein0ec1c572018-12-04 11:52:51 -050066 id = nextID++;
joshualitt0acd0d32015-05-07 08:23:19 -070067 } while (id == SK_InvalidGenID);
68 return id;
69}
70
Greg Danielbdf12ad2018-10-12 09:31:11 -040071GrContext::GrContext(GrBackendApi backend, int32_t id)
Robert Phillipsfde6fa02018-03-02 08:53:14 -050072 : fBackend(backend)
73 , fUniqueID(SK_InvalidGenID == id ? next_id() : id) {
halcanary96fcdcc2015-08-27 07:41:13 -070074 fResourceCache = nullptr;
75 fResourceProvider = nullptr;
Robert Phillips1afd4cd2018-01-08 13:40:32 -050076 fProxyProvider = nullptr;
Robert Phillipsc4039ea2018-03-01 11:36:45 -050077 fGlyphCache = nullptr;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000078}
79
Robert Phillipsfde6fa02018-03-02 08:53:14 -050080bool GrContext::initCommon(const GrContextOptions& options) {
Greg Danielb76a72a2017-07-13 15:07:54 -040081 ASSERT_SINGLE_OWNER
Robert Phillipsfde6fa02018-03-02 08:53:14 -050082 SkASSERT(fCaps); // needs to have been initialized by derived classes
83 SkASSERT(fThreadSafeProxy); // needs to have been initialized by derived classes
Robert Phillips88260b52018-01-19 12:56:09 -050084
85 if (fGpu) {
86 fCaps = fGpu->refCaps();
Brian Salomon8f8995a2018-10-15 14:32:15 -040087 fResourceCache = new GrResourceCache(fCaps.get(), &fSingleOwner, fUniqueID);
Robert Phillips4150eea2018-02-07 17:08:21 -050088 fResourceProvider = new GrResourceProvider(fGpu.get(), fResourceCache, &fSingleOwner,
89 options.fExplicitlyAllocateGPUResources);
Brian Salomon238069b2018-07-11 15:58:57 -040090 fProxyProvider =
91 new GrProxyProvider(fResourceProvider, fResourceCache, fCaps, &fSingleOwner);
92 } else {
93 fProxyProvider = new GrProxyProvider(this->uniqueID(), fCaps, &fSingleOwner);
Robert Phillips88260b52018-01-19 12:56:09 -050094 }
95
Robert Phillips88260b52018-01-19 12:56:09 -050096 if (fResourceCache) {
97 fResourceCache->setProxyProvider(fProxyProvider);
98 }
Robert Phillips1afd4cd2018-01-08 13:40:32 -050099
Brian Osman46da1cc2017-02-14 14:15:48 -0500100 fDisableGpuYUVConversion = options.fDisableGpuYUVConversion;
Brian Osman8a83ca42018-02-12 14:32:17 -0500101 fSharpenMipmappedTextures = options.fSharpenMipmappedTextures;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000102 fDidTestPMConversions = false;
103
bsalomon6b2552f2016-09-15 13:50:26 -0700104 GrPathRendererChain::Options prcOptions;
bsalomon39ef7fb2016-09-21 11:16:05 -0700105 prcOptions.fAllowPathMaskCaching = options.fAllowPathMaskCaching;
Brian Osman195c05b2017-08-30 15:14:04 -0400106#if GR_TEST_UTILS
csmartdalton008b9d82017-02-22 12:00:42 -0700107 prcOptions.fGpuPathRenderers = options.fGpuPathRenderers;
Brian Osman195c05b2017-08-30 15:14:04 -0400108#endif
Chris Daltonef125092018-06-26 18:16:47 -0600109 if (options.fDisableCoverageCountingPaths) {
110 prcOptions.fGpuPathRenderers &= ~GpuPathRenderers::kCoverageCounting;
111 }
Brian Osmanb350ae22017-08-29 16:15:39 -0400112 if (options.fDisableDistanceFieldPaths) {
Brian Osman195c05b2017-08-30 15:14:04 -0400113 prcOptions.fGpuPathRenderers &= ~GpuPathRenderers::kSmall;
Brian Osmanb350ae22017-08-29 16:15:39 -0400114 }
Brian Salomonaf597482017-11-07 16:23:34 -0500115
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500116 if (!fResourceCache) {
117 // DDL TODO: remove this crippling of the path renderer chain
118 // Disable the small path renderer bc of the proxies in the atlas. They need to be
119 // unified when the opLists are added back to the destination drawing manager.
120 prcOptions.fGpuPathRenderers &= ~GpuPathRenderers::kSmall;
Robert Phillips5ffcb4d2018-07-03 16:39:40 -0400121 prcOptions.fGpuPathRenderers &= ~GpuPathRenderers::kStencilAndCover;
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500122 }
123
Herb Derby26cbe512018-05-24 14:39:01 -0400124 GrTextContext::Options textContextOptions;
125 textContextOptions.fMaxDistanceFieldFontSize = options.fGlyphsAsPathsFontSize;
126 textContextOptions.fMinDistanceFieldFontSize = options.fMinDistanceFieldFontSize;
127 textContextOptions.fDistanceFieldVerticesAlwaysHaveW = false;
Brian Salomonb5086962017-12-13 10:59:33 -0500128#if SK_SUPPORT_ATLAS_TEXT
129 if (GrContextOptions::Enable::kYes == options.fDistanceFieldGlyphVerticesAlwaysHaveW) {
Herb Derby26cbe512018-05-24 14:39:01 -0400130 textContextOptions.fDistanceFieldVerticesAlwaysHaveW = true;
Brian Salomonb5086962017-12-13 10:59:33 -0500131 }
132#endif
Brian Salomonaf597482017-11-07 16:23:34 -0500133
Robert Phillips64ecdce2018-04-02 10:26:39 -0400134 bool explicitlyAllocatingResources = fResourceProvider
135 ? fResourceProvider->explicitlyAllocateGPUResources()
136 : false;
Herb Derby26cbe512018-05-24 14:39:01 -0400137 fDrawingManager.reset(new GrDrawingManager(this, prcOptions, textContextOptions,
Robert Phillips64ecdce2018-04-02 10:26:39 -0400138 &fSingleOwner, explicitlyAllocatingResources,
Robert Phillips46acf9d2018-10-09 09:31:40 -0400139 options.fSortRenderTargets,
140 options.fReduceOpListSplitting));
joshualitt7c3a2f82015-03-31 13:32:05 -0700141
Robert Phillipsaf4adef2018-03-07 11:59:37 -0500142 fGlyphCache = new GrGlyphCache(fCaps.get(), options.fGlyphCacheTextureMaximumBytes);
Robert Phillipsc4039ea2018-03-01 11:36:45 -0500143
Robert Phillips303cd582018-02-14 18:54:01 -0500144 fTextBlobCache.reset(new GrTextBlobCache(TextBlobCacheOverBudgetCB,
Herb Derbyb12175f2018-05-23 16:38:09 -0400145 this, this->uniqueID()));
Brian Salomon91a3e522017-06-23 10:58:19 -0400146
Robert Phillipsfde6fa02018-03-02 08:53:14 -0500147 // DDL TODO: we need to think through how the task group & persistent cache
148 // get passed on to/shared between all the DDLRecorders created with this context.
Brian Osman51279982017-08-23 10:12:00 -0400149 if (options.fExecutor) {
150 fTaskGroup = skstd::make_unique<SkTaskGroup>(*options.fExecutor);
151 }
152
Ethan Nicholasd1b2eec2017-11-01 15:45:43 -0400153 fPersistentCache = options.fPersistentCache;
154
Brian Salomon91a3e522017-06-23 10:58:19 -0400155 return true;
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000156}
157
bsalomon@google.com27847de2011-02-22 20:59:41 +0000158GrContext::~GrContext() {
joshualitt1de610a2016-01-06 08:26:09 -0800159 ASSERT_SINGLE_OWNER
160
Robert Phillips2e6feed2018-01-22 15:27:20 -0500161 if (fDrawingManager) {
162 fDrawingManager->cleanup();
163 }
halcanary385fe4d2015-08-26 13:07:48 -0700164 delete fResourceProvider;
165 delete fResourceCache;
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500166 delete fProxyProvider;
Robert Phillipsc4039ea2018-03-01 11:36:45 -0500167 delete fGlyphCache;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000168}
169
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400170//////////////////////////////////////////////////////////////////////////////
171
172GrContextThreadSafeProxy::GrContextThreadSafeProxy(sk_sp<const GrCaps> caps, uint32_t uniqueID,
Greg Danielbdf12ad2018-10-12 09:31:11 -0400173 GrBackendApi backend,
Ethan Nicholas00543112018-07-31 09:44:36 -0400174 const GrContextOptions& options,
175 sk_sp<GrSkSLFPFactoryCache> cache)
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400176 : fCaps(std::move(caps))
177 , fContextUniqueID(uniqueID)
178 , fBackend(backend)
Ethan Nicholas00543112018-07-31 09:44:36 -0400179 , fOptions(options)
180 , fFPFactoryCache(std::move(cache)) {}
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400181
Brian Salomon103d6f62018-05-11 11:19:22 -0400182GrContextThreadSafeProxy::~GrContextThreadSafeProxy() = default;
183
bungeman6bd52842016-10-27 09:30:08 -0700184sk_sp<GrContextThreadSafeProxy> GrContext::threadSafeProxy() {
bungeman6bd52842016-10-27 09:30:08 -0700185 return fThreadSafeProxy;
bsalomon41b952c2016-03-11 06:46:33 -0800186}
187
Robert Phillipsfc711a22018-02-13 17:03:00 -0500188SkSurfaceCharacterization GrContextThreadSafeProxy::createCharacterization(
189 size_t cacheMaxResourceBytes,
190 const SkImageInfo& ii, const GrBackendFormat& backendFormat,
191 int sampleCnt, GrSurfaceOrigin origin,
192 const SkSurfaceProps& surfaceProps,
Greg Daniela070ed72018-04-26 16:31:38 -0400193 bool isMipMapped, bool willUseGLFBO0) {
Robert Phillipsfc711a22018-02-13 17:03:00 -0500194 if (!backendFormat.isValid()) {
195 return SkSurfaceCharacterization(); // return an invalid characterization
196 }
197
Greg Danielbdf12ad2018-10-12 09:31:11 -0400198 if (GrBackendApi::kOpenGL != backendFormat.backend() && willUseGLFBO0) {
Greg Daniela070ed72018-04-26 16:31:38 -0400199 // The willUseGLFBO0 flags can only be used for a GL backend.
200 return SkSurfaceCharacterization(); // return an invalid characterization
201 }
202
Robert Phillipsfc711a22018-02-13 17:03:00 -0500203 if (!fCaps->mipMapSupport()) {
204 isMipMapped = false;
205 }
206
Brian Salomonf391d0f2018-12-14 09:18:50 -0500207 GrPixelConfig config = fCaps->getConfigFromBackendFormat(backendFormat, ii.colorType());
208 if (config == kUnknown_GrPixelConfig) {
Robert Phillipsfc711a22018-02-13 17:03:00 -0500209 return SkSurfaceCharacterization(); // return an invalid characterization
210 }
211
Robert Phillipsbe77a022018-04-03 17:17:05 -0400212 if (!SkSurface_Gpu::Valid(fCaps.get(), config, ii.colorSpace())) {
213 return SkSurfaceCharacterization(); // return an invalid characterization
214 }
215
Robert Phillips6b6fcc72018-03-30 13:57:00 -0400216 sampleCnt = fCaps->getRenderTargetSampleCount(sampleCnt, config);
217 if (!sampleCnt) {
218 return SkSurfaceCharacterization(); // return an invalid characterization
219 }
220
221 GrFSAAType FSAAType = GrFSAAType::kNone;
222 if (sampleCnt > 1) {
223 FSAAType = fCaps->usesMixedSamples() ? GrFSAAType::kMixedSamples : GrFSAAType::kUnifiedMSAA;
224 }
225
Robert Phillipsfc711a22018-02-13 17:03:00 -0500226 // This surface characterization factory assumes that the resulting characterization is
227 // textureable.
228 if (!fCaps->isConfigTexturable(config)) {
229 return SkSurfaceCharacterization(); // return an invalid characterization
230 }
231
232 return SkSurfaceCharacterization(sk_ref_sp<GrContextThreadSafeProxy>(this),
Robert Phillipsbe77a022018-04-03 17:17:05 -0400233 cacheMaxResourceBytes, ii,
234 origin, config, FSAAType, sampleCnt,
Robert Phillipsfc711a22018-02-13 17:03:00 -0500235 SkSurfaceCharacterization::Textureable(true),
236 SkSurfaceCharacterization::MipMapped(isMipMapped),
Greg Daniela070ed72018-04-26 16:31:38 -0400237 SkSurfaceCharacterization::UsesGLFBO0(willUseGLFBO0),
Greg Danielb46add82019-01-02 14:51:29 -0500238 SkSurfaceCharacterization::VulkanSecondaryCBCompatible(false),
Robert Phillipsbe77a022018-04-03 17:17:05 -0400239 surfaceProps);
Robert Phillipsfc711a22018-02-13 17:03:00 -0500240}
241
bsalomon2354f842014-07-28 13:48:36 -0700242void GrContext::abandonContext() {
joshualitt1de610a2016-01-06 08:26:09 -0800243 ASSERT_SINGLE_OWNER
244
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500245 fProxyProvider->abandon();
bsalomond309e7a2015-04-30 14:18:54 -0700246 fResourceProvider->abandon();
robertphillips0dfa62c2015-11-16 06:23:31 -0800247
248 // Need to abandon the drawing manager first so all the render targets
249 // will be released/forgotten before they too are abandoned.
250 fDrawingManager->abandon();
251
bsalomon@google.com205d4602011-04-25 12:43:45 +0000252 // abandon first to so destructors
253 // don't try to free the resources in the API.
bsalomon0ea80f42015-02-11 10:49:59 -0800254 fResourceCache->abandonAll();
bsalomonc8dc1f72014-08-21 13:02:13 -0700255
bsalomon6e2aad42016-04-01 11:54:31 -0700256 fGpu->disconnect(GrGpu::DisconnectType::kAbandon);
257
Robert Phillipsc4039ea2018-03-01 11:36:45 -0500258 fGlyphCache->freeAll();
bsalomon6e2aad42016-04-01 11:54:31 -0700259 fTextBlobCache->freeAll();
260}
261
Khushalc421ca12018-06-26 14:38:34 -0700262bool GrContext::abandoned() const {
263 ASSERT_SINGLE_OWNER
264 return fDrawingManager->wasAbandoned();
265}
266
bsalomon6e2aad42016-04-01 11:54:31 -0700267void GrContext::releaseResourcesAndAbandonContext() {
268 ASSERT_SINGLE_OWNER
269
Brian Salomon614c1a82018-12-19 15:42:06 -0500270 if (this->abandoned()) {
271 return;
272 }
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500273 fProxyProvider->abandon();
bsalomon6e2aad42016-04-01 11:54:31 -0700274 fResourceProvider->abandon();
275
276 // Need to abandon the drawing manager first so all the render targets
277 // will be released/forgotten before they too are abandoned.
278 fDrawingManager->abandon();
279
280 // Release all resources in the backend 3D API.
281 fResourceCache->releaseAll();
282
283 fGpu->disconnect(GrGpu::DisconnectType::kCleanup);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000284
Robert Phillipsc4039ea2018-03-01 11:36:45 -0500285 fGlyphCache->freeAll();
joshualitt26ffc002015-04-16 11:24:04 -0700286 fTextBlobCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000287}
288
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000289void GrContext::resetContext(uint32_t state) {
joshualitt1de610a2016-01-06 08:26:09 -0800290 ASSERT_SINGLE_OWNER
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000291 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000292}
293
294void GrContext::freeGpuResources() {
joshualitt1de610a2016-01-06 08:26:09 -0800295 ASSERT_SINGLE_OWNER
296
Robert Phillipsc4039ea2018-03-01 11:36:45 -0500297 fGlyphCache->freeAll();
robertphillips68737822015-10-29 12:12:21 -0700298
299 fDrawingManager->freeGpuResources();
bsalomon3033b9f2015-04-13 11:09:56 -0700300
301 fResourceCache->purgeAllUnlocked();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000302}
303
Robert Phillips6eba0632018-03-28 12:25:42 -0400304void GrContext::purgeUnlockedResources(bool scratchResourcesOnly) {
305 ASSERT_SINGLE_OWNER
306 fResourceCache->purgeUnlockedResources(scratchResourcesOnly);
307 fResourceCache->purgeAsNeeded();
308 fTextBlobCache->purgeStaleBlobs();
309}
310
Jim Van Verth76d917c2017-12-13 09:26:37 -0500311void GrContext::performDeferredCleanup(std::chrono::milliseconds msNotUsed) {
Brian Salomon5e150852017-03-22 14:53:13 -0400312 ASSERT_SINGLE_OWNER
Chris Dalton6c3879d2018-11-01 11:13:19 -0600313
314 auto purgeTime = GrStdSteadyClock::now() - msNotUsed;
315
Jim Van Verth76d917c2017-12-13 09:26:37 -0500316 fResourceCache->purgeAsNeeded();
Chris Dalton6c3879d2018-11-01 11:13:19 -0600317 fResourceCache->purgeResourcesNotUsedSince(purgeTime);
318
319 if (auto ccpr = fDrawingManager->getCoverageCountingPathRenderer()) {
Chris Dalton351e80c2019-01-06 22:51:00 -0700320 ccpr->purgeCacheEntriesOlderThan(fProxyProvider, purgeTime);
Chris Dalton6c3879d2018-11-01 11:13:19 -0600321 }
Jim Van Verth76d917c2017-12-13 09:26:37 -0500322
323 fTextBlobCache->purgeStaleBlobs();
Brian Salomon5e150852017-03-22 14:53:13 -0400324}
325
Derek Sollenberger5480a182017-05-25 16:43:59 -0400326void GrContext::purgeUnlockedResources(size_t bytesToPurge, bool preferScratchResources) {
327 ASSERT_SINGLE_OWNER
328 fResourceCache->purgeUnlockedResources(bytesToPurge, preferScratchResources);
329}
330
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000331void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
joshualitt1de610a2016-01-06 08:26:09 -0800332 ASSERT_SINGLE_OWNER
333
bsalomon71cb0c22014-11-14 12:10:14 -0800334 if (resourceCount) {
bsalomon0ea80f42015-02-11 10:49:59 -0800335 *resourceCount = fResourceCache->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800336 }
337 if (resourceBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800338 *resourceBytes = fResourceCache->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800339 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000340}
341
Derek Sollenbergeree479142017-05-24 11:41:33 -0400342size_t GrContext::getResourceCachePurgeableBytes() const {
343 ASSERT_SINGLE_OWNER
344 return fResourceCache->getPurgeableBytes();
345}
346
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000347////////////////////////////////////////////////////////////////////////////////
348
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400349int GrContext::maxTextureSize() const { return fCaps->maxTextureSize(); }
Brian Salomonf932a632018-04-05 12:46:09 -0400350
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400351int GrContext::maxRenderTargetSize() const { return fCaps->maxRenderTargetSize(); }
Brian Salomonf932a632018-04-05 12:46:09 -0400352
Brian Salomonbdecacf2018-02-02 20:32:49 -0500353bool GrContext::colorTypeSupportedAsImage(SkColorType colorType) const {
Brian Osman2b23c4b2018-06-01 12:25:08 -0400354 GrPixelConfig config = SkColorType2GrPixelConfig(colorType);
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400355 return fCaps->isConfigTexturable(config);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500356}
357
358int GrContext::maxSurfaceSampleCountForColorType(SkColorType colorType) const {
Brian Osman2b23c4b2018-06-01 12:25:08 -0400359 GrPixelConfig config = SkColorType2GrPixelConfig(colorType);
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400360 return fCaps->maxRenderTargetSampleCount(config);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500361}
362
363////////////////////////////////////////////////////////////////////////////////
364
joshualitt0db6dfa2015-04-10 07:01:30 -0700365void GrContext::TextBlobCacheOverBudgetCB(void* data) {
366 SkASSERT(data);
Brian Osman11052242016-10-27 14:47:55 -0400367 // TextBlobs are drawn at the SkGpuDevice level, therefore they cannot rely on
368 // GrRenderTargetContext to perform a necessary flush. The solution is to move drawText calls
369 // to below the GrContext level, but this is not trivial because they call drawPath on
370 // SkGpuDevice.
joshualitt0db6dfa2015-04-10 07:01:30 -0700371 GrContext* context = reinterpret_cast<GrContext*>(data);
372 context->flush();
373}
374
bsalomon@google.com27847de2011-02-22 20:59:41 +0000375////////////////////////////////////////////////////////////////////////////////
376
bsalomonb77a9072016-09-07 10:02:04 -0700377void GrContext::flush() {
joshualitt1de610a2016-01-06 08:26:09 -0800378 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700379 RETURN_IF_ABANDONED
Robert Phillips7ee385e2017-03-30 08:02:11 -0400380
381 fDrawingManager->flush(nullptr);
382}
383
Greg Daniel51316782017-08-02 15:10:09 +0000384GrSemaphoresSubmitted GrContext::flushAndSignalSemaphores(int numSemaphores,
385 GrBackendSemaphore signalSemaphores[]) {
386 ASSERT_SINGLE_OWNER
387 if (fDrawingManager->wasAbandoned()) { return GrSemaphoresSubmitted::kNo; }
388
389 return fDrawingManager->flush(nullptr, numSemaphores, signalSemaphores);
390}
391
Robert Phillips7ee385e2017-03-30 08:02:11 -0400392void GrContextPriv::flush(GrSurfaceProxy* proxy) {
393 ASSERT_SINGLE_OWNER_PRIV
394 RETURN_IF_ABANDONED_PRIV
395 ASSERT_OWNED_PROXY_PRIV(proxy);
396
397 fContext->fDrawingManager->flush(proxy);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000398}
399
Greg Daniela870b462019-01-08 15:49:46 -0500400////////////////////////////////////////////////////////////////////////////////
401
402void GrContext::storeVkPipelineCacheData() {
403 if (fGpu) {
404 fGpu->storeVkPipelineCacheData();
405 }
406}
407
408////////////////////////////////////////////////////////////////////////////////
409
Brian Salomonc320b152018-02-20 14:05:36 -0500410// TODO: This will be removed when GrSurfaceContexts are aware of their color types.
411// (skbug.com/6718)
Brian Osmand2ca59a2017-04-13 14:03:57 -0400412static bool valid_premul_config(GrPixelConfig config) {
Brian Salomonc320b152018-02-20 14:05:36 -0500413 switch (config) {
414 case kUnknown_GrPixelConfig: return false;
415 case kAlpha_8_GrPixelConfig: return false;
416 case kGray_8_GrPixelConfig: return false;
417 case kRGB_565_GrPixelConfig: return false;
418 case kRGBA_4444_GrPixelConfig: return true;
419 case kRGBA_8888_GrPixelConfig: return true;
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400420 case kRGB_888_GrPixelConfig: return false;
Jim Van Verth69e57852018-12-05 13:38:59 -0500421 case kRG_88_GrPixelConfig: return false;
Brian Salomonc320b152018-02-20 14:05:36 -0500422 case kBGRA_8888_GrPixelConfig: return true;
423 case kSRGBA_8888_GrPixelConfig: return true;
424 case kSBGRA_8888_GrPixelConfig: return true;
Brian Osman10fc6fd2018-03-02 11:01:10 -0500425 case kRGBA_1010102_GrPixelConfig: return true;
Brian Salomonc320b152018-02-20 14:05:36 -0500426 case kRGBA_float_GrPixelConfig: return true;
427 case kRG_float_GrPixelConfig: return false;
428 case kAlpha_half_GrPixelConfig: return false;
429 case kRGBA_half_GrPixelConfig: return true;
430 case kAlpha_8_as_Alpha_GrPixelConfig: return false;
431 case kAlpha_8_as_Red_GrPixelConfig: return false;
432 case kAlpha_half_as_Red_GrPixelConfig: return false;
433 case kGray_8_as_Lum_GrPixelConfig: return false;
434 case kGray_8_as_Red_GrPixelConfig: return false;
435 }
436 SK_ABORT("Invalid GrPixelConfig");
437 return false;
Brian Osmance425512017-03-22 14:37:50 -0400438}
439
Brian Salomonc320b152018-02-20 14:05:36 -0500440static bool valid_premul_color_type(GrColorType ct) {
441 switch (ct) {
Brian Osman10fc6fd2018-03-02 11:01:10 -0500442 case GrColorType::kUnknown: return false;
443 case GrColorType::kAlpha_8: return false;
444 case GrColorType::kRGB_565: return false;
445 case GrColorType::kABGR_4444: return true;
446 case GrColorType::kRGBA_8888: return true;
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400447 case GrColorType::kRGB_888x: return false;
Jim Van Verth69e57852018-12-05 13:38:59 -0500448 case GrColorType::kRG_88: return false;
Brian Osman10fc6fd2018-03-02 11:01:10 -0500449 case GrColorType::kBGRA_8888: return true;
450 case GrColorType::kRGBA_1010102: return true;
451 case GrColorType::kGray_8: return false;
452 case GrColorType::kAlpha_F16: return false;
453 case GrColorType::kRGBA_F16: return true;
454 case GrColorType::kRG_F32: return false;
455 case GrColorType::kRGBA_F32: return true;
Brian Salomonc320b152018-02-20 14:05:36 -0500456 }
457 SK_ABORT("Invalid GrColorType");
458 return false;
459}
460
461static bool valid_pixel_conversion(GrColorType cpuColorType, GrPixelConfig gpuConfig,
Brian Osmand2ca59a2017-04-13 14:03:57 -0400462 bool premulConversion) {
Brian Osmand2ca59a2017-04-13 14:03:57 -0400463 // We only allow premul <-> unpremul conversions for some formats
Brian Salomonc320b152018-02-20 14:05:36 -0500464 if (premulConversion &&
465 (!valid_premul_color_type(cpuColorType) || !valid_premul_config(gpuConfig))) {
Brian Osmand2ca59a2017-04-13 14:03:57 -0400466 return false;
467 }
Brian Osmand2ca59a2017-04-13 14:03:57 -0400468 return true;
469}
470
Brian Salomonc320b152018-02-20 14:05:36 -0500471bool GrContextPriv::writeSurfacePixels(GrSurfaceContext* dst, int left, int top, int width,
472 int height, GrColorType srcColorType,
473 SkColorSpace* srcColorSpace, const void* buffer,
474 size_t rowBytes, uint32_t pixelOpsFlags) {
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500475 ASSERT_SINGLE_OWNER_PRIV
476 RETURN_FALSE_IF_ABANDONED_PRIV
477 SkASSERT(dst);
478 SkASSERT(buffer);
479 ASSERT_OWNED_PROXY_PRIV(dst->asSurfaceProxy());
Brian Salomond494f6e2018-06-01 14:13:43 -0400480 GR_CREATE_TRACE_MARKER_CONTEXT("GrContextPriv", "writeSurfacePixels", fContext);
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500481
482 if (GrColorType::kUnknown == srcColorType) {
483 return false;
484 }
485
486 if (!dst->asSurfaceProxy()->instantiate(this->resourceProvider())) {
487 return false;
488 }
489
490 GrSurfaceProxy* dstProxy = dst->asSurfaceProxy();
Brian Salomonfd98c2c2018-07-31 17:25:29 -0400491 GrSurface* dstSurface = dstProxy->peekSurface();
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500492
493 if (!GrSurfacePriv::AdjustWritePixelParams(dstSurface->width(), dstSurface->height(),
494 GrColorTypeBytesPerPixel(srcColorType), &left, &top,
495 &width, &height, &buffer, &rowBytes)) {
496 return false;
497 }
498
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400499 // TODO: Make GrSurfaceContext know its alpha type and pass src buffer's alpha type.
500 bool premul = SkToBool(kUnpremul_PixelOpsFlag & pixelOpsFlags);
501
502 // For canvas2D putImageData performance we have a special code path for unpremul RGBA_8888 srcs
503 // that are premultiplied on the GPU. This is kept as narrow as possible for now.
Brian Salomon817847c2018-05-07 13:33:50 -0400504 bool canvas2DFastPath =
Greg Daniel4374e962018-09-28 15:09:47 -0400505 !fContext->contextPriv().caps()->avoidWritePixelsFastPath() &&
Brian Salomon817847c2018-05-07 13:33:50 -0400506 premul &&
Brian Osman34ec3742018-07-03 10:40:57 -0400507 !dst->colorSpaceInfo().colorSpace() &&
Brian Salomon817847c2018-05-07 13:33:50 -0400508 (srcColorType == GrColorType::kRGBA_8888 || srcColorType == GrColorType::kBGRA_8888) &&
509 SkToBool(dst->asRenderTargetContext()) &&
510 (dstProxy->config() == kRGBA_8888_GrPixelConfig ||
511 dstProxy->config() == kBGRA_8888_GrPixelConfig) &&
512 !(pixelOpsFlags & kDontFlush_PixelOpsFlag) &&
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400513 fContext->contextPriv().caps()->isConfigTexturable(kRGBA_8888_GrPixelConfig) &&
Brian Salomon817847c2018-05-07 13:33:50 -0400514 fContext->validPMUPMConversionExists();
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400515
Greg Daniel4065d452018-11-16 15:43:41 -0500516 const GrCaps* caps = this->caps();
517 if (!caps->surfaceSupportsWritePixels(dstSurface) ||
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400518 canvas2DFastPath) {
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400519 // We don't expect callers that are skipping flushes to require an intermediate draw.
520 SkASSERT(!(pixelOpsFlags & kDontFlush_PixelOpsFlag));
521 if (pixelOpsFlags & kDontFlush_PixelOpsFlag) {
522 return false;
523 }
524
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500525 GrSurfaceDesc desc;
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500526 desc.fWidth = width;
527 desc.fHeight = height;
528 desc.fSampleCnt = 1;
Greg Daniel4065d452018-11-16 15:43:41 -0500529
530 GrBackendFormat format;
531 if (canvas2DFastPath) {
532 desc.fConfig = kRGBA_8888_GrPixelConfig;
533 format =
534 fContext->contextPriv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
535 } else {
536 desc.fConfig = dstProxy->config();
537 format = dstProxy->backendFormat().makeTexture2D();
538 if (!format.isValid()) {
539 return false;
540 }
541 }
542
Brian Salomon2a4f9832018-03-03 22:43:43 -0500543 auto tempProxy = this->proxyProvider()->createProxy(
Greg Daniel4065d452018-11-16 15:43:41 -0500544 format, desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500545 if (!tempProxy) {
546 return false;
547 }
548 auto tempCtx = this->drawingManager()->makeTextureContext(
549 tempProxy, dst->colorSpaceInfo().refColorSpace());
550 if (!tempCtx) {
551 return false;
552 }
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400553 uint32_t flags = canvas2DFastPath ? 0 : pixelOpsFlags;
Brian Salomon817847c2018-05-07 13:33:50 -0400554 // In the fast path we always write the srcData to the temp context as though it were RGBA.
555 // When the data is really BGRA the write will cause the R and B channels to be swapped in
556 // the intermediate surface which gets corrected by a swizzle effect when drawing to the
557 // dst.
558 auto tmpColorType = canvas2DFastPath ? GrColorType::kRGBA_8888 : srcColorType;
Brian Salomond494f6e2018-06-01 14:13:43 -0400559 if (!this->writeSurfacePixels(tempCtx.get(), 0, 0, width, height, tmpColorType,
560 srcColorSpace, buffer, rowBytes, flags)) {
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500561 return false;
562 }
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400563 if (canvas2DFastPath) {
564 GrPaint paint;
565 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
Brian Salomon817847c2018-05-07 13:33:50 -0400566 auto fp = fContext->createUPMToPMEffect(
Brian Osman5ea96bf2018-10-02 14:58:05 -0400567 GrSimpleTextureEffect::Make(std::move(tempProxy), SkMatrix::I()));
Brian Salomon817847c2018-05-07 13:33:50 -0400568 if (srcColorType == GrColorType::kBGRA_8888) {
569 fp = GrFragmentProcessor::SwizzleOutput(std::move(fp), GrSwizzle::BGRA());
570 }
571 if (!fp) {
572 return false;
573 }
574 paint.addColorFragmentProcessor(std::move(fp));
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400575 dst->asRenderTargetContext()->fillRectToRect(
576 GrNoClip(), std::move(paint), GrAA::kNo, SkMatrix::I(),
577 SkRect::MakeXYWH(left, top, width, height), SkRect::MakeWH(width, height));
578 return true;
579 } else {
580 return dst->copy(tempProxy.get(), SkIRect::MakeWH(width, height), {left, top});
581 }
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500582 }
583
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500584 bool convert = premul;
585
586 if (!valid_pixel_conversion(srcColorType, dstProxy->config(), premul)) {
587 return false;
588 }
589
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400590 GrColorType allowedColorType = fContext->contextPriv().caps()->supportedWritePixelsColorType(
591 dstProxy->config(), srcColorType);
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500592 convert = convert || (srcColorType != allowedColorType);
593
594 if (!dst->colorSpaceInfo().colorSpace()) {
595 // "Legacy" mode - no color space conversions.
596 srcColorSpace = nullptr;
597 }
598 convert = convert || !SkColorSpace::Equals(srcColorSpace, dst->colorSpaceInfo().colorSpace());
599
600 std::unique_ptr<char[]> tempBuffer;
601 if (convert) {
602 auto srcSkColorType = GrColorTypeToSkColorType(srcColorType);
603 auto dstSkColorType = GrColorTypeToSkColorType(allowedColorType);
604 if (kUnknown_SkColorType == srcSkColorType || kUnknown_SkColorType == dstSkColorType) {
605 return false;
606 }
Brian Osman2091fbb2018-10-11 11:05:37 -0400607 auto srcAlphaType = SkColorTypeIsAlwaysOpaque(srcSkColorType)
608 ? kOpaque_SkAlphaType
609 : (premul ? kUnpremul_SkAlphaType : kPremul_SkAlphaType);
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500610 SkPixmap src(SkImageInfo::Make(width, height, srcSkColorType, srcAlphaType,
611 sk_ref_sp(srcColorSpace)),
612 buffer, rowBytes);
613 auto tempSrcII = SkImageInfo::Make(width, height, dstSkColorType, kPremul_SkAlphaType,
614 dst->colorSpaceInfo().refColorSpace());
615 auto size = tempSrcII.computeMinByteSize();
616 if (!size) {
617 return false;
618 }
619 tempBuffer.reset(new char[size]);
620 SkPixmap tempSrc(tempSrcII, tempBuffer.get(), tempSrcII.minRowBytes());
621 if (!src.readPixels(tempSrc)) {
622 return false;
623 }
624 srcColorType = allowedColorType;
625 buffer = tempSrc.addr();
626 rowBytes = tempSrc.rowBytes();
627 if (dstProxy->origin() == kBottomLeft_GrSurfaceOrigin) {
628 std::unique_ptr<char[]> row(new char[rowBytes]);
629 for (int y = 0; y < height / 2; ++y) {
630 memcpy(row.get(), tempSrc.addr(0, y), rowBytes);
631 memcpy(tempSrc.writable_addr(0, y), tempSrc.addr(0, height - 1 - y), rowBytes);
632 memcpy(tempSrc.writable_addr(0, height - 1 - y), row.get(), rowBytes);
633 }
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400634 top = dstSurface->height() - top - height;
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500635 }
636 } else if (dstProxy->origin() == kBottomLeft_GrSurfaceOrigin) {
637 size_t trimRowBytes = GrColorTypeBytesPerPixel(srcColorType) * width;
638 tempBuffer.reset(new char[trimRowBytes * height]);
639 char* dst = reinterpret_cast<char*>(tempBuffer.get()) + trimRowBytes * (height - 1);
640 const char* src = reinterpret_cast<const char*>(buffer);
641 for (int i = 0; i < height; ++i, src += rowBytes, dst -= trimRowBytes) {
642 memcpy(dst, src, trimRowBytes);
643 }
644 buffer = tempBuffer.get();
645 rowBytes = trimRowBytes;
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400646 top = dstSurface->height() - top - height;
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500647 }
648
649 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) && dstSurface->surfacePriv().hasPendingIO()) {
650 this->flush(nullptr); // MDB TODO: tighten this
651 }
652
653 return this->getGpu()->writePixels(dstSurface, left, top, width, height, srcColorType, buffer,
654 rowBytes);
655}
656
Brian Salomond494f6e2018-06-01 14:13:43 -0400657bool GrContextPriv::readSurfacePixels(GrSurfaceContext* src, int left, int top, int width,
658 int height, GrColorType dstColorType,
659 SkColorSpace* dstColorSpace, void* buffer, size_t rowBytes,
660 uint32_t pixelOpsFlags) {
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400661 ASSERT_SINGLE_OWNER_PRIV
662 RETURN_FALSE_IF_ABANDONED_PRIV
663 SkASSERT(src);
664 SkASSERT(buffer);
665 ASSERT_OWNED_PROXY_PRIV(src->asSurfaceProxy());
Brian Salomond494f6e2018-06-01 14:13:43 -0400666 GR_CREATE_TRACE_MARKER_CONTEXT("GrContextPriv", "readSurfacePixels", fContext);
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400667
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400668 SkASSERT(!(pixelOpsFlags & kDontFlush_PixelOpsFlag));
669 if (pixelOpsFlags & kDontFlush_PixelOpsFlag) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400670 return false;
671 }
672
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400673 // MDB TODO: delay this instantiation until later in the method
674 if (!src->asSurfaceProxy()->instantiate(this->resourceProvider())) {
675 return false;
676 }
677
678 GrSurfaceProxy* srcProxy = src->asSurfaceProxy();
Brian Salomonfd98c2c2018-07-31 17:25:29 -0400679 GrSurface* srcSurface = srcProxy->peekSurface();
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400680
681 if (!GrSurfacePriv::AdjustReadPixelParams(srcSurface->width(), srcSurface->height(),
682 GrColorTypeBytesPerPixel(dstColorType), &left, &top,
683 &width, &height, &buffer, &rowBytes)) {
684 return false;
685 }
686
687 // TODO: Make GrSurfaceContext know its alpha type and pass dst buffer's alpha type.
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400688 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & pixelOpsFlags);
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400689
690 if (!valid_pixel_conversion(dstColorType, srcProxy->config(), unpremul)) {
691 return false;
692 }
693
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400694 // This is the getImageData equivalent to the canvas2D putImageData fast path. We probably don't
695 // care so much about getImageData performance. However, in order to ensure putImageData/
696 // getImageData in "legacy" mode are round-trippable we use the GPU to do the complementary
Brian Salomond494f6e2018-06-01 14:13:43 -0400697 // unpremul step to writeSurfacePixels's premul step (which is determined empirically in
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400698 // fContext->vaildaPMUPMConversionExists()).
Brian Salomon817847c2018-05-07 13:33:50 -0400699 bool canvas2DFastPath =
700 unpremul &&
Brian Osman34ec3742018-07-03 10:40:57 -0400701 !src->colorSpaceInfo().colorSpace() &&
Brian Salomon817847c2018-05-07 13:33:50 -0400702 (GrColorType::kRGBA_8888 == dstColorType || GrColorType::kBGRA_8888 == dstColorType) &&
703 SkToBool(srcProxy->asTextureProxy()) &&
704 (srcProxy->config() == kRGBA_8888_GrPixelConfig ||
705 srcProxy->config() == kBGRA_8888_GrPixelConfig) &&
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400706 fContext->contextPriv().caps()->isConfigRenderable(kRGBA_8888_GrPixelConfig) &&
Brian Salomon817847c2018-05-07 13:33:50 -0400707 fContext->validPMUPMConversionExists();
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400708
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400709 if (!fContext->contextPriv().caps()->surfaceSupportsReadPixels(srcSurface) ||
710 canvas2DFastPath) {
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400711 GrSurfaceDesc desc;
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400712 desc.fFlags = canvas2DFastPath ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
713 desc.fConfig = canvas2DFastPath ? kRGBA_8888_GrPixelConfig : srcProxy->config();
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400714 desc.fWidth = width;
715 desc.fHeight = height;
716 desc.fSampleCnt = 1;
Greg Daniel4065d452018-11-16 15:43:41 -0500717
718 GrBackendFormat format;
719 if (canvas2DFastPath) {
720 desc.fFlags = kRenderTarget_GrSurfaceFlag;
721 desc.fConfig = kRGBA_8888_GrPixelConfig;
722 format = this->caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
723 } else {
724 desc.fFlags = kNone_GrSurfaceFlags;
725 desc.fConfig = srcProxy->config();
726 format = srcProxy->backendFormat().makeTexture2D();
727 if (!format.isValid()) {
728 return false;
729 }
730 }
731
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400732 auto tempProxy = this->proxyProvider()->createProxy(
Greg Daniel4065d452018-11-16 15:43:41 -0500733 format, desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400734 if (!tempProxy) {
735 return false;
736 }
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400737 sk_sp<GrSurfaceContext> tempCtx;
738 if (canvas2DFastPath) {
739 tempCtx = this->drawingManager()->makeRenderTargetContext(std::move(tempProxy), nullptr,
740 nullptr);
Greg Daniel42314012018-04-23 10:57:37 -0400741 SkASSERT(tempCtx->asRenderTargetContext());
742 tempCtx->asRenderTargetContext()->discard();
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400743 } else {
744 tempCtx = this->drawingManager()->makeTextureContext(
745 std::move(tempProxy), src->colorSpaceInfo().refColorSpace());
746 }
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400747 if (!tempCtx) {
748 return false;
749 }
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400750 if (canvas2DFastPath) {
751 GrPaint paint;
752 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
Brian Salomon817847c2018-05-07 13:33:50 -0400753 auto fp = fContext->createPMToUPMEffect(
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400754 GrSimpleTextureEffect::Make(sk_ref_sp(srcProxy->asTextureProxy()),
Brian Osman5ea96bf2018-10-02 14:58:05 -0400755 SkMatrix::I()));
Brian Salomon817847c2018-05-07 13:33:50 -0400756 if (dstColorType == GrColorType::kBGRA_8888) {
757 fp = GrFragmentProcessor::SwizzleOutput(std::move(fp), GrSwizzle::BGRA());
758 dstColorType = GrColorType::kRGBA_8888;
759 }
760 if (!fp) {
761 return false;
762 }
763 paint.addColorFragmentProcessor(std::move(fp));
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400764 tempCtx->asRenderTargetContext()->fillRectToRect(
765 GrNoClip(), std::move(paint), GrAA::kNo, SkMatrix::I(),
766 SkRect::MakeWH(width, height), SkRect::MakeXYWH(left, top, width, height));
767 } else if (!tempCtx->copy(srcProxy, SkIRect::MakeXYWH(left, top, width, height), {0, 0})) {
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400768 return false;
769 }
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400770 uint32_t flags = canvas2DFastPath ? 0 : pixelOpsFlags;
Brian Salomond494f6e2018-06-01 14:13:43 -0400771 return this->readSurfacePixels(tempCtx.get(), 0, 0, width, height, dstColorType,
772 dstColorSpace, buffer, rowBytes, flags);
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400773 }
774
Brian Salomonf3c4e0c2018-04-06 20:32:06 -0400775 bool convert = unpremul;
776
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400777 bool flip = srcProxy->origin() == kBottomLeft_GrSurfaceOrigin;
778 if (flip) {
779 top = srcSurface->height() - top - height;
780 }
781
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400782 GrColorType allowedColorType = fContext->contextPriv().caps()->supportedReadPixelsColorType(
783 srcProxy->config(), dstColorType);
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400784 convert = convert || (dstColorType != allowedColorType);
785
786 if (!src->colorSpaceInfo().colorSpace()) {
787 // "Legacy" mode - no color space conversions.
788 dstColorSpace = nullptr;
789 }
790 convert = convert || !SkColorSpace::Equals(dstColorSpace, src->colorSpaceInfo().colorSpace());
791
792 SkAutoPixmapStorage tempPixmap;
793 SkPixmap finalPixmap;
794 if (convert) {
795 SkColorType srcSkColorType = GrColorTypeToSkColorType(allowedColorType);
796 SkColorType dstSkColorType = GrColorTypeToSkColorType(dstColorType);
Brian Osman2091fbb2018-10-11 11:05:37 -0400797 bool srcAlwaysOpaque = SkColorTypeIsAlwaysOpaque(srcSkColorType);
798 bool dstAlwaysOpaque = SkColorTypeIsAlwaysOpaque(dstSkColorType);
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400799 if (kUnknown_SkColorType == srcSkColorType || kUnknown_SkColorType == dstSkColorType) {
800 return false;
801 }
Brian Osman2091fbb2018-10-11 11:05:37 -0400802 auto tempAT = srcAlwaysOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400803 auto tempII = SkImageInfo::Make(width, height, srcSkColorType, tempAT,
804 src->colorSpaceInfo().refColorSpace());
Brian Osman2091fbb2018-10-11 11:05:37 -0400805 SkASSERT(!unpremul || !dstAlwaysOpaque);
806 auto finalAT = (srcAlwaysOpaque || dstAlwaysOpaque)
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400807 ? kOpaque_SkAlphaType
808 : unpremul ? kUnpremul_SkAlphaType : kPremul_SkAlphaType;
809 auto finalII =
810 SkImageInfo::Make(width, height, dstSkColorType, finalAT, sk_ref_sp(dstColorSpace));
811 if (!SkImageInfoValidConversion(finalII, tempII)) {
812 return false;
813 }
Brian Salomon6196fc12018-07-12 16:39:23 -0400814 if (!tempPixmap.tryAlloc(tempII)) {
815 return false;
816 }
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400817 finalPixmap.reset(finalII, buffer, rowBytes);
818 buffer = tempPixmap.writable_addr();
819 rowBytes = tempPixmap.rowBytes();
Brian Salomon3d945e82018-05-14 14:54:06 -0400820 // Chrome msan bots require this.
821 sk_bzero(buffer, tempPixmap.computeByteSize());
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400822 }
823
824 if (srcSurface->surfacePriv().hasPendingWrite()) {
825 this->flush(nullptr); // MDB TODO: tighten this
826 }
827
828 if (!fContext->fGpu->readPixels(srcSurface, left, top, width, height, allowedColorType, buffer,
829 rowBytes)) {
830 return false;
831 }
832
833 if (flip) {
834 size_t trimRowBytes = GrColorTypeBytesPerPixel(allowedColorType) * width;
835 std::unique_ptr<char[]> row(new char[trimRowBytes]);
836 char* upper = reinterpret_cast<char*>(buffer);
837 char* lower = reinterpret_cast<char*>(buffer) + (height - 1) * rowBytes;
838 for (int y = 0; y < height / 2; ++y, upper += rowBytes, lower -= rowBytes) {
839 memcpy(row.get(), upper, trimRowBytes);
840 memcpy(upper, lower, trimRowBytes);
841 memcpy(lower, row.get(), trimRowBytes);
842 }
843 }
844 if (convert) {
845 if (!tempPixmap.readPixels(finalPixmap)) {
846 return false;
847 }
848 }
849 return true;
850}
851
Robert Phillips7ee385e2017-03-30 08:02:11 -0400852void GrContextPriv::prepareSurfaceForExternalIO(GrSurfaceProxy* proxy) {
853 ASSERT_SINGLE_OWNER_PRIV
854 RETURN_IF_ABANDONED_PRIV
855 SkASSERT(proxy);
856 ASSERT_OWNED_PROXY_PRIV(proxy);
Greg Daniel51316782017-08-02 15:10:09 +0000857 fContext->fDrawingManager->prepareSurfaceForExternalIO(proxy, 0, nullptr);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000858}
859
Robert Phillips7ee385e2017-03-30 08:02:11 -0400860void GrContextPriv::flushSurfaceWrites(GrSurfaceProxy* proxy) {
861 ASSERT_SINGLE_OWNER_PRIV
862 RETURN_IF_ABANDONED_PRIV
863 SkASSERT(proxy);
864 ASSERT_OWNED_PROXY_PRIV(proxy);
865 if (proxy->priv().hasPendingWrite()) {
866 this->flush(proxy);
bsalomonf80bfed2014-10-07 05:56:02 -0700867 }
868}
869
Robert Phillips7ee385e2017-03-30 08:02:11 -0400870void GrContextPriv::flushSurfaceIO(GrSurfaceProxy* proxy) {
871 ASSERT_SINGLE_OWNER_PRIV
872 RETURN_IF_ABANDONED_PRIV
873 SkASSERT(proxy);
874 ASSERT_OWNED_PROXY_PRIV(proxy);
875 if (proxy->priv().hasPendingIO()) {
876 this->flush(proxy);
ajuma95243eb2016-08-24 08:19:02 -0700877 }
878}
879
bsalomon@google.com27847de2011-02-22 20:59:41 +0000880////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000881
Robert Phillipsc994a932018-06-19 13:09:54 -0400882sk_sp<GrOpMemoryPool> GrContextPriv::refOpMemoryPool() {
883 if (!fContext->fOpMemoryPool) {
884 // DDL TODO: should the size of the memory pool be decreased in DDL mode? CPU-side memory
885 // consumed in DDL mode vs. normal mode for a single skp might be a good metric of wasted
886 // memory.
887 fContext->fOpMemoryPool = sk_sp<GrOpMemoryPool>(new GrOpMemoryPool(16384, 16384));
888 }
889
890 SkASSERT(fContext->fOpMemoryPool);
891 return fContext->fOpMemoryPool;
892}
893
894GrOpMemoryPool* GrContextPriv::opMemoryPool() {
895 return this->refOpMemoryPool().get();
896}
897
Robert Phillips2c862492017-01-18 10:08:39 -0500898sk_sp<GrSurfaceContext> GrContextPriv::makeWrappedSurfaceContext(sk_sp<GrSurfaceProxy> proxy,
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500899 sk_sp<SkColorSpace> colorSpace,
900 const SkSurfaceProps* props) {
Brian Osman45580d32016-11-23 09:37:01 -0500901 ASSERT_SINGLE_OWNER_PRIV
902
Brian Osman45580d32016-11-23 09:37:01 -0500903 if (proxy->asRenderTargetProxy()) {
Robert Phillips2c862492017-01-18 10:08:39 -0500904 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500905 std::move(colorSpace), props);
Brian Osman45580d32016-11-23 09:37:01 -0500906 } else {
907 SkASSERT(proxy->asTextureProxy());
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500908 SkASSERT(!props);
Robert Phillips2c862492017-01-18 10:08:39 -0500909 return this->drawingManager()->makeTextureContext(std::move(proxy), std::move(colorSpace));
Brian Osman45580d32016-11-23 09:37:01 -0500910 }
911}
912
Greg Daniel4065d452018-11-16 15:43:41 -0500913sk_sp<GrSurfaceContext> GrContextPriv::makeDeferredSurfaceContext(const GrBackendFormat& format,
914 const GrSurfaceDesc& dstDesc,
Brian Salomon2a4f9832018-03-03 22:43:43 -0500915 GrSurfaceOrigin origin,
Greg Daniel65c7f662017-10-30 13:39:09 -0400916 GrMipMapped mipMapped,
Robert Phillipse2f7d182016-12-15 09:23:05 -0500917 SkBackingFit fit,
Brian Salomon366093f2018-02-13 09:25:22 -0500918 SkBudgeted isDstBudgeted,
919 sk_sp<SkColorSpace> colorSpace,
920 const SkSurfaceProps* props) {
Greg Daniel65c7f662017-10-30 13:39:09 -0400921 sk_sp<GrTextureProxy> proxy;
922 if (GrMipMapped::kNo == mipMapped) {
Greg Daniel4065d452018-11-16 15:43:41 -0500923 proxy = this->proxyProvider()->createProxy(format, dstDesc, origin, fit, isDstBudgeted);
Greg Daniel65c7f662017-10-30 13:39:09 -0400924 } else {
925 SkASSERT(SkBackingFit::kExact == fit);
Greg Daniel4065d452018-11-16 15:43:41 -0500926 proxy = this->proxyProvider()->createMipMapProxy(format, dstDesc, origin, isDstBudgeted);
Greg Daniel65c7f662017-10-30 13:39:09 -0400927 }
Robert Phillips77b3f322017-01-31 18:24:12 -0500928 if (!proxy) {
929 return nullptr;
930 }
Robert Phillipse2f7d182016-12-15 09:23:05 -0500931
Greg Daniel55fa6472018-03-16 16:13:10 -0400932 sk_sp<GrSurfaceContext> sContext = this->makeWrappedSurfaceContext(std::move(proxy),
933 std::move(colorSpace),
934 props);
935 if (sContext && sContext->asRenderTargetContext()) {
936 sContext->asRenderTargetContext()->discard();
937 }
938
939 return sContext;
Robert Phillipse2f7d182016-12-15 09:23:05 -0500940}
941
Brian Salomond17f6582017-07-19 18:28:58 -0400942sk_sp<GrTextureContext> GrContextPriv::makeBackendTextureContext(const GrBackendTexture& tex,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000943 GrSurfaceOrigin origin,
Brian Osmanc1e37052017-03-09 14:19:20 -0500944 sk_sp<SkColorSpace> colorSpace) {
Robert Phillips26caf892017-01-27 10:58:31 -0500945 ASSERT_SINGLE_OWNER_PRIV
946
Brian Salomonc67c31c2018-12-06 10:00:03 -0500947 sk_sp<GrSurfaceProxy> proxy = this->proxyProvider()->wrapBackendTexture(
948 tex, origin, kBorrow_GrWrapOwnership, kRW_GrIOType);
Robert Phillips77b3f322017-01-31 18:24:12 -0500949 if (!proxy) {
950 return nullptr;
951 }
Robert Phillips26caf892017-01-27 10:58:31 -0500952
Brian Salomond17f6582017-07-19 18:28:58 -0400953 return this->drawingManager()->makeTextureContext(std::move(proxy), std::move(colorSpace));
Robert Phillips26caf892017-01-27 10:58:31 -0500954}
955
Brian Osman11052242016-10-27 14:47:55 -0400956sk_sp<GrRenderTargetContext> GrContextPriv::makeBackendTextureRenderTargetContext(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000957 const GrBackendTexture& tex,
958 GrSurfaceOrigin origin,
959 int sampleCnt,
Brian Osman11052242016-10-27 14:47:55 -0400960 sk_sp<SkColorSpace> colorSpace,
Brian Osmanc1e37052017-03-09 14:19:20 -0500961 const SkSurfaceProps* props) {
robertphillips4fd74ae2016-08-03 14:26:53 -0700962 ASSERT_SINGLE_OWNER_PRIV
Brian Salomonbdecacf2018-02-02 20:32:49 -0500963 SkASSERT(sampleCnt > 0);
robertphillips4fd74ae2016-08-03 14:26:53 -0700964
Brian Salomon7578f3e2018-03-07 14:39:54 -0500965 sk_sp<GrTextureProxy> proxy(
966 this->proxyProvider()->wrapRenderableBackendTexture(tex, origin, sampleCnt));
Robert Phillips77b3f322017-01-31 18:24:12 -0500967 if (!proxy) {
968 return nullptr;
969 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400970
Robert Phillips37430132016-11-09 06:50:43 -0500971 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Brian Osman11052242016-10-27 14:47:55 -0400972 std::move(colorSpace), props);
robertphillips4fd74ae2016-08-03 14:26:53 -0700973}
974
Brian Osman11052242016-10-27 14:47:55 -0400975sk_sp<GrRenderTargetContext> GrContextPriv::makeBackendRenderTargetRenderTargetContext(
Greg Danielbcf612b2017-05-01 13:50:58 +0000976 const GrBackendRenderTarget& backendRT,
977 GrSurfaceOrigin origin,
robertphillips4fd74ae2016-08-03 14:26:53 -0700978 sk_sp<SkColorSpace> colorSpace,
979 const SkSurfaceProps* surfaceProps) {
980 ASSERT_SINGLE_OWNER_PRIV
981
Brian Salomon7578f3e2018-03-07 14:39:54 -0500982 sk_sp<GrSurfaceProxy> proxy = this->proxyProvider()->wrapBackendRenderTarget(backendRT, origin);
Robert Phillips77b3f322017-01-31 18:24:12 -0500983 if (!proxy) {
984 return nullptr;
985 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400986
Robert Phillips37430132016-11-09 06:50:43 -0500987 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400988 std::move(colorSpace),
Brian Osman11052242016-10-27 14:47:55 -0400989 surfaceProps);
robertphillips4fd74ae2016-08-03 14:26:53 -0700990}
991
Brian Osman11052242016-10-27 14:47:55 -0400992sk_sp<GrRenderTargetContext> GrContextPriv::makeBackendTextureAsRenderTargetRenderTargetContext(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000993 const GrBackendTexture& tex,
994 GrSurfaceOrigin origin,
995 int sampleCnt,
robertphillips4fd74ae2016-08-03 14:26:53 -0700996 sk_sp<SkColorSpace> colorSpace,
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500997 const SkSurfaceProps* props) {
robertphillips4fd74ae2016-08-03 14:26:53 -0700998 ASSERT_SINGLE_OWNER_PRIV
Brian Salomonbdecacf2018-02-02 20:32:49 -0500999 SkASSERT(sampleCnt > 0);
Brian Salomon7578f3e2018-03-07 14:39:54 -05001000 sk_sp<GrSurfaceProxy> proxy(
1001 this->proxyProvider()->wrapBackendTextureAsRenderTarget(tex, origin, sampleCnt));
Robert Phillips77b3f322017-01-31 18:24:12 -05001002 if (!proxy) {
1003 return nullptr;
1004 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001005
Robert Phillips37430132016-11-09 06:50:43 -05001006 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001007 std::move(colorSpace),
Robert Phillips0bd24dc2018-01-16 08:06:32 -05001008 props);
robertphillips77a2e522015-10-17 07:43:27 -07001009}
1010
Greg Danielb46add82019-01-02 14:51:29 -05001011sk_sp<GrRenderTargetContext> GrContextPriv::makeVulkanSecondaryCBRenderTargetContext(
1012 const SkImageInfo& imageInfo, const GrVkDrawableInfo& vkInfo, const SkSurfaceProps* props) {
1013 ASSERT_SINGLE_OWNER_PRIV
1014 sk_sp<GrSurfaceProxy> proxy(
1015 this->proxyProvider()->wrapVulkanSecondaryCBAsRenderTarget(imageInfo, vkInfo));
1016 if (!proxy) {
1017 return nullptr;
1018 }
1019
1020 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
1021 imageInfo.refColorSpace(),
1022 props);
1023}
1024
Chris Daltonfe199b72017-05-05 11:26:15 -04001025void GrContextPriv::addOnFlushCallbackObject(GrOnFlushCallbackObject* onFlushCBObject) {
1026 fContext->fDrawingManager->addOnFlushCallbackObject(onFlushCBObject);
Robert Phillipseb35f4d2017-03-21 07:56:47 -04001027}
1028
Robert Phillips62000362018-02-01 09:10:04 -05001029void GrContextPriv::moveOpListsToDDL(SkDeferredDisplayList* ddl) {
1030 fContext->fDrawingManager->moveOpListsToDDL(ddl);
1031}
1032
1033void GrContextPriv::copyOpListsFromDDL(const SkDeferredDisplayList* ddl,
1034 GrRenderTargetProxy* newDest) {
1035 fContext->fDrawingManager->copyOpListsFromDDL(ddl, newDest);
1036}
1037
robertphillips48fde9c2016-09-06 05:20:20 -07001038static inline GrPixelConfig GrPixelConfigFallback(GrPixelConfig config) {
Brian Osman78f20e02017-01-12 10:28:01 -05001039 switch (config) {
1040 case kAlpha_8_GrPixelConfig:
Greg Daniel93b4ddd2018-04-16 16:16:47 -04001041 case kAlpha_8_as_Alpha_GrPixelConfig:
1042 case kAlpha_8_as_Red_GrPixelConfig:
Brian Osman78f20e02017-01-12 10:28:01 -05001043 case kRGB_565_GrPixelConfig:
1044 case kRGBA_4444_GrPixelConfig:
1045 case kBGRA_8888_GrPixelConfig:
Brian Osman10fc6fd2018-03-02 11:01:10 -05001046 case kRGBA_1010102_GrPixelConfig:
Brian Osman9c111352018-10-16 10:18:26 -04001047 case kRGBA_half_GrPixelConfig:
Brian Osman78f20e02017-01-12 10:28:01 -05001048 return kRGBA_8888_GrPixelConfig;
1049 case kSBGRA_8888_GrPixelConfig:
1050 return kSRGBA_8888_GrPixelConfig;
1051 case kAlpha_half_GrPixelConfig:
Greg Daniel93b4ddd2018-04-16 16:16:47 -04001052 case kAlpha_half_as_Red_GrPixelConfig:
Brian Osman78f20e02017-01-12 10:28:01 -05001053 return kRGBA_half_GrPixelConfig;
Greg Daniel93b4ddd2018-04-16 16:16:47 -04001054 case kGray_8_GrPixelConfig:
1055 case kGray_8_as_Lum_GrPixelConfig:
1056 case kGray_8_as_Red_GrPixelConfig:
1057 return kRGB_888_GrPixelConfig;
Brian Osman78f20e02017-01-12 10:28:01 -05001058 default:
1059 return kUnknown_GrPixelConfig;
1060 }
robertphillips48fde9c2016-09-06 05:20:20 -07001061}
1062
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001063sk_sp<GrRenderTargetContext> GrContextPriv::makeDeferredRenderTargetContextWithFallback(
Greg Daniel4065d452018-11-16 15:43:41 -05001064 const GrBackendFormat& format,
robertphillipsd728f0c2016-11-21 11:05:03 -08001065 SkBackingFit fit,
1066 int width, int height,
1067 GrPixelConfig config,
1068 sk_sp<SkColorSpace> colorSpace,
1069 int sampleCnt,
Greg Daniel45d63032017-10-30 13:41:26 -04001070 GrMipMapped mipMapped,
robertphillipsd728f0c2016-11-21 11:05:03 -08001071 GrSurfaceOrigin origin,
1072 const SkSurfaceProps* surfaceProps,
1073 SkBudgeted budgeted) {
Greg Daniel4065d452018-11-16 15:43:41 -05001074 GrBackendFormat localFormat = format;
Brian Salomonbdecacf2018-02-02 20:32:49 -05001075 SkASSERT(sampleCnt > 0);
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001076 if (0 == fContext->contextPriv().caps()->getRenderTargetSampleCount(sampleCnt, config)) {
robertphillipsd728f0c2016-11-21 11:05:03 -08001077 config = GrPixelConfigFallback(config);
Greg Daniel4065d452018-11-16 15:43:41 -05001078 // TODO: First we should be checking the getRenderTargetSampleCount from the GrBackendFormat
1079 // and not GrPixelConfig. Besides that, we should implement the fallback in the caps, but
1080 // for now we just convert the fallback pixel config to an SkColorType and then get the
1081 // GrBackendFormat from that.
1082 SkColorType colorType;
1083 if (!GrPixelConfigToColorType(config, &colorType)) {
1084 return nullptr;
1085 }
1086 localFormat = fContext->fCaps->getBackendFormatFromColorType(colorType);
robertphillipsd728f0c2016-11-21 11:05:03 -08001087 }
1088
Greg Daniel4065d452018-11-16 15:43:41 -05001089 return this->makeDeferredRenderTargetContext(localFormat, fit, width, height, config,
1090 std::move(colorSpace), sampleCnt, mipMapped,
1091 origin, surfaceProps, budgeted);
robertphillipsd728f0c2016-11-21 11:05:03 -08001092}
1093
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001094sk_sp<GrRenderTargetContext> GrContextPriv::makeDeferredRenderTargetContext(
Greg Daniel4065d452018-11-16 15:43:41 -05001095 const GrBackendFormat& format,
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001096 SkBackingFit fit,
1097 int width, int height,
1098 GrPixelConfig config,
1099 sk_sp<SkColorSpace> colorSpace,
1100 int sampleCnt,
Greg Daniel45d63032017-10-30 13:41:26 -04001101 GrMipMapped mipMapped,
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001102 GrSurfaceOrigin origin,
1103 const SkSurfaceProps* surfaceProps,
1104 SkBudgeted budgeted) {
Brian Salomonbdecacf2018-02-02 20:32:49 -05001105 SkASSERT(sampleCnt > 0);
Khushalc421ca12018-06-26 14:38:34 -07001106 if (fContext->abandoned()) {
Brian Salomon79e4d1b2017-07-13 11:17:11 -04001107 return nullptr;
1108 }
1109
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001110 GrSurfaceDesc desc;
1111 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001112 desc.fWidth = width;
1113 desc.fHeight = height;
1114 desc.fConfig = config;
1115 desc.fSampleCnt = sampleCnt;
1116
Greg Daniele1da1d92017-10-06 15:59:27 -04001117 sk_sp<GrTextureProxy> rtp;
Greg Daniel45d63032017-10-30 13:41:26 -04001118 if (GrMipMapped::kNo == mipMapped) {
Greg Daniel4065d452018-11-16 15:43:41 -05001119 rtp = fContext->fProxyProvider->createProxy(format, desc, origin, fit, budgeted);
Greg Daniele1da1d92017-10-06 15:59:27 -04001120 } else {
Greg Daniel4065d452018-11-16 15:43:41 -05001121 rtp = fContext->fProxyProvider->createMipMapProxy(format, desc, origin, budgeted);
Greg Daniele1da1d92017-10-06 15:59:27 -04001122 }
Robert Phillips08c5ec72017-01-30 12:26:47 -05001123 if (!rtp) {
1124 return nullptr;
1125 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001126
Robert Phillips1119dc32017-04-11 12:54:57 -04001127 sk_sp<GrRenderTargetContext> renderTargetContext(
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001128 fContext->fDrawingManager->makeRenderTargetContext(std::move(rtp),
1129 std::move(colorSpace),
1130 surfaceProps));
Robert Phillips1119dc32017-04-11 12:54:57 -04001131 if (!renderTargetContext) {
1132 return nullptr;
1133 }
1134
1135 renderTargetContext->discard();
1136
1137 return renderTargetContext;
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001138}
1139
Brian Salomonaff329b2017-08-11 09:40:37 -04001140std::unique_ptr<GrFragmentProcessor> GrContext::createPMToUPMEffect(
Brian Osman5ea96bf2018-10-02 14:58:05 -04001141 std::unique_ptr<GrFragmentProcessor> fp) {
Robert Phillips757914d2017-01-25 15:48:30 -05001142 ASSERT_SINGLE_OWNER
Brian Osman5ea96bf2018-10-02 14:58:05 -04001143 // We should have already called this->validPMUPMConversionExists() in this case
1144 SkASSERT(fDidTestPMConversions);
1145 // ...and it should have succeeded
1146 SkASSERT(this->validPMUPMConversionExists());
Brian Osman409e74f2017-04-17 11:48:28 -04001147
Brian Osman5ea96bf2018-10-02 14:58:05 -04001148 return GrConfigConversionEffect::Make(std::move(fp), PMConversion::kToUnpremul);
Robert Phillips757914d2017-01-25 15:48:30 -05001149}
1150
Brian Salomonaff329b2017-08-11 09:40:37 -04001151std::unique_ptr<GrFragmentProcessor> GrContext::createUPMToPMEffect(
Brian Osman5ea96bf2018-10-02 14:58:05 -04001152 std::unique_ptr<GrFragmentProcessor> fp) {
joshualitt1de610a2016-01-06 08:26:09 -08001153 ASSERT_SINGLE_OWNER
Brian Osman5ea96bf2018-10-02 14:58:05 -04001154 // We should have already called this->validPMUPMConversionExists() in this case
1155 SkASSERT(fDidTestPMConversions);
1156 // ...and it should have succeeded
1157 SkASSERT(this->validPMUPMConversionExists());
Brian Osman409e74f2017-04-17 11:48:28 -04001158
Brian Osman5ea96bf2018-10-02 14:58:05 -04001159 return GrConfigConversionEffect::Make(std::move(fp), PMConversion::kToPremul);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001160}
1161
Brian Osman409e74f2017-04-17 11:48:28 -04001162bool GrContext::validPMUPMConversionExists() {
joshualitt1de610a2016-01-06 08:26:09 -08001163 ASSERT_SINGLE_OWNER
Brian Osman409e74f2017-04-17 11:48:28 -04001164 if (!fDidTestPMConversions) {
Brian Osman28804f32017-04-20 10:24:36 -04001165 fPMUPMConversionsRoundTrip = GrConfigConversionEffect::TestForPreservingPMConversions(this);
Brian Osman409e74f2017-04-17 11:48:28 -04001166 fDidTestPMConversions = true;
1167 }
1168
bsalomon636e8022015-07-29 06:08:46 -07001169 // The PM<->UPM tests fail or succeed together so we only need to check one.
Brian Osman28804f32017-04-20 10:24:36 -04001170 return fPMUPMConversionsRoundTrip;
bsalomon636e8022015-07-29 06:08:46 -07001171}
1172
Khushal3e7548c2018-05-23 15:45:01 -07001173bool GrContext::supportsDistanceFieldText() const {
1174 return fCaps->shaderCaps()->supportsDistanceFieldText();
1175}
1176
bsalomon37f9a262015-02-02 13:00:10 -08001177//////////////////////////////////////////////////////////////////////////////
1178
Robert Phillipsfc711a22018-02-13 17:03:00 -05001179// DDL TODO: remove 'maxResources'
Robert Phillips8d1e67e2017-12-04 13:48:14 -05001180void GrContext::getResourceCacheLimits(int* maxResources, size_t* maxResourceBytes) const {
joshualitt1de610a2016-01-06 08:26:09 -08001181 ASSERT_SINGLE_OWNER
Robert Phillips8d1e67e2017-12-04 13:48:14 -05001182 if (maxResources) {
1183 *maxResources = fResourceCache->getMaxResourceCount();
bsalomon37f9a262015-02-02 13:00:10 -08001184 }
Robert Phillips8d1e67e2017-12-04 13:48:14 -05001185 if (maxResourceBytes) {
1186 *maxResourceBytes = fResourceCache->getMaxResourceBytes();
bsalomon37f9a262015-02-02 13:00:10 -08001187 }
1188}
1189
Robert Phillips8d1e67e2017-12-04 13:48:14 -05001190void GrContext::setResourceCacheLimits(int maxResources, size_t maxResourceBytes) {
joshualitt1de610a2016-01-06 08:26:09 -08001191 ASSERT_SINGLE_OWNER
Robert Phillips8d1e67e2017-12-04 13:48:14 -05001192 fResourceCache->setLimits(maxResources, maxResourceBytes);
bsalomon37f9a262015-02-02 13:00:10 -08001193}
1194
ericrk0a5fa482015-09-15 14:16:10 -07001195//////////////////////////////////////////////////////////////////////////////
ericrk0a5fa482015-09-15 14:16:10 -07001196void GrContext::dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const {
joshualitt1de610a2016-01-06 08:26:09 -08001197 ASSERT_SINGLE_OWNER
ericrk0a5fa482015-09-15 14:16:10 -07001198 fResourceCache->dumpMemoryStatistics(traceMemoryDump);
Khushal71652e22018-10-29 13:05:36 -07001199 traceMemoryDump->dumpNumericValue("skia/gr_text_blob_cache", "size", "bytes",
1200 fTextBlobCache->usedBytes());
ericrk0a5fa482015-09-15 14:16:10 -07001201}
Brian Osman71a18892017-08-10 10:23:25 -04001202
1203//////////////////////////////////////////////////////////////////////////////
Kevin Lubickf4def342018-10-04 12:52:50 -04001204#ifdef SK_ENABLE_DUMP_GPU
1205#include "SkJSONWriter.h"
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001206SkString GrContextPriv::dump() const {
Brian Osman71a18892017-08-10 10:23:25 -04001207 SkDynamicMemoryWStream stream;
1208 SkJSONWriter writer(&stream, SkJSONWriter::Mode::kPretty);
1209 writer.beginObject();
1210
1211 static const char* kBackendStr[] = {
1212 "Metal",
1213 "OpenGL",
1214 "Vulkan",
1215 "Mock",
1216 };
Greg Danielbdf12ad2018-10-12 09:31:11 -04001217 GR_STATIC_ASSERT(0 == (unsigned)GrBackendApi::kMetal);
1218 GR_STATIC_ASSERT(1 == (unsigned)GrBackendApi::kOpenGL);
1219 GR_STATIC_ASSERT(2 == (unsigned)GrBackendApi::kVulkan);
1220 GR_STATIC_ASSERT(3 == (unsigned)GrBackendApi::kMock);
1221 writer.appendString("backend", kBackendStr[(unsigned)fContext->fBackend]);
Brian Osman71a18892017-08-10 10:23:25 -04001222
1223 writer.appendName("caps");
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001224 fContext->fCaps->dumpJSON(&writer);
Brian Osman71a18892017-08-10 10:23:25 -04001225
1226 writer.appendName("gpu");
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001227 fContext->fGpu->dumpJSON(&writer);
Brian Osman71a18892017-08-10 10:23:25 -04001228
1229 // Flush JSON to the memory stream
1230 writer.endObject();
1231 writer.flush();
1232
1233 // Null terminate the JSON data in the memory stream
1234 stream.write8(0);
1235
1236 // Allocate a string big enough to hold all the data, then copy out of the stream
1237 SkString result(stream.bytesWritten());
1238 stream.copyToAndReset(result.writable_str());
1239 return result;
1240}
Kevin Lubickf4def342018-10-04 12:52:50 -04001241#endif