blob: 8714b20da7469b632a040cbfa22fff3b2ead467d [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
Greg Daniel51316782017-08-02 15:10:09 +00008#include "GrBackendSemaphore.h"
bsalomon@google.com1fadb202011-12-12 16:10:08 +00009#include "GrContext.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"
Brian Osman11052242016-10-27 14:47:55 -040015#include "GrRenderTargetContext.h"
Brian Salomonc65aec92017-03-09 09:03:58 -050016#include "GrRenderTargetProxy.h"
bsalomon0ea80f42015-02-11 10:49:59 -080017#include "GrResourceCache.h"
bsalomond309e7a2015-04-30 14:18:54 -070018#include "GrResourceProvider.h"
Greg Danield85f97d2017-03-07 13:37:21 -050019#include "GrSemaphore.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000020#include "GrSoftwarePathRenderer.h"
Brian Osman45580d32016-11-23 09:37:01 -050021#include "GrSurfaceContext.h"
bsalomonafbf2d62014-09-30 12:18:44 -070022#include "GrSurfacePriv.h"
Robert Phillips757914d2017-01-25 15:48:30 -050023#include "GrSurfaceProxyPriv.h"
Robert Phillips646e4292017-06-13 12:44:56 -040024#include "GrTexture.h"
Brian Osman45580d32016-11-23 09:37:01 -050025#include "GrTextureContext.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040026#include "GrTracing.h"
Matt Sarett485c4992017-02-14 14:18:27 -050027#include "SkConvertPixels.h"
Brian Osman3b655982017-03-07 16:58:08 -050028#include "SkGr.h"
Brian Osman71a18892017-08-10 10:23:25 -040029#include "SkJSONWriter.h"
Brian Osman51279982017-08-23 10:12:00 -040030#include "SkMakeUnique.h"
31#include "SkTaskGroup.h"
Matt Sarettc7b29082017-02-09 16:22:39 -050032#include "SkUnPreMultiplyPriv.h"
joshualitt5478d422014-11-14 16:00:38 -080033#include "effects/GrConfigConversionEffect.h"
joshualitte8042922015-12-11 06:11:21 -080034#include "text/GrTextBlobCache.h"
joshualitt5478d422014-11-14 16:00:38 -080035
Greg Daniel02611d92017-07-25 10:05:01 -040036#include "gl/GrGLGpu.h"
37#include "mock/GrMockGpu.h"
Greg Danielb76a72a2017-07-13 15:07:54 -040038#ifdef SK_METAL
39#include "mtl/GrMtlTrampoline.h"
40#endif
Greg Daniel02611d92017-07-25 10:05:01 -040041#ifdef SK_VULKAN
42#include "vk/GrVkGpu.h"
43#endif
Greg Danielb76a72a2017-07-13 15:07:54 -040044
Robert Phillipse78b7252017-04-06 07:59:41 -040045#define ASSERT_OWNED_PROXY(P) \
46SkASSERT(!(P) || !((P)->priv().peekTexture()) || (P)->priv().peekTexture()->getContext() == this)
Robert Phillips7ee385e2017-03-30 08:02:11 -040047#define ASSERT_OWNED_PROXY_PRIV(P) \
48SkASSERT(!(P) || !((P)->priv().peekTexture()) || (P)->priv().peekTexture()->getContext() == fContext)
49
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000050#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
joshualitt1de610a2016-01-06 08:26:09 -080051#define ASSERT_SINGLE_OWNER \
52 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(&fSingleOwner);)
robertphillips4fd74ae2016-08-03 14:26:53 -070053#define ASSERT_SINGLE_OWNER_PRIV \
54 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(&fContext->fSingleOwner);)
robertphillips7761d612016-05-16 09:14:53 -070055#define RETURN_IF_ABANDONED if (fDrawingManager->wasAbandoned()) { return; }
Robert Phillips7ee385e2017-03-30 08:02:11 -040056#define RETURN_IF_ABANDONED_PRIV if (fContext->fDrawingManager->wasAbandoned()) { return; }
robertphillips7761d612016-05-16 09:14:53 -070057#define RETURN_FALSE_IF_ABANDONED if (fDrawingManager->wasAbandoned()) { return false; }
Robert Phillipse78b7252017-04-06 07:59:41 -040058#define RETURN_FALSE_IF_ABANDONED_PRIV if (fContext->fDrawingManager->wasAbandoned()) { return false; }
robertphillips7761d612016-05-16 09:14:53 -070059#define RETURN_NULL_IF_ABANDONED if (fDrawingManager->wasAbandoned()) { return nullptr; }
bsalomon@google.combc4b6542011-11-19 13:56:11 +000060
robertphillipsea461502015-05-26 11:38:03 -070061////////////////////////////////////////////////////////////////////////////////
62
bsalomon682c2692015-05-22 14:01:46 -070063GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) {
64 GrContextOptions defaultOptions;
65 return Create(backend, backendContext, defaultOptions);
66}
bsalomonf28cff72015-05-22 12:25:41 -070067
bsalomon682c2692015-05-22 14:01:46 -070068GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
69 const GrContextOptions& options) {
Brian Salomon91a3e522017-06-23 10:58:19 -040070 sk_sp<GrContext> context(new GrContext);
bsalomon682c2692015-05-22 14:01:46 -070071
Brian Salomon91a3e522017-06-23 10:58:19 -040072 if (!context->init(backend, backendContext, options)) {
halcanary96fcdcc2015-08-27 07:41:13 -070073 return nullptr;
bsalomon@google.com27847de2011-02-22 20:59:41 +000074 }
Brian Salomon91a3e522017-06-23 10:58:19 -040075 return context.release();
bsalomon@google.com27847de2011-02-22 20:59:41 +000076}
77
Greg Daniel02611d92017-07-25 10:05:01 -040078sk_sp<GrContext> GrContext::MakeGL(const GrGLInterface* interface) {
79 GrContextOptions defaultOptions;
80 return MakeGL(interface, defaultOptions);
81}
82
83sk_sp<GrContext> GrContext::MakeGL(const GrGLInterface* interface,
84 const GrContextOptions& options) {
85 sk_sp<GrContext> context(new GrContext);
86 context->fGpu = GrGLGpu::Create(interface, options, context.get());
87 if (!context->fGpu) {
88 return nullptr;
89 }
90 context->fBackend = kOpenGL_GrBackend;
91 if (!context->init(options)) {
92 return nullptr;
93 }
94 return context;
95}
96
97sk_sp<GrContext> GrContext::MakeMock(const GrMockOptions* mockOptions) {
98 GrContextOptions defaultOptions;
99 return MakeMock(mockOptions, defaultOptions);
100}
101
102sk_sp<GrContext> GrContext::MakeMock(const GrMockOptions* mockOptions,
103 const GrContextOptions& options) {
104 sk_sp<GrContext> context(new GrContext);
105 context->fGpu = GrMockGpu::Create(mockOptions, options, context.get());
106 if (!context->fGpu) {
107 return nullptr;
108 }
109 context->fBackend = kMock_GrBackend;
110 if (!context->init(options)) {
111 return nullptr;
112 }
113 return context;
114}
115
116#ifdef SK_VULKAN
117sk_sp<GrContext> GrContext::MakeVulkan(const GrVkBackendContext* backendContext) {
118 GrContextOptions defaultOptions;
119 return MakeVulkan(backendContext, defaultOptions);
120}
121
122sk_sp<GrContext> GrContext::MakeVulkan(const GrVkBackendContext* backendContext,
123 const GrContextOptions& options) {
124 sk_sp<GrContext> context(new GrContext);
125 context->fGpu = GrVkGpu::Create(backendContext, options, context.get());
126 if (!context->fGpu) {
127 return nullptr;
128 }
129 context->fBackend = kVulkan_GrBackend;
130 if (!context->init(options)) {
131 return nullptr;
132 }
133 return context;
134}
135#endif
136
Greg Danielb76a72a2017-07-13 15:07:54 -0400137#ifdef SK_METAL
Greg Daniel02611d92017-07-25 10:05:01 -0400138sk_sp<GrContext> GrContext::MakeMetal(void* device, void* queue) {
139 GrContextOptions defaultOptions;
140 return MakeMetal(device, queue, defaultOptions);
141}
142
Greg Danielb76a72a2017-07-13 15:07:54 -0400143sk_sp<GrContext> GrContext::MakeMetal(void* device, void* queue, const GrContextOptions& options) {
144 sk_sp<GrContext> context(new GrContext);
145 context->fGpu = GrMtlTrampoline::CreateGpu(context.get(), options, device, queue);
146 if (!context->fGpu) {
147 return nullptr;
148 }
149 context->fBackend = kMetal_GrBackend;
150 if (!context->init(options)) {
151 return nullptr;
152 }
153 return context;
154}
155#endif
156
joshualitt0acd0d32015-05-07 08:23:19 -0700157static int32_t gNextID = 1;
158static int32_t next_id() {
159 int32_t id;
160 do {
161 id = sk_atomic_inc(&gNextID);
162 } while (id == SK_InvalidGenID);
163 return id;
164}
165
bsalomon682c2692015-05-22 14:01:46 -0700166GrContext::GrContext() : fUniqueID(next_id()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700167 fGpu = nullptr;
168 fCaps = nullptr;
169 fResourceCache = nullptr;
170 fResourceProvider = nullptr;
Brian Salomonf856fd12016-12-16 14:24:34 -0500171 fAtlasGlyphCache = nullptr;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000172}
173
bsalomon682c2692015-05-22 14:01:46 -0700174bool GrContext::init(GrBackend backend, GrBackendContext backendContext,
175 const GrContextOptions& options) {
joshualitt1de610a2016-01-06 08:26:09 -0800176 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700177 SkASSERT(!fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000178
Greg Danielfc978fd2017-04-13 09:54:12 -0400179 fBackend = backend;
180
bsalomon682c2692015-05-22 14:01:46 -0700181 fGpu = GrGpu::Create(backend, backendContext, options, this);
robertphillipsea461502015-05-26 11:38:03 -0700182 if (!fGpu) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000183 return false;
184 }
Greg Danielb76a72a2017-07-13 15:07:54 -0400185 return this->init(options);
186}
joshualitt1de610a2016-01-06 08:26:09 -0800187
Greg Danielb76a72a2017-07-13 15:07:54 -0400188bool GrContext::init(const GrContextOptions& options) {
189 ASSERT_SINGLE_OWNER
bsalomon76228632015-05-29 08:02:10 -0700190 fCaps = SkRef(fGpu->caps());
Brian Osman13dddce2017-05-09 13:19:50 -0400191 fResourceCache = new GrResourceCache(fCaps, fUniqueID);
joshualitt6d0872d2016-01-11 08:27:48 -0800192 fResourceProvider = new GrResourceProvider(fGpu, fResourceCache, &fSingleOwner);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000193
Brian Osman46da1cc2017-02-14 14:15:48 -0500194 fDisableGpuYUVConversion = options.fDisableGpuYUVConversion;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000195 fDidTestPMConversions = false;
196
bsalomon6b2552f2016-09-15 13:50:26 -0700197 GrPathRendererChain::Options prcOptions;
bsalomon39ef7fb2016-09-21 11:16:05 -0700198 prcOptions.fAllowPathMaskCaching = options.fAllowPathMaskCaching;
csmartdalton008b9d82017-02-22 12:00:42 -0700199 prcOptions.fGpuPathRenderers = options.fGpuPathRenderers;
Robert Phillips3ea17982017-06-02 12:43:04 -0400200 fDrawingManager.reset(new GrDrawingManager(this, prcOptions, &fSingleOwner));
joshualitt7c3a2f82015-03-31 13:32:05 -0700201
Eric Karl6d342282017-05-03 17:08:42 -0700202 fAtlasGlyphCache = new GrAtlasGlyphCache(this, options.fGlyphCacheTextureMaximumBytes);
joshualittb7133be2015-04-08 09:08:31 -0700203
halcanary385fe4d2015-08-26 13:07:48 -0700204 fTextBlobCache.reset(new GrTextBlobCache(TextBlobCacheOverBudgetCB, this));
Brian Salomon91a3e522017-06-23 10:58:19 -0400205
Brian Osman51279982017-08-23 10:12:00 -0400206 if (options.fExecutor) {
207 fTaskGroup = skstd::make_unique<SkTaskGroup>(*options.fExecutor);
208 }
209
Brian Salomon91a3e522017-06-23 10:58:19 -0400210 return true;
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000211}
212
bsalomon@google.com27847de2011-02-22 20:59:41 +0000213GrContext::~GrContext() {
joshualitt1de610a2016-01-06 08:26:09 -0800214 ASSERT_SINGLE_OWNER
215
robertphillipsea461502015-05-26 11:38:03 -0700216 if (!fGpu) {
bsalomon76228632015-05-29 08:02:10 -0700217 SkASSERT(!fCaps);
bsalomon@google.com733c0622013-04-24 17:59:32 +0000218 return;
219 }
220
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000221 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000222
robertphillips77a2e522015-10-17 07:43:27 -0700223 fDrawingManager->cleanup();
robertphillips2334fb62015-06-17 05:43:33 -0700224
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000225 for (int i = 0; i < fCleanUpData.count(); ++i) {
226 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
227 }
228
halcanary385fe4d2015-08-26 13:07:48 -0700229 delete fResourceProvider;
230 delete fResourceCache;
Brian Salomonf856fd12016-12-16 14:24:34 -0500231 delete fAtlasGlyphCache;
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000232
bsalomon@google.com205d4602011-04-25 12:43:45 +0000233 fGpu->unref();
bsalomon76228632015-05-29 08:02:10 -0700234 fCaps->unref();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000235}
236
bungeman6bd52842016-10-27 09:30:08 -0700237sk_sp<GrContextThreadSafeProxy> GrContext::threadSafeProxy() {
bsalomon41b952c2016-03-11 06:46:33 -0800238 if (!fThreadSafeProxy) {
bungeman6bd52842016-10-27 09:30:08 -0700239 fThreadSafeProxy.reset(new GrContextThreadSafeProxy(sk_ref_sp(fCaps), this->uniqueID()));
bsalomon41b952c2016-03-11 06:46:33 -0800240 }
bungeman6bd52842016-10-27 09:30:08 -0700241 return fThreadSafeProxy;
bsalomon41b952c2016-03-11 06:46:33 -0800242}
243
bsalomon2354f842014-07-28 13:48:36 -0700244void GrContext::abandonContext() {
joshualitt1de610a2016-01-06 08:26:09 -0800245 ASSERT_SINGLE_OWNER
246
bsalomond309e7a2015-04-30 14:18:54 -0700247 fResourceProvider->abandon();
robertphillips0dfa62c2015-11-16 06:23:31 -0800248
249 // Need to abandon the drawing manager first so all the render targets
250 // will be released/forgotten before they too are abandoned.
251 fDrawingManager->abandon();
252
bsalomon@google.com205d4602011-04-25 12:43:45 +0000253 // abandon first to so destructors
254 // don't try to free the resources in the API.
bsalomon0ea80f42015-02-11 10:49:59 -0800255 fResourceCache->abandonAll();
bsalomonc8dc1f72014-08-21 13:02:13 -0700256
bsalomon6e2aad42016-04-01 11:54:31 -0700257 fGpu->disconnect(GrGpu::DisconnectType::kAbandon);
258
Brian Salomonf856fd12016-12-16 14:24:34 -0500259 fAtlasGlyphCache->freeAll();
bsalomon6e2aad42016-04-01 11:54:31 -0700260 fTextBlobCache->freeAll();
261}
262
263void GrContext::releaseResourcesAndAbandonContext() {
264 ASSERT_SINGLE_OWNER
265
266 fResourceProvider->abandon();
267
268 // Need to abandon the drawing manager first so all the render targets
269 // will be released/forgotten before they too are abandoned.
270 fDrawingManager->abandon();
271
272 // Release all resources in the backend 3D API.
273 fResourceCache->releaseAll();
274
275 fGpu->disconnect(GrGpu::DisconnectType::kCleanup);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000276
Brian Salomonf856fd12016-12-16 14:24:34 -0500277 fAtlasGlyphCache->freeAll();
joshualitt26ffc002015-04-16 11:24:04 -0700278 fTextBlobCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000279}
280
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000281void GrContext::resetContext(uint32_t state) {
joshualitt1de610a2016-01-06 08:26:09 -0800282 ASSERT_SINGLE_OWNER
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000283 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000284}
285
286void GrContext::freeGpuResources() {
joshualitt1de610a2016-01-06 08:26:09 -0800287 ASSERT_SINGLE_OWNER
288
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000289 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000290
Brian Salomonf856fd12016-12-16 14:24:34 -0500291 fAtlasGlyphCache->freeAll();
robertphillips68737822015-10-29 12:12:21 -0700292
293 fDrawingManager->freeGpuResources();
bsalomon3033b9f2015-04-13 11:09:56 -0700294
295 fResourceCache->purgeAllUnlocked();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000296}
297
Brian Salomon5e150852017-03-22 14:53:13 -0400298void GrContext::purgeResourcesNotUsedInMs(std::chrono::milliseconds ms) {
299 ASSERT_SINGLE_OWNER
300 fResourceCache->purgeResourcesNotUsedSince(GrStdSteadyClock::now() - ms);
301}
302
Derek Sollenberger5480a182017-05-25 16:43:59 -0400303void GrContext::purgeUnlockedResources(size_t bytesToPurge, bool preferScratchResources) {
304 ASSERT_SINGLE_OWNER
305 fResourceCache->purgeUnlockedResources(bytesToPurge, preferScratchResources);
306}
307
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000308void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
joshualitt1de610a2016-01-06 08:26:09 -0800309 ASSERT_SINGLE_OWNER
310
bsalomon71cb0c22014-11-14 12:10:14 -0800311 if (resourceCount) {
bsalomon0ea80f42015-02-11 10:49:59 -0800312 *resourceCount = fResourceCache->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800313 }
314 if (resourceBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800315 *resourceBytes = fResourceCache->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800316 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000317}
318
Derek Sollenbergeree479142017-05-24 11:41:33 -0400319size_t GrContext::getResourceCachePurgeableBytes() const {
320 ASSERT_SINGLE_OWNER
321 return fResourceCache->getPurgeableBytes();
322}
323
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000324////////////////////////////////////////////////////////////////////////////////
325
joshualitt0db6dfa2015-04-10 07:01:30 -0700326void GrContext::TextBlobCacheOverBudgetCB(void* data) {
327 SkASSERT(data);
Brian Osman11052242016-10-27 14:47:55 -0400328 // TextBlobs are drawn at the SkGpuDevice level, therefore they cannot rely on
329 // GrRenderTargetContext to perform a necessary flush. The solution is to move drawText calls
330 // to below the GrContext level, but this is not trivial because they call drawPath on
331 // SkGpuDevice.
joshualitt0db6dfa2015-04-10 07:01:30 -0700332 GrContext* context = reinterpret_cast<GrContext*>(data);
333 context->flush();
334}
335
bsalomon@google.com27847de2011-02-22 20:59:41 +0000336////////////////////////////////////////////////////////////////////////////////
337
bsalomonb77a9072016-09-07 10:02:04 -0700338void GrContext::flush() {
joshualitt1de610a2016-01-06 08:26:09 -0800339 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700340 RETURN_IF_ABANDONED
Robert Phillips7ee385e2017-03-30 08:02:11 -0400341
342 fDrawingManager->flush(nullptr);
343}
344
Greg Daniel51316782017-08-02 15:10:09 +0000345GrSemaphoresSubmitted GrContext::flushAndSignalSemaphores(int numSemaphores,
346 GrBackendSemaphore signalSemaphores[]) {
347 ASSERT_SINGLE_OWNER
348 if (fDrawingManager->wasAbandoned()) { return GrSemaphoresSubmitted::kNo; }
349
350 return fDrawingManager->flush(nullptr, numSemaphores, signalSemaphores);
351}
352
Robert Phillips7ee385e2017-03-30 08:02:11 -0400353void GrContextPriv::flush(GrSurfaceProxy* proxy) {
354 ASSERT_SINGLE_OWNER_PRIV
355 RETURN_IF_ABANDONED_PRIV
356 ASSERT_OWNED_PROXY_PRIV(proxy);
357
358 fContext->fDrawingManager->flush(proxy);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000359}
360
bsalomon81beccc2014-10-13 12:32:55 -0700361bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
362 const void* inPixels, size_t outRowBytes, void* outPixels) {
Matt Sarettc7b29082017-02-09 16:22:39 -0500363 SkColorType colorType;
364 if (!GrPixelConfigToColorType(srcConfig, &colorType) ||
365 4 != SkColorTypeBytesPerPixel(colorType))
366 {
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000367 return false;
368 }
bsalomon81beccc2014-10-13 12:32:55 -0700369
Matt Sarettc7b29082017-02-09 16:22:39 -0500370 for (int y = 0; y < height; y++) {
371 SkOpts::RGBA_to_rgbA((uint32_t*) outPixels, inPixels, width);
372 outPixels = SkTAddOffset<void>(outPixels, outRowBytes);
373 inPixels = SkTAddOffset<const void>(inPixels, inRowBytes);
374 }
bsalomon81beccc2014-10-13 12:32:55 -0700375
Matt Sarettc7b29082017-02-09 16:22:39 -0500376 return true;
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000377}
378
Brian Osmand2ca59a2017-04-13 14:03:57 -0400379static bool valid_premul_config(GrPixelConfig config) {
Brian Osmance425512017-03-22 14:37:50 -0400380 return GrPixelConfigIs8888Unorm(config) || kRGBA_half_GrPixelConfig == config;
381}
382
Brian Osmand2ca59a2017-04-13 14:03:57 -0400383static bool valid_pixel_conversion(GrPixelConfig srcConfig, GrPixelConfig dstConfig,
384 bool premulConversion) {
385 // We don't allow conversion between integer configs and float/fixed configs.
386 if (GrPixelConfigIsSint(srcConfig) != GrPixelConfigIsSint(dstConfig)) {
387 return false;
388 }
389
390 // We only allow premul <-> unpremul conversions for some formats
391 if (premulConversion && (!valid_premul_config(srcConfig) || !valid_premul_config(dstConfig))) {
392 return false;
393 }
394
395 return true;
396}
397
Brian Osman409e74f2017-04-17 11:48:28 -0400398static bool pm_upm_must_round_trip(GrPixelConfig config, SkColorSpace* colorSpace) {
399 return !colorSpace &&
400 (kRGBA_8888_GrPixelConfig == config || kBGRA_8888_GrPixelConfig == config);
401}
402
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400403bool GrContextPriv::writeSurfacePixels(GrSurfaceContext* dst,
Robert Phillipse78b7252017-04-06 07:59:41 -0400404 int left, int top, int width, int height,
405 GrPixelConfig srcConfig, SkColorSpace* srcColorSpace,
406 const void* buffer, size_t rowBytes,
407 uint32_t pixelOpsFlags) {
Brian Osmanb62ea222016-12-22 11:12:16 -0500408 // TODO: Color space conversion
409
Robert Phillipse78b7252017-04-06 07:59:41 -0400410 ASSERT_SINGLE_OWNER_PRIV
411 RETURN_FALSE_IF_ABANDONED_PRIV
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400412 SkASSERT(dst);
413 ASSERT_OWNED_PROXY_PRIV(dst->asSurfaceProxy());
Brian Salomondcbb9d92017-07-19 10:53:20 -0400414 GR_CREATE_TRACE_MARKER_CONTEXT("GrContextPriv", "writeSurfacePixels", fContext);
bsalomon6c6f6582015-09-10 08:12:46 -0700415
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400416 if (!dst->asSurfaceProxy()->instantiate(fContext->resourceProvider())) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400417 return false;
418 }
419
Robert Phillips16d8ec62017-07-27 16:16:25 -0400420 GrSurfaceProxy* dstProxy = dst->asSurfaceProxy();
421 GrSurface* dstSurface = dstProxy->priv().peekSurface();
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400422
Brian Osmand2ca59a2017-04-13 14:03:57 -0400423 // The src is unpremul but the dst is premul -> premul the src before or as part of the write
Brian Osman409e74f2017-04-17 11:48:28 -0400424 const bool premul = SkToBool(kUnpremul_PixelOpsFlag & pixelOpsFlags);
Robert Phillips16d8ec62017-07-27 16:16:25 -0400425 if (!valid_pixel_conversion(srcConfig, dstProxy->config(), premul)) {
Brian Osmand2ca59a2017-04-13 14:03:57 -0400426 return false;
427 }
428
Brian Osman409e74f2017-04-17 11:48:28 -0400429 // We need to guarantee round-trip conversion if we are reading and writing 8888 non-sRGB data,
430 // without any color spaces attached, and the caller wants us to premul.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400431 bool useConfigConversionEffect =
432 premul &&
433 pm_upm_must_round_trip(srcConfig, srcColorSpace) &&
Robert Phillips16d8ec62017-07-27 16:16:25 -0400434 pm_upm_must_round_trip(dstProxy->config(), dst->getColorSpace());
Brian Osman409e74f2017-04-17 11:48:28 -0400435
436 // Are we going to try to premul as part of a draw? For the non-legacy case, we always allow
437 // this. GrConfigConversionEffect fails on some GPUs, so only allow this if it works perfectly.
438 bool premulOnGpu = premul &&
439 (!useConfigConversionEffect || fContext->validPMUPMConversionExists());
bsalomon81beccc2014-10-13 12:32:55 -0700440
bsalomone8d21e82015-07-16 08:23:13 -0700441 // Trim the params here so that if we wind up making a temporary surface it can be as small as
bsalomonf0674512015-07-28 13:26:15 -0700442 // necessary and because GrGpu::getWritePixelsInfo requires it.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400443 if (!GrSurfacePriv::AdjustWritePixelParams(dstSurface->width(), dstSurface->height(),
bsalomone8d21e82015-07-16 08:23:13 -0700444 GrBytesPerPixel(srcConfig), &left, &top, &width,
445 &height, &buffer, &rowBytes)) {
446 return false;
447 }
448
Brian Osman409e74f2017-04-17 11:48:28 -0400449 GrGpu::DrawPreference drawPreference = premulOnGpu ? GrGpu::kCallerPrefersDraw_DrawPreference
450 : GrGpu::kNoDraw_DrawPreference;
bsalomonf0674512015-07-28 13:26:15 -0700451 GrGpu::WritePixelTempDrawInfo tempDrawInfo;
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400452 if (!fContext->fGpu->getWritePixelsInfo(dstSurface, dstProxy->origin(), width, height,
Robert Phillips16d8ec62017-07-27 16:16:25 -0400453 srcConfig, &drawPreference, &tempDrawInfo)) {
bsalomonf0674512015-07-28 13:26:15 -0700454 return false;
455 }
456
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400457 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) && dstSurface->surfacePriv().hasPendingIO()) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400458 this->flush(nullptr); // MDB TODO: tighten this
bsalomonf0674512015-07-28 13:26:15 -0700459 }
460
Robert Phillips2f493142017-03-02 18:18:38 -0500461 sk_sp<GrTextureProxy> tempProxy;
bsalomonf0674512015-07-28 13:26:15 -0700462 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400463 tempProxy = GrSurfaceProxy::MakeDeferred(fContext->resourceProvider(),
Robert Phillips2f493142017-03-02 18:18:38 -0500464 tempDrawInfo.fTempSurfaceDesc,
465 SkBackingFit::kApprox,
466 SkBudgeted::kYes);
467 if (!tempProxy && GrGpu::kRequireDraw_DrawPreference == drawPreference) {
bsalomonf0674512015-07-28 13:26:15 -0700468 return false;
469 }
470 }
471
472 // temp buffer for doing sw premul conversion, if needed.
473 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
Brian Osman409e74f2017-04-17 11:48:28 -0400474 // We need to do sw premul if we were unable to create a RT for drawing, or if we can't do the
475 // premul on the GPU
476 if (premul && (!tempProxy || !premulOnGpu)) {
477 size_t tmpRowBytes = 4 * width;
478 tmpPixels.reset(width * height);
479 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
480 tmpPixels.get())) {
481 return false;
bsalomonf0674512015-07-28 13:26:15 -0700482 }
Brian Osman409e74f2017-04-17 11:48:28 -0400483 rowBytes = tmpRowBytes;
484 buffer = tmpPixels.get();
bsalomonf0674512015-07-28 13:26:15 -0700485 }
Brian Osman409e74f2017-04-17 11:48:28 -0400486
487 if (tempProxy) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400488 auto fp = GrSimpleTextureEffect::Make(tempProxy, nullptr, SkMatrix::I());
Brian Osman409e74f2017-04-17 11:48:28 -0400489 if (premulOnGpu) {
490 fp = fContext->createUPMToPMEffect(std::move(fp), useConfigConversionEffect);
bsalomon81beccc2014-10-13 12:32:55 -0700491 }
Brian Osman409e74f2017-04-17 11:48:28 -0400492 fp = GrFragmentProcessor::SwizzleOutput(std::move(fp), tempDrawInfo.fSwizzle);
Robert Phillips1c9686b2017-06-30 08:40:28 -0400493 if (!fp) {
494 return false;
495 }
Brian Osman409e74f2017-04-17 11:48:28 -0400496
497 if (tempProxy->priv().hasPendingIO()) {
498 this->flush(tempProxy.get());
499 }
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400500 if (!tempProxy->instantiate(fContext->resourceProvider())) {
Brian Osman409e74f2017-04-17 11:48:28 -0400501 return false;
502 }
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400503 GrTexture* texture = tempProxy->priv().peekTexture();
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400504 if (!fContext->fGpu->writePixels(texture, tempProxy->origin(), 0, 0, width, height,
505 tempDrawInfo.fWriteConfig, buffer, rowBytes)) {
Brian Osman409e74f2017-04-17 11:48:28 -0400506 return false;
507 }
508 SkMatrix matrix;
509 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400510 GrRenderTargetContext* renderTargetContext = dst->asRenderTargetContext();
Brian Osman409e74f2017-04-17 11:48:28 -0400511 if (!renderTargetContext) {
512 return false;
513 }
514 GrPaint paint;
515 paint.addColorFragmentProcessor(std::move(fp));
516 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
Brian Osman7ab6a7f2017-04-25 15:01:46 -0400517 paint.setAllowSRGBInputs(SkToBool(dst->getColorSpace()) ||
518 GrPixelConfigIsSRGB(renderTargetContext->config()));
Brian Osman409e74f2017-04-17 11:48:28 -0400519 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
520 renderTargetContext->drawRect(GrNoClip(), std::move(paint), GrAA::kNo, matrix, rect,
521 nullptr);
522
523 if (kFlushWrites_PixelOp & pixelOpsFlags) {
524 this->flushSurfaceWrites(renderTargetContext->asRenderTargetProxy());
525 }
526 } else {
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400527 return fContext->fGpu->writePixels(dstSurface, dstProxy->origin(), left, top, width,
528 height, srcConfig, buffer, rowBytes);
bsalomon81beccc2014-10-13 12:32:55 -0700529 }
bsalomon81beccc2014-10-13 12:32:55 -0700530 return true;
531}
bsalomon@google.coma91e9232012-02-23 15:39:54 +0000532
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400533bool GrContextPriv::readSurfacePixels(GrSurfaceContext* src,
Robert Phillipse78b7252017-04-06 07:59:41 -0400534 int left, int top, int width, int height,
535 GrPixelConfig dstConfig, SkColorSpace* dstColorSpace,
536 void* buffer, size_t rowBytes, uint32_t flags) {
Brian Osmanb62ea222016-12-22 11:12:16 -0500537 // TODO: Color space conversion
538
Robert Phillipse78b7252017-04-06 07:59:41 -0400539 ASSERT_SINGLE_OWNER_PRIV
540 RETURN_FALSE_IF_ABANDONED_PRIV
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400541 SkASSERT(src);
542 ASSERT_OWNED_PROXY_PRIV(src->asSurfaceProxy());
Brian Salomondcbb9d92017-07-19 10:53:20 -0400543 GR_CREATE_TRACE_MARKER_CONTEXT("GrContextPriv", "readSurfacePixels", fContext);
bsalomon32ab2602015-09-09 18:57:49 -0700544
Robert Phillipse78b7252017-04-06 07:59:41 -0400545 // MDB TODO: delay this instantiation until later in the method
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400546 if (!src->asSurfaceProxy()->instantiate(fContext->resourceProvider())) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400547 return false;
548 }
549
Robert Phillips16d8ec62017-07-27 16:16:25 -0400550 GrSurfaceProxy* srcProxy = src->asSurfaceProxy();
551 GrSurface* srcSurface = srcProxy->priv().peekSurface();
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400552
Brian Osmand2ca59a2017-04-13 14:03:57 -0400553 // The src is premul but the dst is unpremul -> unpremul the src after or as part of the read
554 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
Robert Phillips16d8ec62017-07-27 16:16:25 -0400555 if (!valid_pixel_conversion(srcProxy->config(), dstConfig, unpremul)) {
Brian Osmand2ca59a2017-04-13 14:03:57 -0400556 return false;
557 }
558
Brian Osman409e74f2017-04-17 11:48:28 -0400559 // We need to guarantee round-trip conversion if we are reading and writing 8888 non-sRGB data,
560 // without any color spaces attached, and the caller wants us to unpremul.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400561 bool useConfigConversionEffect =
562 unpremul &&
Robert Phillips16d8ec62017-07-27 16:16:25 -0400563 pm_upm_must_round_trip(srcProxy->config(), src->getColorSpace()) &&
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400564 pm_upm_must_round_trip(dstConfig, dstColorSpace);
Brian Osman409e74f2017-04-17 11:48:28 -0400565
566 // Are we going to try to unpremul as part of a draw? For the non-legacy case, we always allow
567 // this. GrConfigConversionEffect fails on some GPUs, so only allow this if it works perfectly.
568 bool unpremulOnGpu = unpremul &&
569 (!useConfigConversionEffect || fContext->validPMUPMConversionExists());
bsalomon6c6f6582015-09-10 08:12:46 -0700570
bsalomone8d21e82015-07-16 08:23:13 -0700571 // Adjust the params so that if we wind up using an intermediate surface we've already done
572 // all the trimming and the temporary can be the min size required.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400573 if (!GrSurfacePriv::AdjustReadPixelParams(srcSurface->width(), srcSurface->height(),
bsalomone8d21e82015-07-16 08:23:13 -0700574 GrBytesPerPixel(dstConfig), &left,
575 &top, &width, &height, &buffer, &rowBytes)) {
576 return false;
577 }
578
Brian Osman409e74f2017-04-17 11:48:28 -0400579 GrGpu::DrawPreference drawPreference = unpremulOnGpu ? GrGpu::kCallerPrefersDraw_DrawPreference
580 : GrGpu::kNoDraw_DrawPreference;
bsalomon39826022015-07-23 08:07:21 -0700581 GrGpu::ReadPixelTempDrawInfo tempDrawInfo;
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400582 if (!fContext->fGpu->getReadPixelsInfo(srcSurface, srcProxy->origin(), width, height, rowBytes,
Robert Phillips16d8ec62017-07-27 16:16:25 -0400583 dstConfig, &drawPreference, &tempDrawInfo)) {
bsalomon39826022015-07-23 08:07:21 -0700584 return false;
585 }
bsalomon191bcc02014-11-14 11:31:13 -0800586
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400587 if (!(kDontFlush_PixelOpsFlag & flags) && srcSurface->surfacePriv().hasPendingWrite()) {
Brian Osmand2ca59a2017-04-13 14:03:57 -0400588 this->flush(nullptr); // MDB TODO: tighten this
589 }
590
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400591 sk_sp<GrSurfaceProxy> proxyToRead = src->asSurfaceProxyRef();
bsalomon39826022015-07-23 08:07:21 -0700592 bool didTempDraw = false;
593 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomonb117ff12016-07-19 07:24:40 -0700594 if (SkBackingFit::kExact == tempDrawInfo.fTempSurfaceFit) {
bsalomon39826022015-07-23 08:07:21 -0700595 // We only respect this when the entire src is being read. Otherwise we can trigger too
596 // many odd ball texture sizes and trash the cache.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400597 if (width != srcSurface->width() || height != srcSurface->height()) {
bsalomonb117ff12016-07-19 07:24:40 -0700598 tempDrawInfo.fTempSurfaceFit= SkBackingFit::kApprox;
bsalomon39826022015-07-23 08:07:21 -0700599 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000600 }
brianosmandfe4f2e2016-07-21 13:28:36 -0700601 // TODO: Need to decide the semantics of this function for color spaces. Do we support
602 // conversion to a passed-in color space? For now, specifying nullptr means that this
603 // path will do no conversion, so it will match the behavior of the non-draw path.
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400604 sk_sp<GrRenderTargetContext> tempRTC = fContext->makeDeferredRenderTargetContext(
Brian Osman11052242016-10-27 14:47:55 -0400605 tempDrawInfo.fTempSurfaceFit,
bsalomonb117ff12016-07-19 07:24:40 -0700606 tempDrawInfo.fTempSurfaceDesc.fWidth,
607 tempDrawInfo.fTempSurfaceDesc.fHeight,
608 tempDrawInfo.fTempSurfaceDesc.fConfig,
brianosmandfe4f2e2016-07-21 13:28:36 -0700609 nullptr,
bsalomonb117ff12016-07-19 07:24:40 -0700610 tempDrawInfo.fTempSurfaceDesc.fSampleCnt,
611 tempDrawInfo.fTempSurfaceDesc.fOrigin);
Brian Osman693a5402016-10-27 15:13:22 -0400612 if (tempRTC) {
Robert Phillips67c18d62017-01-20 12:44:06 -0500613 SkMatrix textureMatrix = SkMatrix::MakeTrans(SkIntToScalar(left), SkIntToScalar(top));
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400614 sk_sp<GrTextureProxy> proxy = src->asTextureProxyRef();
Brian Salomonaff329b2017-08-11 09:40:37 -0400615 auto fp = GrSimpleTextureEffect::Make(std::move(proxy), nullptr, textureMatrix);
Brian Osman409e74f2017-04-17 11:48:28 -0400616 if (unpremulOnGpu) {
617 fp = fContext->createPMToUPMEffect(std::move(fp), useConfigConversionEffect);
618 // We no longer need to do this on CPU after the read back.
619 unpremul = false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000620 }
Brian Osman409e74f2017-04-17 11:48:28 -0400621 fp = GrFragmentProcessor::SwizzleOutput(std::move(fp), tempDrawInfo.fSwizzle);
Robert Phillips1c9686b2017-06-30 08:40:28 -0400622 if (!fp) {
623 return false;
624 }
Brian Osman60cd57e2017-04-06 10:19:06 -0400625
Brian Osman409e74f2017-04-17 11:48:28 -0400626 GrPaint paint;
627 paint.addColorFragmentProcessor(std::move(fp));
628 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
629 paint.setAllowSRGBInputs(true);
630 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
631 tempRTC->drawRect(GrNoClip(), std::move(paint), GrAA::kNo, SkMatrix::I(), rect,
632 nullptr);
633 proxyToRead = tempRTC->asTextureProxyRef();
634 left = 0;
635 top = 0;
636 didTempDraw = true;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000637 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000638 }
joshualitt5c55fef2014-10-31 14:04:35 -0700639
Robert Phillipse78b7252017-04-06 07:59:41 -0400640 if (!proxyToRead) {
641 return false;
642 }
643
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400644 if (!proxyToRead->instantiate(fContext->resourceProvider())) {
Robert Phillips833dcf42016-11-18 08:44:13 -0500645 return false;
646 }
647
Robert Phillipseee4d6e2017-06-05 09:26:07 -0400648 GrSurface* surfaceToRead = proxyToRead->priv().peekSurface();
649
bsalomon39826022015-07-23 08:07:21 -0700650 if (GrGpu::kRequireDraw_DrawPreference == drawPreference && !didTempDraw) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000651 return false;
652 }
bsalomon39826022015-07-23 08:07:21 -0700653 GrPixelConfig configToRead = dstConfig;
654 if (didTempDraw) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400655 this->flushSurfaceWrites(proxyToRead.get());
bsalomon6c9cd552016-01-22 07:17:34 -0800656 configToRead = tempDrawInfo.fReadConfig;
bsalomon39826022015-07-23 08:07:21 -0700657 }
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400658 if (!fContext->fGpu->readPixels(surfaceToRead, proxyToRead->origin(),
Robert Phillips16d8ec62017-07-27 16:16:25 -0400659 left, top, width, height, configToRead, buffer, rowBytes)) {
bsalomon39826022015-07-23 08:07:21 -0700660 return false;
661 }
662
663 // Perform umpremul conversion if we weren't able to perform it as a draw.
664 if (unpremul) {
Matt Sarettc7b29082017-02-09 16:22:39 -0500665 SkColorType colorType;
666 if (!GrPixelConfigToColorType(dstConfig, &colorType) ||
667 4 != SkColorTypeBytesPerPixel(colorType))
668 {
reed@google.com7111d462014-03-25 16:20:24 +0000669 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000670 }
reed@google.com7111d462014-03-25 16:20:24 +0000671
Matt Sarettc7b29082017-02-09 16:22:39 -0500672 for (int y = 0; y < height; y++) {
673 SkUnpremultiplyRow<false>((uint32_t*) buffer, (const uint32_t*) buffer, width);
674 buffer = SkTAddOffset<void>(buffer, rowBytes);
675 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000676 }
677 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000678}
679
Robert Phillips7ee385e2017-03-30 08:02:11 -0400680void GrContextPriv::prepareSurfaceForExternalIO(GrSurfaceProxy* proxy) {
681 ASSERT_SINGLE_OWNER_PRIV
682 RETURN_IF_ABANDONED_PRIV
683 SkASSERT(proxy);
684 ASSERT_OWNED_PROXY_PRIV(proxy);
Greg Daniel51316782017-08-02 15:10:09 +0000685 fContext->fDrawingManager->prepareSurfaceForExternalIO(proxy, 0, nullptr);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000686}
687
Robert Phillips7ee385e2017-03-30 08:02:11 -0400688void GrContextPriv::flushSurfaceWrites(GrSurfaceProxy* proxy) {
689 ASSERT_SINGLE_OWNER_PRIV
690 RETURN_IF_ABANDONED_PRIV
691 SkASSERT(proxy);
692 ASSERT_OWNED_PROXY_PRIV(proxy);
693 if (proxy->priv().hasPendingWrite()) {
694 this->flush(proxy);
bsalomonf80bfed2014-10-07 05:56:02 -0700695 }
696}
697
Robert Phillips7ee385e2017-03-30 08:02:11 -0400698void GrContextPriv::flushSurfaceIO(GrSurfaceProxy* proxy) {
699 ASSERT_SINGLE_OWNER_PRIV
700 RETURN_IF_ABANDONED_PRIV
701 SkASSERT(proxy);
702 ASSERT_OWNED_PROXY_PRIV(proxy);
703 if (proxy->priv().hasPendingIO()) {
704 this->flush(proxy);
ajuma95243eb2016-08-24 08:19:02 -0700705 }
706}
707
bsalomon@google.com27847de2011-02-22 20:59:41 +0000708////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000709int GrContext::getRecommendedSampleCount(GrPixelConfig config,
710 SkScalar dpi) const {
joshualitt1de610a2016-01-06 08:26:09 -0800711 ASSERT_SINGLE_OWNER
712
bsalomon76228632015-05-29 08:02:10 -0700713 if (!this->caps()->isConfigRenderable(config, true)) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000714 return 0;
715 }
716 int chosenSampleCount = 0;
jvanverthe9c0fc62015-04-29 11:18:05 -0700717 if (fGpu->caps()->shaderCaps()->pathRenderingSupport()) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000718 if (dpi >= 250.0f) {
719 chosenSampleCount = 4;
720 } else {
721 chosenSampleCount = 16;
722 }
723 }
Greg Daniel81e7bf82017-07-19 14:47:42 -0400724 int supportedSampleCount = fGpu->caps()->getSampleCount(chosenSampleCount, config);
725 return chosenSampleCount <= supportedSampleCount ? supportedSampleCount : 0;
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000726}
727
Robert Phillips2c862492017-01-18 10:08:39 -0500728sk_sp<GrSurfaceContext> GrContextPriv::makeWrappedSurfaceContext(sk_sp<GrSurfaceProxy> proxy,
729 sk_sp<SkColorSpace> colorSpace) {
Brian Osman45580d32016-11-23 09:37:01 -0500730 ASSERT_SINGLE_OWNER_PRIV
731
Brian Osman45580d32016-11-23 09:37:01 -0500732 if (proxy->asRenderTargetProxy()) {
Robert Phillips2c862492017-01-18 10:08:39 -0500733 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
734 std::move(colorSpace), nullptr);
Brian Osman45580d32016-11-23 09:37:01 -0500735 } else {
736 SkASSERT(proxy->asTextureProxy());
Robert Phillips2c862492017-01-18 10:08:39 -0500737 return this->drawingManager()->makeTextureContext(std::move(proxy), std::move(colorSpace));
Brian Osman45580d32016-11-23 09:37:01 -0500738 }
739}
740
Robert Phillipse2f7d182016-12-15 09:23:05 -0500741sk_sp<GrSurfaceContext> GrContextPriv::makeDeferredSurfaceContext(const GrSurfaceDesc& dstDesc,
742 SkBackingFit fit,
743 SkBudgeted isDstBudgeted) {
744
Brian Osman32342f02017-03-04 08:12:46 -0500745 sk_sp<GrTextureProxy> proxy = GrSurfaceProxy::MakeDeferred(fContext->resourceProvider(),
Robert Phillips26c90e02017-03-14 14:39:29 -0400746 dstDesc, fit, isDstBudgeted);
Robert Phillips77b3f322017-01-31 18:24:12 -0500747 if (!proxy) {
748 return nullptr;
749 }
Robert Phillipse2f7d182016-12-15 09:23:05 -0500750
Robert Phillips2c862492017-01-18 10:08:39 -0500751 return this->makeWrappedSurfaceContext(std::move(proxy), nullptr);
Robert Phillipse2f7d182016-12-15 09:23:05 -0500752}
753
Brian Salomond17f6582017-07-19 18:28:58 -0400754sk_sp<GrTextureContext> GrContextPriv::makeBackendTextureContext(const GrBackendTexture& tex,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000755 GrSurfaceOrigin origin,
Brian Osmanc1e37052017-03-09 14:19:20 -0500756 sk_sp<SkColorSpace> colorSpace) {
Robert Phillips26caf892017-01-27 10:58:31 -0500757 ASSERT_SINGLE_OWNER_PRIV
758
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400759 SkASSERT(kDefault_GrSurfaceOrigin != origin);
760 sk_sp<GrSurface> surface(fContext->resourceProvider()->wrapBackendTexture(tex));
Robert Phillips26caf892017-01-27 10:58:31 -0500761 if (!surface) {
762 return nullptr;
763 }
764
Robert Phillips066f0202017-07-25 10:16:35 -0400765 sk_sp<GrSurfaceProxy> proxy(GrSurfaceProxy::MakeWrapped(std::move(surface), origin));
Robert Phillips77b3f322017-01-31 18:24:12 -0500766 if (!proxy) {
767 return nullptr;
768 }
Robert Phillips26caf892017-01-27 10:58:31 -0500769
Brian Salomond17f6582017-07-19 18:28:58 -0400770 return this->drawingManager()->makeTextureContext(std::move(proxy), std::move(colorSpace));
Robert Phillips26caf892017-01-27 10:58:31 -0500771}
772
Brian Osman11052242016-10-27 14:47:55 -0400773sk_sp<GrRenderTargetContext> GrContextPriv::makeBackendTextureRenderTargetContext(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000774 const GrBackendTexture& tex,
775 GrSurfaceOrigin origin,
776 int sampleCnt,
Brian Osman11052242016-10-27 14:47:55 -0400777 sk_sp<SkColorSpace> colorSpace,
Brian Osmanc1e37052017-03-09 14:19:20 -0500778 const SkSurfaceProps* props) {
robertphillips4fd74ae2016-08-03 14:26:53 -0700779 ASSERT_SINGLE_OWNER_PRIV
robertphillips4fd74ae2016-08-03 14:26:53 -0700780
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400781 SkASSERT(kDefault_GrSurfaceOrigin != origin);
782
Brian Salomond17f6582017-07-19 18:28:58 -0400783 sk_sp<GrSurface> surface(
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400784 fContext->resourceProvider()->wrapRenderableBackendTexture(tex, sampleCnt));
robertphillips4fd74ae2016-08-03 14:26:53 -0700785 if (!surface) {
786 return nullptr;
787 }
788
Robert Phillips066f0202017-07-25 10:16:35 -0400789 sk_sp<GrSurfaceProxy> proxy(GrSurfaceProxy::MakeWrapped(std::move(surface), origin));
Robert Phillips77b3f322017-01-31 18:24:12 -0500790 if (!proxy) {
791 return nullptr;
792 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400793
Robert Phillips37430132016-11-09 06:50:43 -0500794 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Brian Osman11052242016-10-27 14:47:55 -0400795 std::move(colorSpace), props);
robertphillips4fd74ae2016-08-03 14:26:53 -0700796}
797
Brian Osman11052242016-10-27 14:47:55 -0400798sk_sp<GrRenderTargetContext> GrContextPriv::makeBackendRenderTargetRenderTargetContext(
Greg Danielbcf612b2017-05-01 13:50:58 +0000799 const GrBackendRenderTarget& backendRT,
800 GrSurfaceOrigin origin,
robertphillips4fd74ae2016-08-03 14:26:53 -0700801 sk_sp<SkColorSpace> colorSpace,
802 const SkSurfaceProps* surfaceProps) {
803 ASSERT_SINGLE_OWNER_PRIV
804
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400805 SkASSERT(kDefault_GrSurfaceOrigin != origin);
806 sk_sp<GrRenderTarget> rt(fContext->resourceProvider()->wrapBackendRenderTarget(backendRT));
robertphillips4fd74ae2016-08-03 14:26:53 -0700807 if (!rt) {
808 return nullptr;
809 }
810
Robert Phillips066f0202017-07-25 10:16:35 -0400811 sk_sp<GrSurfaceProxy> proxy(GrSurfaceProxy::MakeWrapped(std::move(rt), origin));
Robert Phillips77b3f322017-01-31 18:24:12 -0500812 if (!proxy) {
813 return nullptr;
814 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400815
Robert Phillips37430132016-11-09 06:50:43 -0500816 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400817 std::move(colorSpace),
Brian Osman11052242016-10-27 14:47:55 -0400818 surfaceProps);
robertphillips4fd74ae2016-08-03 14:26:53 -0700819}
820
Brian Osman11052242016-10-27 14:47:55 -0400821sk_sp<GrRenderTargetContext> GrContextPriv::makeBackendTextureAsRenderTargetRenderTargetContext(
Greg Daniel7ef28f32017-04-20 16:41:55 +0000822 const GrBackendTexture& tex,
823 GrSurfaceOrigin origin,
824 int sampleCnt,
robertphillips4fd74ae2016-08-03 14:26:53 -0700825 sk_sp<SkColorSpace> colorSpace,
826 const SkSurfaceProps* surfaceProps) {
827 ASSERT_SINGLE_OWNER_PRIV
robertphillips4fd74ae2016-08-03 14:26:53 -0700828
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400829 SkASSERT(kDefault_GrSurfaceOrigin != origin);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000830 sk_sp<GrSurface> surface(fContext->resourceProvider()->wrapBackendTextureAsRenderTarget(
831 tex,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000832 sampleCnt));
robertphillips4fd74ae2016-08-03 14:26:53 -0700833 if (!surface) {
834 return nullptr;
835 }
836
Robert Phillips066f0202017-07-25 10:16:35 -0400837 sk_sp<GrSurfaceProxy> proxy(GrSurfaceProxy::MakeWrapped(std::move(surface), origin));
Robert Phillips77b3f322017-01-31 18:24:12 -0500838 if (!proxy) {
839 return nullptr;
840 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400841
Robert Phillips37430132016-11-09 06:50:43 -0500842 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400843 std::move(colorSpace),
844 surfaceProps);
robertphillips77a2e522015-10-17 07:43:27 -0700845}
846
Chris Daltonfe199b72017-05-05 11:26:15 -0400847void GrContextPriv::addOnFlushCallbackObject(GrOnFlushCallbackObject* onFlushCBObject) {
848 fContext->fDrawingManager->addOnFlushCallbackObject(onFlushCBObject);
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400849}
850
851
robertphillips48fde9c2016-09-06 05:20:20 -0700852static inline GrPixelConfig GrPixelConfigFallback(GrPixelConfig config) {
Brian Osman78f20e02017-01-12 10:28:01 -0500853 switch (config) {
854 case kAlpha_8_GrPixelConfig:
855 case kRGB_565_GrPixelConfig:
856 case kRGBA_4444_GrPixelConfig:
857 case kBGRA_8888_GrPixelConfig:
858 return kRGBA_8888_GrPixelConfig;
859 case kSBGRA_8888_GrPixelConfig:
860 return kSRGBA_8888_GrPixelConfig;
861 case kAlpha_half_GrPixelConfig:
862 return kRGBA_half_GrPixelConfig;
863 default:
864 return kUnknown_GrPixelConfig;
865 }
robertphillips48fde9c2016-09-06 05:20:20 -0700866}
867
robertphillipsd728f0c2016-11-21 11:05:03 -0800868sk_sp<GrRenderTargetContext> GrContext::makeDeferredRenderTargetContextWithFallback(
869 SkBackingFit fit,
870 int width, int height,
871 GrPixelConfig config,
872 sk_sp<SkColorSpace> colorSpace,
873 int sampleCnt,
874 GrSurfaceOrigin origin,
875 const SkSurfaceProps* surfaceProps,
876 SkBudgeted budgeted) {
877 if (!this->caps()->isConfigRenderable(config, sampleCnt > 0)) {
878 config = GrPixelConfigFallback(config);
879 }
880
881 return this->makeDeferredRenderTargetContext(fit, width, height, config, std::move(colorSpace),
882 sampleCnt, origin, surfaceProps, budgeted);
883}
884
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400885sk_sp<GrRenderTargetContext> GrContext::makeDeferredRenderTargetContext(
886 SkBackingFit fit,
887 int width, int height,
888 GrPixelConfig config,
889 sk_sp<SkColorSpace> colorSpace,
890 int sampleCnt,
891 GrSurfaceOrigin origin,
892 const SkSurfaceProps* surfaceProps,
893 SkBudgeted budgeted) {
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400894 SkASSERT(kDefault_GrSurfaceOrigin != origin);
895
Brian Salomon79e4d1b2017-07-13 11:17:11 -0400896 if (this->abandoned()) {
897 return nullptr;
898 }
899
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400900 GrSurfaceDesc desc;
901 desc.fFlags = kRenderTarget_GrSurfaceFlag;
902 desc.fOrigin = origin;
903 desc.fWidth = width;
904 desc.fHeight = height;
905 desc.fConfig = config;
906 desc.fSampleCnt = sampleCnt;
907
Brian Osman32342f02017-03-04 08:12:46 -0500908 sk_sp<GrTextureProxy> rtp = GrSurfaceProxy::MakeDeferred(this->resourceProvider(),
Robert Phillips26c90e02017-03-14 14:39:29 -0400909 desc, fit, budgeted);
Robert Phillips08c5ec72017-01-30 12:26:47 -0500910 if (!rtp) {
911 return nullptr;
912 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400913
Robert Phillips1119dc32017-04-11 12:54:57 -0400914 sk_sp<GrRenderTargetContext> renderTargetContext(
915 fDrawingManager->makeRenderTargetContext(std::move(rtp),
916 std::move(colorSpace),
917 surfaceProps));
Robert Phillips1119dc32017-04-11 12:54:57 -0400918 if (!renderTargetContext) {
919 return nullptr;
920 }
921
922 renderTargetContext->discard();
923
924 return renderTargetContext;
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400925}
926
joshualitt1de610a2016-01-06 08:26:09 -0800927bool GrContext::abandoned() const {
928 ASSERT_SINGLE_OWNER
robertphillips7761d612016-05-16 09:14:53 -0700929 return fDrawingManager->wasAbandoned();
robertphillips77a2e522015-10-17 07:43:27 -0700930}
931
Brian Salomonaff329b2017-08-11 09:40:37 -0400932std::unique_ptr<GrFragmentProcessor> GrContext::createPMToUPMEffect(
933 std::unique_ptr<GrFragmentProcessor> fp, bool useConfigConversionEffect) {
Robert Phillips757914d2017-01-25 15:48:30 -0500934 ASSERT_SINGLE_OWNER
Brian Osman409e74f2017-04-17 11:48:28 -0400935 // We have specialized effects that guarantee round-trip conversion for some formats
936 if (useConfigConversionEffect) {
937 // We should have already called this->validPMUPMConversionExists() in this case
938 SkASSERT(fDidTestPMConversions);
939 // ...and it should have succeeded
940 SkASSERT(this->validPMUPMConversionExists());
941
Brian Osman28804f32017-04-20 10:24:36 -0400942 return GrConfigConversionEffect::Make(std::move(fp),
943 GrConfigConversionEffect::kToUnpremul_PMConversion);
Brian Osman2d2da4f2017-04-12 17:07:22 -0400944 } else {
945 // For everything else (sRGB, half-float, etc...), it doesn't make sense to try and
946 // explicitly round the results. Just do the obvious, naive thing in the shader.
947 return GrFragmentProcessor::UnpremulOutput(std::move(fp));
Robert Phillips757914d2017-01-25 15:48:30 -0500948 }
949}
950
Brian Salomonaff329b2017-08-11 09:40:37 -0400951std::unique_ptr<GrFragmentProcessor> GrContext::createUPMToPMEffect(
952 std::unique_ptr<GrFragmentProcessor> fp, bool useConfigConversionEffect) {
joshualitt1de610a2016-01-06 08:26:09 -0800953 ASSERT_SINGLE_OWNER
Brian Osman2d2da4f2017-04-12 17:07:22 -0400954 // We have specialized effects that guarantee round-trip conversion for these formats
Brian Osman409e74f2017-04-17 11:48:28 -0400955 if (useConfigConversionEffect) {
956 // We should have already called this->validPMUPMConversionExists() in this case
957 SkASSERT(fDidTestPMConversions);
958 // ...and it should have succeeded
959 SkASSERT(this->validPMUPMConversionExists());
960
Brian Osman28804f32017-04-20 10:24:36 -0400961 return GrConfigConversionEffect::Make(std::move(fp),
962 GrConfigConversionEffect::kToPremul_PMConversion);
Brian Osman2d2da4f2017-04-12 17:07:22 -0400963 } else {
964 // For everything else (sRGB, half-float, etc...), it doesn't make sense to try and
965 // explicitly round the results. Just do the obvious, naive thing in the shader.
966 return GrFragmentProcessor::PremulOutput(std::move(fp));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000967 }
968}
969
Brian Osman409e74f2017-04-17 11:48:28 -0400970bool GrContext::validPMUPMConversionExists() {
joshualitt1de610a2016-01-06 08:26:09 -0800971 ASSERT_SINGLE_OWNER
Brian Osman409e74f2017-04-17 11:48:28 -0400972 if (!fDidTestPMConversions) {
Brian Osman28804f32017-04-20 10:24:36 -0400973 fPMUPMConversionsRoundTrip = GrConfigConversionEffect::TestForPreservingPMConversions(this);
Brian Osman409e74f2017-04-17 11:48:28 -0400974 fDidTestPMConversions = true;
975 }
976
bsalomon636e8022015-07-29 06:08:46 -0700977 // The PM<->UPM tests fail or succeed together so we only need to check one.
Brian Osman28804f32017-04-20 10:24:36 -0400978 return fPMUPMConversionsRoundTrip;
bsalomon636e8022015-07-29 06:08:46 -0700979}
980
bsalomon37f9a262015-02-02 13:00:10 -0800981//////////////////////////////////////////////////////////////////////////////
982
983void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
joshualitt1de610a2016-01-06 08:26:09 -0800984 ASSERT_SINGLE_OWNER
bsalomon37f9a262015-02-02 13:00:10 -0800985 if (maxTextures) {
bsalomon0ea80f42015-02-11 10:49:59 -0800986 *maxTextures = fResourceCache->getMaxResourceCount();
bsalomon37f9a262015-02-02 13:00:10 -0800987 }
988 if (maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800989 *maxTextureBytes = fResourceCache->getMaxResourceBytes();
bsalomon37f9a262015-02-02 13:00:10 -0800990 }
991}
992
993void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
joshualitt1de610a2016-01-06 08:26:09 -0800994 ASSERT_SINGLE_OWNER
bsalomon0ea80f42015-02-11 10:49:59 -0800995 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon37f9a262015-02-02 13:00:10 -0800996}
997
ericrk0a5fa482015-09-15 14:16:10 -0700998//////////////////////////////////////////////////////////////////////////////
999
1000void GrContext::dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const {
joshualitt1de610a2016-01-06 08:26:09 -08001001 ASSERT_SINGLE_OWNER
ericrk0a5fa482015-09-15 14:16:10 -07001002 fResourceCache->dumpMemoryStatistics(traceMemoryDump);
1003}
Brian Osman71a18892017-08-10 10:23:25 -04001004
1005//////////////////////////////////////////////////////////////////////////////
1006
1007SkString GrContext::dump() const {
1008 SkDynamicMemoryWStream stream;
1009 SkJSONWriter writer(&stream, SkJSONWriter::Mode::kPretty);
1010 writer.beginObject();
1011
1012 static const char* kBackendStr[] = {
1013 "Metal",
1014 "OpenGL",
1015 "Vulkan",
1016 "Mock",
1017 };
1018 GR_STATIC_ASSERT(0 == kMetal_GrBackend);
1019 GR_STATIC_ASSERT(1 == kOpenGL_GrBackend);
1020 GR_STATIC_ASSERT(2 == kVulkan_GrBackend);
1021 GR_STATIC_ASSERT(3 == kMock_GrBackend);
1022 writer.appendString("backend", kBackendStr[fBackend]);
1023
1024 writer.appendName("caps");
1025 fCaps->dumpJSON(&writer);
1026
1027 writer.appendName("gpu");
1028 fGpu->dumpJSON(&writer);
1029
1030 // Flush JSON to the memory stream
1031 writer.endObject();
1032 writer.flush();
1033
1034 // Null terminate the JSON data in the memory stream
1035 stream.write8(0);
1036
1037 // Allocate a string big enough to hold all the data, then copy out of the stream
1038 SkString result(stream.bytesWritten());
1039 stream.copyToAndReset(result.writable_str());
1040 return result;
1041}