blob: 6ae96c498b4bd460c13f20e468e24c69e3e161a1 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com27847de2011-02-22 20:59:41 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00007 */
8
bsalomon@google.com1fadb202011-12-12 16:10:08 +00009#include "GrContext.h"
10
joshualitt7c3a2f82015-03-31 13:32:05 -070011#include "GrBatchFontCache.h"
bsalomon75398562015-08-17 12:55:38 -070012#include "GrBatchFlushState.h"
joshualitte5902662015-05-11 08:18:35 -070013#include "GrBatchTest.h"
joshualittb542bae2015-07-28 09:58:39 -070014#include "GrBufferedDrawTarget.h"
bsalomoneb1cb5c2015-05-22 08:01:09 -070015#include "GrCaps.h"
bsalomon682c2692015-05-22 14:01:46 -070016#include "GrContextOptions.h"
joshualitt5478d422014-11-14 16:00:38 -080017#include "GrDefaultGeoProcFactory.h"
robertphillipsea461502015-05-26 11:38:03 -070018#include "GrDrawContext.h"
bsalomon453cf402014-11-11 14:15:57 -080019#include "GrGpuResource.h"
bsalomon3582d3e2015-02-13 14:20:05 -080020#include "GrGpuResourcePriv.h"
joshualitt5478d422014-11-14 16:00:38 -080021#include "GrGpu.h"
joshualittbb87b212015-05-19 14:28:04 -070022#include "GrImmediateDrawTarget.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000023#include "GrIndexBuffer.h"
robertphillips@google.come930a072014-04-03 00:34:27 +000024#include "GrLayerCache.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000025#include "GrOvalRenderer.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000026#include "GrPathRenderer.h"
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000027#include "GrPathUtils.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080028#include "GrRenderTargetPriv.h"
bsalomon0ea80f42015-02-11 10:49:59 -080029#include "GrResourceCache.h"
bsalomond309e7a2015-04-30 14:18:54 -070030#include "GrResourceProvider.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000031#include "GrSoftwarePathRenderer.h"
egdanield58a0ba2014-06-11 10:30:05 -070032#include "GrStrokeInfo.h"
bsalomonafbf2d62014-09-30 12:18:44 -070033#include "GrSurfacePriv.h"
joshualittb7133be2015-04-08 09:08:31 -070034#include "GrTextBlobCache.h"
bsalomonafbf2d62014-09-30 12:18:44 -070035#include "GrTexturePriv.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000036#include "GrTracing.h"
bsalomoncb8979d2015-05-05 09:51:38 -070037#include "GrVertices.h"
egdanield58a0ba2014-06-11 10:30:05 -070038#include "SkDashPathPriv.h"
bsalomon81beccc2014-10-13 12:32:55 -070039#include "SkConfig8888.h"
reed@google.com7111d462014-03-25 16:20:24 +000040#include "SkGr.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000041#include "SkRRect.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000042#include "SkStrokeRec.h"
robertphillipsfcf78292015-06-19 11:49:52 -070043#include "SkSurfacePriv.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000044#include "SkTLazy.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000045#include "SkTLS.h"
commit-bot@chromium.org933e65d2014-03-20 20:00:24 +000046#include "SkTraceEvent.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000047
joshualitt74417822015-08-07 11:42:16 -070048#include "batches/GrBatch.h"
49
joshualitt5478d422014-11-14 16:00:38 -080050#include "effects/GrConfigConversionEffect.h"
51#include "effects/GrDashingEffect.h"
52#include "effects/GrSingleTextureEffect.h"
53
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000054#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
robertphillipsea461502015-05-26 11:38:03 -070055#define RETURN_IF_ABANDONED if (fDrawingMgr.abandoned()) { return; }
56#define RETURN_FALSE_IF_ABANDONED if (fDrawingMgr.abandoned()) { return false; }
halcanary96fcdcc2015-08-27 07:41:13 -070057#define RETURN_NULL_IF_ABANDONED if (fDrawingMgr.abandoned()) { return nullptr; }
bsalomon@google.combc4b6542011-11-19 13:56:11 +000058
bsalomonf21dab92014-11-13 13:33:28 -080059
robertphillipsea461502015-05-26 11:38:03 -070060////////////////////////////////////////////////////////////////////////////////
61
62void GrContext::DrawingMgr::init(GrContext* context) {
robertphillips2334fb62015-06-17 05:43:33 -070063 fContext = context;
64
robertphillipsea461502015-05-26 11:38:03 -070065#ifdef IMMEDIATE_MODE
halcanary385fe4d2015-08-26 13:07:48 -070066 fDrawTarget = new GrImmediateDrawTarget(context);
robertphillipsea461502015-05-26 11:38:03 -070067#else
halcanary385fe4d2015-08-26 13:07:48 -070068 fDrawTarget = new GrBufferedDrawTarget(context);
robertphillipsea461502015-05-26 11:38:03 -070069#endif
robertphillips2334fb62015-06-17 05:43:33 -070070}
bsalomon781d5822015-06-16 15:03:11 -070071
robertphillips2334fb62015-06-17 05:43:33 -070072void GrContext::DrawingMgr::cleanup() {
73 SkSafeSetNull(fDrawTarget);
74 for (int i = 0; i < kNumPixelGeometries; ++i) {
75 SkSafeSetNull(fDrawContext[i][0]);
76 SkSafeSetNull(fDrawContext[i][1]);
77 }
robertphillipsea461502015-05-26 11:38:03 -070078}
79
80GrContext::DrawingMgr::~DrawingMgr() {
robertphillips2334fb62015-06-17 05:43:33 -070081 this->cleanup();
robertphillipsea461502015-05-26 11:38:03 -070082}
83
84void GrContext::DrawingMgr::abandon() {
85 SkSafeSetNull(fDrawTarget);
robertphillips2334fb62015-06-17 05:43:33 -070086 for (int i = 0; i < kNumPixelGeometries; ++i) {
87 for (int j = 0; j < kNumDFTOptions; ++j) {
88 if (fDrawContext[i][j]) {
89 SkSafeSetNull(fDrawContext[i][j]->fDrawTarget);
90 SkSafeSetNull(fDrawContext[i][j]);
91 }
92 }
93 }
robertphillipsea461502015-05-26 11:38:03 -070094}
95
96void GrContext::DrawingMgr::purgeResources() {
97 if (fDrawTarget) {
98 fDrawTarget->purgeResources();
bsalomonf21dab92014-11-13 13:33:28 -080099 }
robertphillipsea461502015-05-26 11:38:03 -0700100}
bsalomonf21dab92014-11-13 13:33:28 -0800101
robertphillipsea461502015-05-26 11:38:03 -0700102void GrContext::DrawingMgr::reset() {
103 if (fDrawTarget) {
104 fDrawTarget->reset();
105 }
106}
107
108void GrContext::DrawingMgr::flush() {
109 if (fDrawTarget) {
110 fDrawTarget->flush();
111 }
112}
113
robertphillipsfcf78292015-06-19 11:49:52 -0700114GrDrawContext* GrContext::DrawingMgr::drawContext(const SkSurfaceProps* surfaceProps) {
robertphillipsea461502015-05-26 11:38:03 -0700115 if (this->abandoned()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700116 return nullptr;
robertphillipsea461502015-05-26 11:38:03 -0700117 }
robertphillips2334fb62015-06-17 05:43:33 -0700118
robertphillipsfcf78292015-06-19 11:49:52 -0700119 const SkSurfaceProps props(SkSurfacePropsCopyOrDefault(surfaceProps));
120
121 SkASSERT(props.pixelGeometry() < kNumPixelGeometries);
bsalomonafcd7cd2015-08-31 12:39:41 -0700122 if (!fDrawContext[props.pixelGeometry()][props.isUseDeviceIndependentFonts()]) {
123 fDrawContext[props.pixelGeometry()][props.isUseDeviceIndependentFonts()] =
halcanary385fe4d2015-08-26 13:07:48 -0700124 new GrDrawContext(fContext, fDrawTarget, props);
robertphillips2334fb62015-06-17 05:43:33 -0700125 }
126
robertphillipsc9a37062015-09-01 08:34:28 -0700127 // For now, everyone gets a faux creation ref
128 return SkRef(fDrawContext[props.pixelGeometry()][props.isUseDeviceIndependentFonts()]);
robertphillipsea461502015-05-26 11:38:03 -0700129}
130
131////////////////////////////////////////////////////////////////////////////////
132
bsalomonf21dab92014-11-13 13:33:28 -0800133
bsalomon682c2692015-05-22 14:01:46 -0700134GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) {
135 GrContextOptions defaultOptions;
136 return Create(backend, backendContext, defaultOptions);
137}
bsalomonf28cff72015-05-22 12:25:41 -0700138
bsalomon682c2692015-05-22 14:01:46 -0700139GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
140 const GrContextOptions& options) {
halcanary385fe4d2015-08-26 13:07:48 -0700141 GrContext* context = new GrContext;
bsalomon682c2692015-05-22 14:01:46 -0700142
143 if (context->init(backend, backendContext, options)) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000144 return context;
145 } else {
146 context->unref();
halcanary96fcdcc2015-08-27 07:41:13 -0700147 return nullptr;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000148 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000149}
150
joshualitt0acd0d32015-05-07 08:23:19 -0700151static int32_t gNextID = 1;
152static int32_t next_id() {
153 int32_t id;
154 do {
155 id = sk_atomic_inc(&gNextID);
156 } while (id == SK_InvalidGenID);
157 return id;
158}
159
bsalomon682c2692015-05-22 14:01:46 -0700160GrContext::GrContext() : fUniqueID(next_id()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700161 fGpu = nullptr;
162 fCaps = nullptr;
163 fResourceCache = nullptr;
164 fResourceProvider = nullptr;
165 fPathRendererChain = nullptr;
166 fSoftwarePathRenderer = nullptr;
167 fBatchFontCache = nullptr;
bsalomonf21dab92014-11-13 13:33:28 -0800168 fFlushToReduceCacheSize = false;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000169}
170
bsalomon682c2692015-05-22 14:01:46 -0700171bool GrContext::init(GrBackend backend, GrBackendContext backendContext,
172 const GrContextOptions& options) {
robertphillipsea461502015-05-26 11:38:03 -0700173 SkASSERT(!fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000174
bsalomon682c2692015-05-22 14:01:46 -0700175 fGpu = GrGpu::Create(backend, backendContext, options, this);
robertphillipsea461502015-05-26 11:38:03 -0700176 if (!fGpu) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000177 return false;
178 }
bsalomon33435572014-11-05 14:47:41 -0800179 this->initCommon();
180 return true;
181}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000182
bsalomon33435572014-11-05 14:47:41 -0800183void GrContext::initCommon() {
bsalomon76228632015-05-29 08:02:10 -0700184 fCaps = SkRef(fGpu->caps());
halcanary385fe4d2015-08-26 13:07:48 -0700185 fResourceCache = new GrResourceCache(fCaps);
bsalomon0ea80f42015-02-11 10:49:59 -0800186 fResourceCache->setOverBudgetCallback(OverBudgetCB, this);
halcanary385fe4d2015-08-26 13:07:48 -0700187 fResourceProvider = new GrResourceProvider(fGpu, fResourceCache);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000188
halcanary385fe4d2015-08-26 13:07:48 -0700189 fLayerCache.reset(new GrLayerCache(this));
robertphillips@google.come930a072014-04-03 00:34:27 +0000190
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000191 fDidTestPMConversions = false;
192
robertphillipsea461502015-05-26 11:38:03 -0700193 fDrawingMgr.init(this);
joshualitt7c3a2f82015-03-31 13:32:05 -0700194
195 // GrBatchFontCache will eventually replace GrFontCache
halcanary385fe4d2015-08-26 13:07:48 -0700196 fBatchFontCache = new GrBatchFontCache(this);
joshualittb7133be2015-04-08 09:08:31 -0700197
halcanary385fe4d2015-08-26 13:07:48 -0700198 fTextBlobCache.reset(new GrTextBlobCache(TextBlobCacheOverBudgetCB, this));
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000199}
200
bsalomon@google.com27847de2011-02-22 20:59:41 +0000201GrContext::~GrContext() {
robertphillipsea461502015-05-26 11:38:03 -0700202 if (!fGpu) {
bsalomon76228632015-05-29 08:02:10 -0700203 SkASSERT(!fCaps);
bsalomon@google.com733c0622013-04-24 17:59:32 +0000204 return;
205 }
206
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000207 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000208
robertphillips2334fb62015-06-17 05:43:33 -0700209 fDrawingMgr.cleanup();
210
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000211 for (int i = 0; i < fCleanUpData.count(); ++i) {
212 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
213 }
214
halcanary385fe4d2015-08-26 13:07:48 -0700215 delete fResourceProvider;
216 delete fResourceCache;
217 delete fBatchFontCache;
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000218
bsalomon@google.com205d4602011-04-25 12:43:45 +0000219 fGpu->unref();
bsalomon76228632015-05-29 08:02:10 -0700220 fCaps->unref();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000221 SkSafeUnref(fPathRendererChain);
222 SkSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000223}
224
bsalomon2354f842014-07-28 13:48:36 -0700225void GrContext::abandonContext() {
bsalomond309e7a2015-04-30 14:18:54 -0700226 fResourceProvider->abandon();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000227 // abandon first to so destructors
228 // don't try to free the resources in the API.
bsalomon0ea80f42015-02-11 10:49:59 -0800229 fResourceCache->abandonAll();
bsalomonc8dc1f72014-08-21 13:02:13 -0700230
robertphillipse3371302014-09-17 06:01:06 -0700231 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000232
bsalomon@google.com30085192011-08-19 15:42:31 +0000233 // a path renderer may be holding onto resources that
234 // are now unusable
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000235 SkSafeSetNull(fPathRendererChain);
236 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000237
robertphillipsea461502015-05-26 11:38:03 -0700238 fDrawingMgr.abandon();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000239
joshualitt7c3a2f82015-03-31 13:32:05 -0700240 fBatchFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000241 fLayerCache->freeAll();
joshualitt26ffc002015-04-16 11:24:04 -0700242 fTextBlobCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000243}
244
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000245void GrContext::resetContext(uint32_t state) {
246 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000247}
248
249void GrContext::freeGpuResources() {
250 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000251
robertphillipsea461502015-05-26 11:38:03 -0700252 fDrawingMgr.purgeResources();
robertphillips@google.comff175842012-05-14 19:31:39 +0000253
joshualitt7c3a2f82015-03-31 13:32:05 -0700254 fBatchFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000255 fLayerCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000256 // a path renderer may be holding onto resources
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000257 SkSafeSetNull(fPathRendererChain);
258 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon3033b9f2015-04-13 11:09:56 -0700259
260 fResourceCache->purgeAllUnlocked();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000261}
262
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000263void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon71cb0c22014-11-14 12:10:14 -0800264 if (resourceCount) {
bsalomon0ea80f42015-02-11 10:49:59 -0800265 *resourceCount = fResourceCache->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800266 }
267 if (resourceBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800268 *resourceBytes = fResourceCache->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800269 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000270}
271
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000272////////////////////////////////////////////////////////////////////////////////
273
bsalomon71cb0c22014-11-14 12:10:14 -0800274void GrContext::OverBudgetCB(void* data) {
bsalomon66a450f2014-11-13 13:19:10 -0800275 SkASSERT(data);
bsalomonf21dab92014-11-13 13:33:28 -0800276
bsalomon66a450f2014-11-13 13:19:10 -0800277 GrContext* context = reinterpret_cast<GrContext*>(data);
bsalomonf21dab92014-11-13 13:33:28 -0800278
joshualittb542bae2015-07-28 09:58:39 -0700279 // Flush the GrBufferedDrawTarget to possibly free up some textures
bsalomonf21dab92014-11-13 13:33:28 -0800280 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000281}
282
joshualitt0db6dfa2015-04-10 07:01:30 -0700283void GrContext::TextBlobCacheOverBudgetCB(void* data) {
284 SkASSERT(data);
285
286 // Unlike the GrResourceCache, TextBlobs are drawn at the SkGpuDevice level, therefore they
287 // cannot use fFlushTorReduceCacheSize because it uses AutoCheckFlush. The solution is to move
288 // drawText calls to below the GrContext level, but this is not trivial because they call
289 // drawPath on SkGpuDevice
290 GrContext* context = reinterpret_cast<GrContext*>(data);
291 context->flush();
292}
293
bsalomon@google.com27847de2011-02-22 20:59:41 +0000294////////////////////////////////////////////////////////////////////////////////
295
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000296void GrContext::flush(int flagsBitfield) {
robertphillipsea461502015-05-26 11:38:03 -0700297 RETURN_IF_ABANDONED
robertphillips@google.come7db8d62013-07-04 11:48:52 +0000298
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000299 if (kDiscard_FlushBit & flagsBitfield) {
robertphillipsea461502015-05-26 11:38:03 -0700300 fDrawingMgr.reset();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000301 } else {
robertphillipsea461502015-05-26 11:38:03 -0700302 fDrawingMgr.flush();
junov@google.com53a55842011-06-08 22:55:10 +0000303 }
bsalomon3f324322015-04-08 11:01:54 -0700304 fResourceCache->notifyFlushOccurred();
bsalomonf21dab92014-11-13 13:33:28 -0800305 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000306}
307
bsalomon81beccc2014-10-13 12:32:55 -0700308bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
309 const void* inPixels, size_t outRowBytes, void* outPixels) {
310 SkSrcPixelInfo srcPI;
halcanary96fcdcc2015-08-27 07:41:13 -0700311 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, nullptr)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000312 return false;
313 }
bsalomon81beccc2014-10-13 12:32:55 -0700314 srcPI.fAlphaType = kUnpremul_SkAlphaType;
315 srcPI.fPixels = inPixels;
316 srcPI.fRowBytes = inRowBytes;
317
318 SkDstPixelInfo dstPI;
319 dstPI.fColorType = srcPI.fColorType;
320 dstPI.fAlphaType = kPremul_SkAlphaType;
321 dstPI.fPixels = outPixels;
322 dstPI.fRowBytes = outRowBytes;
323
324 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000325}
326
bsalomon81beccc2014-10-13 12:32:55 -0700327bool GrContext::writeSurfacePixels(GrSurface* surface,
328 int left, int top, int width, int height,
329 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
330 uint32_t pixelOpsFlags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800331 RETURN_FALSE_IF_ABANDONED
bsalomon6c6f6582015-09-10 08:12:46 -0700332 ASSERT_OWNED_RESOURCE(surface);
333 SkASSERT(surface);
334
335 this->testPMConversionsIfNecessary(pixelOpsFlags);
bsalomon81beccc2014-10-13 12:32:55 -0700336
bsalomone8d21e82015-07-16 08:23:13 -0700337 // 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 -0700338 // necessary and because GrGpu::getWritePixelsInfo requires it.
bsalomone8d21e82015-07-16 08:23:13 -0700339 if (!GrSurfacePriv::AdjustWritePixelParams(surface->width(), surface->height(),
340 GrBytesPerPixel(srcConfig), &left, &top, &width,
341 &height, &buffer, &rowBytes)) {
342 return false;
343 }
344
bsalomonf0674512015-07-28 13:26:15 -0700345 bool applyPremulToSrc = false;
bsalomon81beccc2014-10-13 12:32:55 -0700346 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
347 if (!GrPixelConfigIs8888(srcConfig)) {
348 return false;
349 }
bsalomonf0674512015-07-28 13:26:15 -0700350 applyPremulToSrc = true;
351 }
bsalomon636e8022015-07-29 06:08:46 -0700352
353 GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference;
354 // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when
355 // we've already determined that there isn't a roundtrip preserving conversion processor pair.
356 if (applyPremulToSrc && !this->didFailPMUPMConversionTest()) {
357 drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference;
358 }
359
bsalomonf0674512015-07-28 13:26:15 -0700360 GrGpu::WritePixelTempDrawInfo tempDrawInfo;
361 if (!fGpu->getWritePixelsInfo(surface, width, height, rowBytes, srcConfig, &drawPreference,
362 &tempDrawInfo)) {
363 return false;
364 }
365
366 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) && surface->surfacePriv().hasPendingIO()) {
367 this->flush();
368 }
369
370 SkAutoTUnref<GrTexture> tempTexture;
371 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomoneae62002015-07-31 13:59:30 -0700372 tempTexture.reset(
373 this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc));
bsalomonf0674512015-07-28 13:26:15 -0700374 if (!tempTexture && GrGpu::kRequireDraw_DrawPreference == drawPreference) {
375 return false;
376 }
377 }
378
379 // temp buffer for doing sw premul conversion, if needed.
380 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
381 if (tempTexture) {
382 SkAutoTUnref<const GrFragmentProcessor> fp;
383 SkMatrix textureMatrix;
384 textureMatrix.setIDiv(tempTexture->width(), tempTexture->height());
385 GrPaint paint;
386 if (applyPremulToSrc) {
387 fp.reset(this->createUPMToPMEffect(paint.getProcessorDataManager(), tempTexture,
388 tempDrawInfo.fSwapRAndB, textureMatrix));
389 // If premultiplying was the only reason for the draw, fall back to a straight write.
390 if (!fp) {
391 if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) {
halcanary96fcdcc2015-08-27 07:41:13 -0700392 tempTexture.reset(nullptr);
bsalomonf0674512015-07-28 13:26:15 -0700393 }
394 } else {
395 applyPremulToSrc = false;
396 }
397 }
398 if (tempTexture) {
399 if (!fp) {
400 fp.reset(GrConfigConversionEffect::Create(
401 paint.getProcessorDataManager(), tempTexture, tempDrawInfo.fSwapRAndB,
402 GrConfigConversionEffect::kNone_PMConversion, textureMatrix));
403 if (!fp) {
404 return false;
405 }
406 }
407 GrRenderTarget* renderTarget = surface->asRenderTarget();
408 SkASSERT(renderTarget);
409 if (tempTexture->surfacePriv().hasPendingIO()) {
410 this->flush();
411 }
412 if (applyPremulToSrc) {
413 size_t tmpRowBytes = 4 * width;
414 tmpPixels.reset(width * height);
415 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
416 tmpPixels.get())) {
417 return false;
418 }
419 rowBytes = tmpRowBytes;
420 buffer = tmpPixels.get();
421 applyPremulToSrc = false;
422 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700423 if (!fGpu->writePixels(tempTexture, 0, 0, width, height,
424 tempDrawInfo.fTempSurfaceDesc.fConfig, buffer,
425 rowBytes)) {
bsalomonf0674512015-07-28 13:26:15 -0700426 return false;
427 }
428 SkMatrix matrix;
429 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
robertphillipsc9a37062015-09-01 08:34:28 -0700430 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext());
bsalomonf0674512015-07-28 13:26:15 -0700431 if (!drawContext) {
432 return false;
433 }
bsalomonac856c92015-08-27 06:30:17 -0700434 paint.addColorFragmentProcessor(fp);
bsalomonf0674512015-07-28 13:26:15 -0700435 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
halcanary96fcdcc2015-08-27 07:41:13 -0700436 drawContext->drawRect(renderTarget, GrClip::WideOpen(), paint, matrix, rect, nullptr);
bsalomonf0674512015-07-28 13:26:15 -0700437
438 if (kFlushWrites_PixelOp & pixelOpsFlags) {
439 this->flushSurfaceWrites(surface);
440 }
441 }
442 }
443 if (!tempTexture) {
bsalomonf0674512015-07-28 13:26:15 -0700444 if (applyPremulToSrc) {
bsalomon81beccc2014-10-13 12:32:55 -0700445 size_t tmpRowBytes = 4 * width;
446 tmpPixels.reset(width * height);
447 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
448 tmpPixels.get())) {
449 return false;
450 }
451 rowBytes = tmpRowBytes;
452 buffer = tmpPixels.get();
bsalomonf0674512015-07-28 13:26:15 -0700453 applyPremulToSrc = false;
bsalomon81beccc2014-10-13 12:32:55 -0700454 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700455 return fGpu->writePixels(surface, left, top, width, height, srcConfig, buffer, rowBytes);
bsalomon81beccc2014-10-13 12:32:55 -0700456 }
bsalomon81beccc2014-10-13 12:32:55 -0700457 return true;
458}
bsalomon@google.coma91e9232012-02-23 15:39:54 +0000459
bsalomone8d21e82015-07-16 08:23:13 -0700460bool GrContext::readSurfacePixels(GrSurface* src,
461 int left, int top, int width, int height,
462 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
463 uint32_t flags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800464 RETURN_FALSE_IF_ABANDONED
bsalomone8d21e82015-07-16 08:23:13 -0700465 ASSERT_OWNED_RESOURCE(src);
466 SkASSERT(src);
bsalomon32ab2602015-09-09 18:57:49 -0700467
bsalomon6c6f6582015-09-10 08:12:46 -0700468 this->testPMConversionsIfNecessary(flags);
469 SkAutoMutexAcquire ama(fReadPixelsMutex);
470
bsalomone8d21e82015-07-16 08:23:13 -0700471 // Adjust the params so that if we wind up using an intermediate surface we've already done
472 // all the trimming and the temporary can be the min size required.
473 if (!GrSurfacePriv::AdjustReadPixelParams(src->width(), src->height(),
474 GrBytesPerPixel(dstConfig), &left,
475 &top, &width, &height, &buffer, &rowBytes)) {
476 return false;
477 }
478
479 if (!(kDontFlush_PixelOpsFlag & flags) && src->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000480 this->flush();
481 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000482
bsalomone8d21e82015-07-16 08:23:13 -0700483 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000484 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon39826022015-07-23 08:07:21 -0700485 // The unpremul flag is only allowed for 8888 configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000486 return false;
487 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000488
bsalomon636e8022015-07-29 06:08:46 -0700489 GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference;
490 // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when
491 // we've already determined that there isn't a roundtrip preserving conversion processor pair.
492 if (unpremul && !this->didFailPMUPMConversionTest()) {
493 drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference;
494 }
495
bsalomon39826022015-07-23 08:07:21 -0700496 GrGpu::ReadPixelTempDrawInfo tempDrawInfo;
497 if (!fGpu->getReadPixelsInfo(src, width, height, rowBytes, dstConfig, &drawPreference,
498 &tempDrawInfo)) {
499 return false;
500 }
bsalomon191bcc02014-11-14 11:31:13 -0800501
bsalomon6cb3cbe2015-07-30 07:34:27 -0700502 SkAutoTUnref<GrSurface> surfaceToRead(SkRef(src));
bsalomon39826022015-07-23 08:07:21 -0700503 bool didTempDraw = false;
504 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomon39826022015-07-23 08:07:21 -0700505 if (tempDrawInfo.fUseExactScratch) {
506 // We only respect this when the entire src is being read. Otherwise we can trigger too
507 // many odd ball texture sizes and trash the cache.
bsalomoneae62002015-07-31 13:59:30 -0700508 if (width != src->width() || height != src->height()) {
509 tempDrawInfo.fUseExactScratch = false;
bsalomon39826022015-07-23 08:07:21 -0700510 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000511 }
bsalomon39826022015-07-23 08:07:21 -0700512 SkAutoTUnref<GrTexture> temp;
bsalomoneae62002015-07-31 13:59:30 -0700513 if (tempDrawInfo.fUseExactScratch) {
514 temp.reset(this->textureProvider()->createTexture(tempDrawInfo.fTempSurfaceDesc, true));
515 } else {
516 temp.reset(this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc));
517 }
bsalomon39826022015-07-23 08:07:21 -0700518 if (temp) {
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000519 SkMatrix textureMatrix;
bsalomon39826022015-07-23 08:07:21 -0700520 textureMatrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000521 textureMatrix.postIDiv(src->width(), src->height());
joshualitt5f10b5c2015-07-09 10:24:35 -0700522 GrPaint paint;
joshualittb0a8a372014-09-23 09:50:21 -0700523 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000524 if (unpremul) {
bsalomon39826022015-07-23 08:07:21 -0700525 fp.reset(this->createPMToUPMEffect(
526 paint.getProcessorDataManager(), src->asTexture(), tempDrawInfo.fSwapRAndB,
527 textureMatrix));
joshualittb0a8a372014-09-23 09:50:21 -0700528 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000529 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon39826022015-07-23 08:07:21 -0700530 } else if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) {
531 // We only wanted to do the draw in order to perform the unpremul so don't
532 // bother.
halcanary96fcdcc2015-08-27 07:41:13 -0700533 temp.reset(nullptr);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000534 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000535 }
bsalomon39826022015-07-23 08:07:21 -0700536 if (!fp && temp) {
537 fp.reset(GrConfigConversionEffect::Create(
538 paint.getProcessorDataManager(), src->asTexture(), tempDrawInfo.fSwapRAndB,
539 GrConfigConversionEffect::kNone_PMConversion, textureMatrix));
540 }
541 if (fp) {
bsalomonac856c92015-08-27 06:30:17 -0700542 paint.addColorFragmentProcessor(fp);
bsalomon39826022015-07-23 08:07:21 -0700543 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
robertphillipsc9a37062015-09-01 08:34:28 -0700544 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext());
bsalomon39826022015-07-23 08:07:21 -0700545 drawContext->drawRect(temp->asRenderTarget(), GrClip::WideOpen(), paint,
halcanary96fcdcc2015-08-27 07:41:13 -0700546 SkMatrix::I(), rect, nullptr);
bsalomon6cb3cbe2015-07-30 07:34:27 -0700547 surfaceToRead.reset(SkRef(temp.get()));
bsalomon39826022015-07-23 08:07:21 -0700548 left = 0;
549 top = 0;
550 didTempDraw = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000551 }
bsalomon@google.com0342a852012-08-20 19:22:38 +0000552 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000553 }
joshualitt5c55fef2014-10-31 14:04:35 -0700554
bsalomon39826022015-07-23 08:07:21 -0700555 if (GrGpu::kRequireDraw_DrawPreference == drawPreference && !didTempDraw) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000556 return false;
557 }
bsalomon39826022015-07-23 08:07:21 -0700558 GrPixelConfig configToRead = dstConfig;
559 if (didTempDraw) {
bsalomon6cb3cbe2015-07-30 07:34:27 -0700560 this->flushSurfaceWrites(surfaceToRead);
bsalomon39826022015-07-23 08:07:21 -0700561 // We swapped R and B while doing the temp draw. Swap back on the read.
562 if (tempDrawInfo.fSwapRAndB) {
563 configToRead = GrPixelConfigSwapRAndB(dstConfig);
564 }
565 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700566 if (!fGpu->readPixels(surfaceToRead, left, top, width, height, configToRead, buffer,
567 rowBytes)) {
bsalomon39826022015-07-23 08:07:21 -0700568 return false;
569 }
570
571 // Perform umpremul conversion if we weren't able to perform it as a draw.
572 if (unpremul) {
reed@google.com7111d462014-03-25 16:20:24 +0000573 SkDstPixelInfo dstPI;
halcanary96fcdcc2015-08-27 07:41:13 -0700574 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, nullptr)) {
reed@google.com7111d462014-03-25 16:20:24 +0000575 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000576 }
reed@google.com7111d462014-03-25 16:20:24 +0000577 dstPI.fAlphaType = kUnpremul_SkAlphaType;
578 dstPI.fPixels = buffer;
579 dstPI.fRowBytes = rowBytes;
580
581 SkSrcPixelInfo srcPI;
bsalomon39826022015-07-23 08:07:21 -0700582 srcPI.fColorType = dstPI.fColorType;
reed@google.com7111d462014-03-25 16:20:24 +0000583 srcPI.fAlphaType = kPremul_SkAlphaType;
584 srcPI.fPixels = buffer;
585 srcPI.fRowBytes = rowBytes;
586
587 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000588 }
589 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000590}
591
bsalomonc49e8682015-06-30 11:37:35 -0700592void GrContext::prepareSurfaceForExternalIO(GrSurface* surface) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800593 RETURN_IF_ABANDONED
bsalomon87a94eb2014-11-03 14:28:32 -0800594 SkASSERT(surface);
595 ASSERT_OWNED_RESOURCE(surface);
596 if (surface->surfacePriv().hasPendingIO()) {
597 this->flush();
598 }
599 GrRenderTarget* rt = surface->asRenderTarget();
600 if (fGpu && rt) {
601 fGpu->resolveRenderTarget(rt);
bsalomon41ebbdd2014-08-04 08:31:39 -0700602 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000603}
604
bsalomonf80bfed2014-10-07 05:56:02 -0700605void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
606 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800607 RETURN_IF_ABANDONED
robertphillipsea461502015-05-26 11:38:03 -0700608 if (!src || !dst) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000609 return;
610 }
bsalomone3d4bf22014-09-23 09:15:03 -0700611 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -0700612 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -0400613
bsalomonf80bfed2014-10-07 05:56:02 -0700614 // Since we're going to the draw target and not GPU, no need to check kNoFlush
615 // here.
robertphillipsea461502015-05-26 11:38:03 -0700616 if (!dst->asRenderTarget()) {
junov96c118e2014-09-26 13:09:47 -0700617 return;
618 }
robertphillipsea461502015-05-26 11:38:03 -0700619
robertphillipsc9a37062015-09-01 08:34:28 -0700620 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext());
robertphillipsea461502015-05-26 11:38:03 -0700621 if (!drawContext) {
622 return;
623 }
624
625 drawContext->copySurface(dst->asRenderTarget(), src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -0700626
627 if (kFlushWrites_PixelOp & pixelOpsFlags) {
628 this->flush();
629 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000630}
631
bsalomonf80bfed2014-10-07 05:56:02 -0700632void GrContext::flushSurfaceWrites(GrSurface* surface) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800633 RETURN_IF_ABANDONED
bsalomonf80bfed2014-10-07 05:56:02 -0700634 if (surface->surfacePriv().hasPendingWrite()) {
635 this->flush();
636 }
637}
638
robertphillips@google.com72176b22012-05-23 13:19:12 +0000639/*
640 * This method finds a path renderer that can draw the specified path on
641 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000642 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +0000643 * can be individually allowed/disallowed via the "allowSW" boolean.
644 */
joshualitt9853cce2014-11-17 14:22:48 -0800645GrPathRenderer* GrContext::getPathRenderer(const GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -0800646 const GrPipelineBuilder* pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -0800647 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800648 const SkPath& path,
kkinnunen18996512015-04-26 23:18:49 -0700649 const GrStrokeInfo& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000650 bool allowSW,
651 GrPathRendererChain::DrawType drawType,
652 GrPathRendererChain::StencilSupport* stencilSupport) {
653
robertphillipsea461502015-05-26 11:38:03 -0700654 if (!fPathRendererChain) {
halcanary385fe4d2015-08-26 13:07:48 -0700655 fPathRendererChain = new GrPathRendererChain(this);
bsalomon@google.com30085192011-08-19 15:42:31 +0000656 }
robertphillips@google.com72176b22012-05-23 13:19:12 +0000657
joshualitt9853cce2014-11-17 14:22:48 -0800658 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(target,
egdaniel8dd688b2015-01-22 10:16:09 -0800659 pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -0800660 viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800661 path,
sugoi@google.com12b4e272012-12-06 20:13:11 +0000662 stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000663 drawType,
664 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000665
robertphillipsea461502015-05-26 11:38:03 -0700666 if (!pr && allowSW) {
667 if (!fSoftwarePathRenderer) {
halcanary385fe4d2015-08-26 13:07:48 -0700668 fSoftwarePathRenderer = new GrSoftwarePathRenderer(this);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000669 }
robertphillips@google.com72176b22012-05-23 13:19:12 +0000670 pr = fSoftwarePathRenderer;
671 }
672
673 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +0000674}
675
bsalomon@google.com27847de2011-02-22 20:59:41 +0000676////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000677int GrContext::getRecommendedSampleCount(GrPixelConfig config,
678 SkScalar dpi) const {
bsalomon76228632015-05-29 08:02:10 -0700679 if (!this->caps()->isConfigRenderable(config, true)) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000680 return 0;
681 }
682 int chosenSampleCount = 0;
jvanverthe9c0fc62015-04-29 11:18:05 -0700683 if (fGpu->caps()->shaderCaps()->pathRenderingSupport()) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000684 if (dpi >= 250.0f) {
685 chosenSampleCount = 4;
686 } else {
687 chosenSampleCount = 16;
688 }
689 }
690 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
691 chosenSampleCount : 0;
692}
693
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000694namespace {
695void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
696 GrConfigConversionEffect::PMConversion pmToUPM;
697 GrConfigConversionEffect::PMConversion upmToPM;
698 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
699 *pmToUPMValue = pmToUPM;
700 *upmToPMValue = upmToPM;
701}
702}
703
bsalomon6c6f6582015-09-10 08:12:46 -0700704void GrContext::testPMConversionsIfNecessary(uint32_t flags) {
705 if (SkToBool(kUnpremul_PixelOpsFlag & flags)) {
706 SkAutoMutexAcquire ama(fTestPMConversionsMutex);
707 if (!fDidTestPMConversions) {
708 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
709 fDidTestPMConversions = true;
710 }
711 }
712}
713
joshualitt5f10b5c2015-07-09 10:24:35 -0700714const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrProcessorDataManager* procDataManager,
715 GrTexture* texture,
joshualittb0a8a372014-09-23 09:50:21 -0700716 bool swapRAndB,
bsalomon6c6f6582015-09-10 08:12:46 -0700717 const SkMatrix& matrix) const {
718 // We should have already called this->testPMConversionsIfNecessary().
719 SkASSERT(fDidTestPMConversions);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000720 GrConfigConversionEffect::PMConversion pmToUPM =
721 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
722 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
joshualitt5f10b5c2015-07-09 10:24:35 -0700723 return GrConfigConversionEffect::Create(procDataManager, texture, swapRAndB, pmToUPM,
724 matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000725 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700726 return nullptr;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000727 }
728}
729
joshualitt5f10b5c2015-07-09 10:24:35 -0700730const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrProcessorDataManager* procDataManager,
731 GrTexture* texture,
joshualittb0a8a372014-09-23 09:50:21 -0700732 bool swapRAndB,
bsalomon6c6f6582015-09-10 08:12:46 -0700733 const SkMatrix& matrix) const {
734 // We should have already called this->testPMConversionsIfNecessary().
735 SkASSERT(fDidTestPMConversions);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000736 GrConfigConversionEffect::PMConversion upmToPM =
737 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
738 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
joshualitt5f10b5c2015-07-09 10:24:35 -0700739 return GrConfigConversionEffect::Create(procDataManager, texture, swapRAndB, upmToPM,
740 matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000741 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700742 return nullptr;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000743 }
744}
745
bsalomon636e8022015-07-29 06:08:46 -0700746bool GrContext::didFailPMUPMConversionTest() const {
bsalomon6c6f6582015-09-10 08:12:46 -0700747 // We should have already called this->testPMConversionsIfNecessary().
748 SkASSERT(fDidTestPMConversions);
bsalomon636e8022015-07-29 06:08:46 -0700749 // The PM<->UPM tests fail or succeed together so we only need to check one.
bsalomon6c6f6582015-09-10 08:12:46 -0700750 return GrConfigConversionEffect::kNone_PMConversion == fPMToUPMConversion;
bsalomon636e8022015-07-29 06:08:46 -0700751}
752
bsalomon37f9a262015-02-02 13:00:10 -0800753//////////////////////////////////////////////////////////////////////////////
754
755void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
756 if (maxTextures) {
bsalomon0ea80f42015-02-11 10:49:59 -0800757 *maxTextures = fResourceCache->getMaxResourceCount();
bsalomon37f9a262015-02-02 13:00:10 -0800758 }
759 if (maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800760 *maxTextureBytes = fResourceCache->getMaxResourceBytes();
bsalomon37f9a262015-02-02 13:00:10 -0800761 }
762}
763
764void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800765 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon37f9a262015-02-02 13:00:10 -0800766}
767