blob: 755b0f2ec9d8bc8353542c88ea65f5ff6082229a [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"
bsalomon682c2692015-05-22 14:01:46 -070010#include "GrContextOptions.h"
robertphillips77a2e522015-10-17 07:43:27 -070011#include "GrDrawingManager.h"
robertphillipsea461502015-05-26 11:38:03 -070012#include "GrDrawContext.h"
robertphillips@google.come930a072014-04-03 00:34:27 +000013#include "GrLayerCache.h"
bsalomon0ea80f42015-02-11 10:49:59 -080014#include "GrResourceCache.h"
bsalomond309e7a2015-04-30 14:18:54 -070015#include "GrResourceProvider.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000016#include "GrSoftwarePathRenderer.h"
bsalomonafbf2d62014-09-30 12:18:44 -070017#include "GrSurfacePriv.h"
joshualittb7133be2015-04-08 09:08:31 -070018#include "GrTextBlobCache.h"
robertphillips3dc6ae52015-10-20 09:54:32 -070019
bsalomon81beccc2014-10-13 12:32:55 -070020#include "SkConfig8888.h"
bsalomonf276ac52015-10-09 13:36:42 -070021#include "SkGrPriv.h"
joshualitt74417822015-08-07 11:42:16 -070022
joshualitt5478d422014-11-14 16:00:38 -080023#include "effects/GrConfigConversionEffect.h"
joshualitt5478d422014-11-14 16:00:38 -080024
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000025#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
robertphillips77a2e522015-10-17 07:43:27 -070026#define RETURN_IF_ABANDONED if (fDrawingManager->abandoned()) { return; }
27#define RETURN_FALSE_IF_ABANDONED if (fDrawingManager->abandoned()) { return false; }
28#define RETURN_NULL_IF_ABANDONED if (fDrawingManager->abandoned()) { return nullptr; }
bsalomon@google.combc4b6542011-11-19 13:56:11 +000029
robertphillipsea461502015-05-26 11:38:03 -070030////////////////////////////////////////////////////////////////////////////////
31
bsalomon682c2692015-05-22 14:01:46 -070032GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) {
33 GrContextOptions defaultOptions;
34 return Create(backend, backendContext, defaultOptions);
35}
bsalomonf28cff72015-05-22 12:25:41 -070036
bsalomon682c2692015-05-22 14:01:46 -070037GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
38 const GrContextOptions& options) {
halcanary385fe4d2015-08-26 13:07:48 -070039 GrContext* context = new GrContext;
bsalomon682c2692015-05-22 14:01:46 -070040
41 if (context->init(backend, backendContext, options)) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000042 return context;
43 } else {
44 context->unref();
halcanary96fcdcc2015-08-27 07:41:13 -070045 return nullptr;
bsalomon@google.com27847de2011-02-22 20:59:41 +000046 }
bsalomon@google.com27847de2011-02-22 20:59:41 +000047}
48
joshualitt0acd0d32015-05-07 08:23:19 -070049static int32_t gNextID = 1;
50static int32_t next_id() {
51 int32_t id;
52 do {
53 id = sk_atomic_inc(&gNextID);
54 } while (id == SK_InvalidGenID);
55 return id;
56}
57
bsalomon682c2692015-05-22 14:01:46 -070058GrContext::GrContext() : fUniqueID(next_id()) {
halcanary96fcdcc2015-08-27 07:41:13 -070059 fGpu = nullptr;
60 fCaps = nullptr;
61 fResourceCache = nullptr;
62 fResourceProvider = nullptr;
halcanary96fcdcc2015-08-27 07:41:13 -070063 fBatchFontCache = nullptr;
bsalomonf21dab92014-11-13 13:33:28 -080064 fFlushToReduceCacheSize = false;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000065}
66
bsalomon682c2692015-05-22 14:01:46 -070067bool GrContext::init(GrBackend backend, GrBackendContext backendContext,
68 const GrContextOptions& options) {
robertphillipsea461502015-05-26 11:38:03 -070069 SkASSERT(!fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000070
bsalomon682c2692015-05-22 14:01:46 -070071 fGpu = GrGpu::Create(backend, backendContext, options, this);
robertphillipsea461502015-05-26 11:38:03 -070072 if (!fGpu) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000073 return false;
74 }
bsalomon648c6962015-10-23 09:06:59 -070075 this->initCommon(options);
bsalomon33435572014-11-05 14:47:41 -080076 return true;
77}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000078
bsalomon648c6962015-10-23 09:06:59 -070079void GrContext::initCommon(const GrContextOptions& options) {
bsalomon76228632015-05-29 08:02:10 -070080 fCaps = SkRef(fGpu->caps());
halcanary385fe4d2015-08-26 13:07:48 -070081 fResourceCache = new GrResourceCache(fCaps);
bsalomon0ea80f42015-02-11 10:49:59 -080082 fResourceCache->setOverBudgetCallback(OverBudgetCB, this);
halcanary385fe4d2015-08-26 13:07:48 -070083 fResourceProvider = new GrResourceProvider(fGpu, fResourceCache);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +000084
halcanary385fe4d2015-08-26 13:07:48 -070085 fLayerCache.reset(new GrLayerCache(this));
robertphillips@google.come930a072014-04-03 00:34:27 +000086
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000087 fDidTestPMConversions = false;
88
bsalomon648c6962015-10-23 09:06:59 -070089 GrDrawTarget::Options dtOptions;
90 dtOptions.fImmediateMode = options.fImmediateMode;
91 fDrawingManager.reset(new GrDrawingManager(this, dtOptions));
joshualitt7c3a2f82015-03-31 13:32:05 -070092
93 // GrBatchFontCache will eventually replace GrFontCache
halcanary385fe4d2015-08-26 13:07:48 -070094 fBatchFontCache = new GrBatchFontCache(this);
joshualittb7133be2015-04-08 09:08:31 -070095
halcanary385fe4d2015-08-26 13:07:48 -070096 fTextBlobCache.reset(new GrTextBlobCache(TextBlobCacheOverBudgetCB, this));
bsalomon@google.comc0af3172012-06-15 14:10:09 +000097}
98
bsalomon@google.com27847de2011-02-22 20:59:41 +000099GrContext::~GrContext() {
robertphillipsea461502015-05-26 11:38:03 -0700100 if (!fGpu) {
bsalomon76228632015-05-29 08:02:10 -0700101 SkASSERT(!fCaps);
bsalomon@google.com733c0622013-04-24 17:59:32 +0000102 return;
103 }
104
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000105 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000106
robertphillips77a2e522015-10-17 07:43:27 -0700107 fDrawingManager->cleanup();
robertphillips2334fb62015-06-17 05:43:33 -0700108
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000109 for (int i = 0; i < fCleanUpData.count(); ++i) {
110 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
111 }
112
halcanary385fe4d2015-08-26 13:07:48 -0700113 delete fResourceProvider;
114 delete fResourceCache;
115 delete fBatchFontCache;
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000116
bsalomon@google.com205d4602011-04-25 12:43:45 +0000117 fGpu->unref();
bsalomon76228632015-05-29 08:02:10 -0700118 fCaps->unref();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000119}
120
bsalomon2354f842014-07-28 13:48:36 -0700121void GrContext::abandonContext() {
bsalomond309e7a2015-04-30 14:18:54 -0700122 fResourceProvider->abandon();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000123 // abandon first to so destructors
124 // don't try to free the resources in the API.
bsalomon0ea80f42015-02-11 10:49:59 -0800125 fResourceCache->abandonAll();
bsalomonc8dc1f72014-08-21 13:02:13 -0700126
robertphillipse3371302014-09-17 06:01:06 -0700127 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000128
robertphillips77a2e522015-10-17 07:43:27 -0700129 fDrawingManager->abandon();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000130
joshualitt7c3a2f82015-03-31 13:32:05 -0700131 fBatchFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000132 fLayerCache->freeAll();
joshualitt26ffc002015-04-16 11:24:04 -0700133 fTextBlobCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000134}
135
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000136void GrContext::resetContext(uint32_t state) {
137 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000138}
139
140void GrContext::freeGpuResources() {
141 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000142
joshualitt7c3a2f82015-03-31 13:32:05 -0700143 fBatchFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000144 fLayerCache->freeAll();
robertphillips68737822015-10-29 12:12:21 -0700145
146 fDrawingManager->freeGpuResources();
bsalomon3033b9f2015-04-13 11:09:56 -0700147
148 fResourceCache->purgeAllUnlocked();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000149}
150
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000151void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon71cb0c22014-11-14 12:10:14 -0800152 if (resourceCount) {
bsalomon0ea80f42015-02-11 10:49:59 -0800153 *resourceCount = fResourceCache->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800154 }
155 if (resourceBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800156 *resourceBytes = fResourceCache->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800157 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000158}
159
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000160////////////////////////////////////////////////////////////////////////////////
161
bsalomon71cb0c22014-11-14 12:10:14 -0800162void GrContext::OverBudgetCB(void* data) {
bsalomon66a450f2014-11-13 13:19:10 -0800163 SkASSERT(data);
bsalomonf21dab92014-11-13 13:33:28 -0800164
bsalomon66a450f2014-11-13 13:19:10 -0800165 GrContext* context = reinterpret_cast<GrContext*>(data);
bsalomonf21dab92014-11-13 13:33:28 -0800166
joshualittb542bae2015-07-28 09:58:39 -0700167 // Flush the GrBufferedDrawTarget to possibly free up some textures
bsalomonf21dab92014-11-13 13:33:28 -0800168 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000169}
170
joshualitt0db6dfa2015-04-10 07:01:30 -0700171void GrContext::TextBlobCacheOverBudgetCB(void* data) {
172 SkASSERT(data);
173
174 // Unlike the GrResourceCache, TextBlobs are drawn at the SkGpuDevice level, therefore they
175 // cannot use fFlushTorReduceCacheSize because it uses AutoCheckFlush. The solution is to move
176 // drawText calls to below the GrContext level, but this is not trivial because they call
177 // drawPath on SkGpuDevice
178 GrContext* context = reinterpret_cast<GrContext*>(data);
179 context->flush();
180}
181
bsalomon@google.com27847de2011-02-22 20:59:41 +0000182////////////////////////////////////////////////////////////////////////////////
183
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000184void GrContext::flush(int flagsBitfield) {
robertphillipsea461502015-05-26 11:38:03 -0700185 RETURN_IF_ABANDONED
robertphillips@google.come7db8d62013-07-04 11:48:52 +0000186
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000187 if (kDiscard_FlushBit & flagsBitfield) {
robertphillips77a2e522015-10-17 07:43:27 -0700188 fDrawingManager->reset();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000189 } else {
robertphillips77a2e522015-10-17 07:43:27 -0700190 fDrawingManager->flush();
junov@google.com53a55842011-06-08 22:55:10 +0000191 }
bsalomon3f324322015-04-08 11:01:54 -0700192 fResourceCache->notifyFlushOccurred();
bsalomonf21dab92014-11-13 13:33:28 -0800193 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000194}
195
bsalomon81beccc2014-10-13 12:32:55 -0700196bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
197 const void* inPixels, size_t outRowBytes, void* outPixels) {
198 SkSrcPixelInfo srcPI;
halcanary96fcdcc2015-08-27 07:41:13 -0700199 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, nullptr)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000200 return false;
201 }
bsalomon81beccc2014-10-13 12:32:55 -0700202 srcPI.fAlphaType = kUnpremul_SkAlphaType;
203 srcPI.fPixels = inPixels;
204 srcPI.fRowBytes = inRowBytes;
205
206 SkDstPixelInfo dstPI;
207 dstPI.fColorType = srcPI.fColorType;
208 dstPI.fAlphaType = kPremul_SkAlphaType;
209 dstPI.fPixels = outPixels;
210 dstPI.fRowBytes = outRowBytes;
211
212 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000213}
214
bsalomon81beccc2014-10-13 12:32:55 -0700215bool GrContext::writeSurfacePixels(GrSurface* surface,
216 int left, int top, int width, int height,
217 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
218 uint32_t pixelOpsFlags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800219 RETURN_FALSE_IF_ABANDONED
bsalomon6c6f6582015-09-10 08:12:46 -0700220 ASSERT_OWNED_RESOURCE(surface);
221 SkASSERT(surface);
222
223 this->testPMConversionsIfNecessary(pixelOpsFlags);
bsalomon81beccc2014-10-13 12:32:55 -0700224
bsalomone8d21e82015-07-16 08:23:13 -0700225 // 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 -0700226 // necessary and because GrGpu::getWritePixelsInfo requires it.
bsalomone8d21e82015-07-16 08:23:13 -0700227 if (!GrSurfacePriv::AdjustWritePixelParams(surface->width(), surface->height(),
228 GrBytesPerPixel(srcConfig), &left, &top, &width,
229 &height, &buffer, &rowBytes)) {
230 return false;
231 }
232
bsalomonf0674512015-07-28 13:26:15 -0700233 bool applyPremulToSrc = false;
bsalomon81beccc2014-10-13 12:32:55 -0700234 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
235 if (!GrPixelConfigIs8888(srcConfig)) {
236 return false;
237 }
bsalomonf0674512015-07-28 13:26:15 -0700238 applyPremulToSrc = true;
239 }
bsalomon636e8022015-07-29 06:08:46 -0700240
241 GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference;
242 // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when
243 // we've already determined that there isn't a roundtrip preserving conversion processor pair.
244 if (applyPremulToSrc && !this->didFailPMUPMConversionTest()) {
245 drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference;
246 }
247
bsalomonf0674512015-07-28 13:26:15 -0700248 GrGpu::WritePixelTempDrawInfo tempDrawInfo;
249 if (!fGpu->getWritePixelsInfo(surface, width, height, rowBytes, srcConfig, &drawPreference,
250 &tempDrawInfo)) {
251 return false;
252 }
253
254 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) && surface->surfacePriv().hasPendingIO()) {
255 this->flush();
256 }
257
258 SkAutoTUnref<GrTexture> tempTexture;
259 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomoneae62002015-07-31 13:59:30 -0700260 tempTexture.reset(
261 this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc));
bsalomonf0674512015-07-28 13:26:15 -0700262 if (!tempTexture && GrGpu::kRequireDraw_DrawPreference == drawPreference) {
263 return false;
264 }
265 }
266
267 // temp buffer for doing sw premul conversion, if needed.
benjaminwagner7d974f52015-10-19 13:55:55 -0700268#if defined(GOOGLE3)
269 // Stack frame size is limited in GOOGLE3.
270 SkAutoSTMalloc<48 * 48, uint32_t> tmpPixels(0);
271#else
bsalomonf0674512015-07-28 13:26:15 -0700272 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
benjaminwagner7d974f52015-10-19 13:55:55 -0700273#endif
bsalomonf0674512015-07-28 13:26:15 -0700274 if (tempTexture) {
275 SkAutoTUnref<const GrFragmentProcessor> fp;
276 SkMatrix textureMatrix;
277 textureMatrix.setIDiv(tempTexture->width(), tempTexture->height());
278 GrPaint paint;
279 if (applyPremulToSrc) {
bsalomon4a339522015-10-06 08:40:50 -0700280 fp.reset(this->createUPMToPMEffect(tempTexture, tempDrawInfo.fSwapRAndB,
281 textureMatrix));
bsalomonf0674512015-07-28 13:26:15 -0700282 // If premultiplying was the only reason for the draw, fall back to a straight write.
283 if (!fp) {
284 if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) {
halcanary96fcdcc2015-08-27 07:41:13 -0700285 tempTexture.reset(nullptr);
bsalomonf0674512015-07-28 13:26:15 -0700286 }
287 } else {
288 applyPremulToSrc = false;
289 }
290 }
291 if (tempTexture) {
292 if (!fp) {
bsalomon4a339522015-10-06 08:40:50 -0700293 fp.reset(GrConfigConversionEffect::Create(tempTexture, tempDrawInfo.fSwapRAndB,
bsalomonf0674512015-07-28 13:26:15 -0700294 GrConfigConversionEffect::kNone_PMConversion, textureMatrix));
295 if (!fp) {
296 return false;
297 }
298 }
299 GrRenderTarget* renderTarget = surface->asRenderTarget();
300 SkASSERT(renderTarget);
301 if (tempTexture->surfacePriv().hasPendingIO()) {
302 this->flush();
303 }
304 if (applyPremulToSrc) {
305 size_t tmpRowBytes = 4 * width;
306 tmpPixels.reset(width * height);
307 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
308 tmpPixels.get())) {
309 return false;
310 }
311 rowBytes = tmpRowBytes;
312 buffer = tmpPixels.get();
313 applyPremulToSrc = false;
314 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700315 if (!fGpu->writePixels(tempTexture, 0, 0, width, height,
316 tempDrawInfo.fTempSurfaceDesc.fConfig, buffer,
317 rowBytes)) {
bsalomonf0674512015-07-28 13:26:15 -0700318 return false;
319 }
320 SkMatrix matrix;
321 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
robertphillips2e1e51f2015-10-15 08:01:48 -0700322 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(renderTarget));
bsalomonf0674512015-07-28 13:26:15 -0700323 if (!drawContext) {
324 return false;
325 }
bsalomonac856c92015-08-27 06:30:17 -0700326 paint.addColorFragmentProcessor(fp);
bsalomonf0674512015-07-28 13:26:15 -0700327 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
robertphillips2e1e51f2015-10-15 08:01:48 -0700328 drawContext->drawRect(GrClip::WideOpen(), paint, matrix, rect, nullptr);
bsalomonf0674512015-07-28 13:26:15 -0700329
330 if (kFlushWrites_PixelOp & pixelOpsFlags) {
331 this->flushSurfaceWrites(surface);
332 }
333 }
334 }
335 if (!tempTexture) {
bsalomonf0674512015-07-28 13:26:15 -0700336 if (applyPremulToSrc) {
bsalomon81beccc2014-10-13 12:32:55 -0700337 size_t tmpRowBytes = 4 * width;
338 tmpPixels.reset(width * height);
339 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
340 tmpPixels.get())) {
341 return false;
342 }
343 rowBytes = tmpRowBytes;
344 buffer = tmpPixels.get();
bsalomonf0674512015-07-28 13:26:15 -0700345 applyPremulToSrc = false;
bsalomon81beccc2014-10-13 12:32:55 -0700346 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700347 return fGpu->writePixels(surface, left, top, width, height, srcConfig, buffer, rowBytes);
bsalomon81beccc2014-10-13 12:32:55 -0700348 }
bsalomon81beccc2014-10-13 12:32:55 -0700349 return true;
350}
bsalomon@google.coma91e9232012-02-23 15:39:54 +0000351
bsalomone8d21e82015-07-16 08:23:13 -0700352bool GrContext::readSurfacePixels(GrSurface* src,
353 int left, int top, int width, int height,
354 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
355 uint32_t flags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800356 RETURN_FALSE_IF_ABANDONED
bsalomone8d21e82015-07-16 08:23:13 -0700357 ASSERT_OWNED_RESOURCE(src);
358 SkASSERT(src);
bsalomon32ab2602015-09-09 18:57:49 -0700359
bsalomon6c6f6582015-09-10 08:12:46 -0700360 this->testPMConversionsIfNecessary(flags);
361 SkAutoMutexAcquire ama(fReadPixelsMutex);
362
bsalomone8d21e82015-07-16 08:23:13 -0700363 // Adjust the params so that if we wind up using an intermediate surface we've already done
364 // all the trimming and the temporary can be the min size required.
365 if (!GrSurfacePriv::AdjustReadPixelParams(src->width(), src->height(),
366 GrBytesPerPixel(dstConfig), &left,
367 &top, &width, &height, &buffer, &rowBytes)) {
368 return false;
369 }
370
371 if (!(kDontFlush_PixelOpsFlag & flags) && src->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000372 this->flush();
373 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000374
bsalomone8d21e82015-07-16 08:23:13 -0700375 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000376 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon39826022015-07-23 08:07:21 -0700377 // The unpremul flag is only allowed for 8888 configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000378 return false;
379 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000380
bsalomon636e8022015-07-29 06:08:46 -0700381 GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference;
382 // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when
383 // we've already determined that there isn't a roundtrip preserving conversion processor pair.
384 if (unpremul && !this->didFailPMUPMConversionTest()) {
385 drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference;
386 }
387
bsalomon39826022015-07-23 08:07:21 -0700388 GrGpu::ReadPixelTempDrawInfo tempDrawInfo;
389 if (!fGpu->getReadPixelsInfo(src, width, height, rowBytes, dstConfig, &drawPreference,
390 &tempDrawInfo)) {
391 return false;
392 }
bsalomon191bcc02014-11-14 11:31:13 -0800393
bsalomon6cb3cbe2015-07-30 07:34:27 -0700394 SkAutoTUnref<GrSurface> surfaceToRead(SkRef(src));
bsalomon39826022015-07-23 08:07:21 -0700395 bool didTempDraw = false;
396 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomon39826022015-07-23 08:07:21 -0700397 if (tempDrawInfo.fUseExactScratch) {
398 // We only respect this when the entire src is being read. Otherwise we can trigger too
399 // many odd ball texture sizes and trash the cache.
bsalomoneae62002015-07-31 13:59:30 -0700400 if (width != src->width() || height != src->height()) {
401 tempDrawInfo.fUseExactScratch = false;
bsalomon39826022015-07-23 08:07:21 -0700402 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000403 }
bsalomon39826022015-07-23 08:07:21 -0700404 SkAutoTUnref<GrTexture> temp;
bsalomoneae62002015-07-31 13:59:30 -0700405 if (tempDrawInfo.fUseExactScratch) {
406 temp.reset(this->textureProvider()->createTexture(tempDrawInfo.fTempSurfaceDesc, true));
407 } else {
408 temp.reset(this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc));
409 }
bsalomon39826022015-07-23 08:07:21 -0700410 if (temp) {
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000411 SkMatrix textureMatrix;
bsalomon39826022015-07-23 08:07:21 -0700412 textureMatrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000413 textureMatrix.postIDiv(src->width(), src->height());
joshualitt5f10b5c2015-07-09 10:24:35 -0700414 GrPaint paint;
joshualittb0a8a372014-09-23 09:50:21 -0700415 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000416 if (unpremul) {
bsalomon4a339522015-10-06 08:40:50 -0700417 fp.reset(this->createPMToUPMEffect(src->asTexture(), tempDrawInfo.fSwapRAndB,
bsalomon39826022015-07-23 08:07:21 -0700418 textureMatrix));
joshualittb0a8a372014-09-23 09:50:21 -0700419 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000420 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon39826022015-07-23 08:07:21 -0700421 } else if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) {
422 // We only wanted to do the draw in order to perform the unpremul so don't
423 // bother.
halcanary96fcdcc2015-08-27 07:41:13 -0700424 temp.reset(nullptr);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000425 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000426 }
bsalomon39826022015-07-23 08:07:21 -0700427 if (!fp && temp) {
bsalomon4a339522015-10-06 08:40:50 -0700428 fp.reset(GrConfigConversionEffect::Create(src->asTexture(), tempDrawInfo.fSwapRAndB,
bsalomon39826022015-07-23 08:07:21 -0700429 GrConfigConversionEffect::kNone_PMConversion, textureMatrix));
430 }
431 if (fp) {
bsalomonac856c92015-08-27 06:30:17 -0700432 paint.addColorFragmentProcessor(fp);
bsalomon39826022015-07-23 08:07:21 -0700433 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
robertphillips2e1e51f2015-10-15 08:01:48 -0700434 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(temp->asRenderTarget()));
435 drawContext->drawRect(GrClip::WideOpen(), paint, SkMatrix::I(), rect, nullptr);
bsalomon6cb3cbe2015-07-30 07:34:27 -0700436 surfaceToRead.reset(SkRef(temp.get()));
bsalomon39826022015-07-23 08:07:21 -0700437 left = 0;
438 top = 0;
439 didTempDraw = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000440 }
bsalomon@google.com0342a852012-08-20 19:22:38 +0000441 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000442 }
joshualitt5c55fef2014-10-31 14:04:35 -0700443
bsalomon39826022015-07-23 08:07:21 -0700444 if (GrGpu::kRequireDraw_DrawPreference == drawPreference && !didTempDraw) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000445 return false;
446 }
bsalomon39826022015-07-23 08:07:21 -0700447 GrPixelConfig configToRead = dstConfig;
448 if (didTempDraw) {
bsalomon6cb3cbe2015-07-30 07:34:27 -0700449 this->flushSurfaceWrites(surfaceToRead);
bsalomon39826022015-07-23 08:07:21 -0700450 // We swapped R and B while doing the temp draw. Swap back on the read.
451 if (tempDrawInfo.fSwapRAndB) {
452 configToRead = GrPixelConfigSwapRAndB(dstConfig);
453 }
454 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700455 if (!fGpu->readPixels(surfaceToRead, left, top, width, height, configToRead, buffer,
456 rowBytes)) {
bsalomon39826022015-07-23 08:07:21 -0700457 return false;
458 }
459
460 // Perform umpremul conversion if we weren't able to perform it as a draw.
461 if (unpremul) {
reed@google.com7111d462014-03-25 16:20:24 +0000462 SkDstPixelInfo dstPI;
halcanary96fcdcc2015-08-27 07:41:13 -0700463 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, nullptr)) {
reed@google.com7111d462014-03-25 16:20:24 +0000464 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000465 }
reed@google.com7111d462014-03-25 16:20:24 +0000466 dstPI.fAlphaType = kUnpremul_SkAlphaType;
467 dstPI.fPixels = buffer;
468 dstPI.fRowBytes = rowBytes;
469
470 SkSrcPixelInfo srcPI;
bsalomon39826022015-07-23 08:07:21 -0700471 srcPI.fColorType = dstPI.fColorType;
reed@google.com7111d462014-03-25 16:20:24 +0000472 srcPI.fAlphaType = kPremul_SkAlphaType;
473 srcPI.fPixels = buffer;
474 srcPI.fRowBytes = rowBytes;
475
476 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000477 }
478 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000479}
480
bsalomonc49e8682015-06-30 11:37:35 -0700481void GrContext::prepareSurfaceForExternalIO(GrSurface* surface) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800482 RETURN_IF_ABANDONED
bsalomon87a94eb2014-11-03 14:28:32 -0800483 SkASSERT(surface);
484 ASSERT_OWNED_RESOURCE(surface);
485 if (surface->surfacePriv().hasPendingIO()) {
486 this->flush();
487 }
488 GrRenderTarget* rt = surface->asRenderTarget();
489 if (fGpu && rt) {
490 fGpu->resolveRenderTarget(rt);
bsalomon41ebbdd2014-08-04 08:31:39 -0700491 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000492}
493
bsalomonf80bfed2014-10-07 05:56:02 -0700494void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
495 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800496 RETURN_IF_ABANDONED
robertphillipsea461502015-05-26 11:38:03 -0700497 if (!src || !dst) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000498 return;
499 }
bsalomone3d4bf22014-09-23 09:15:03 -0700500 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -0700501 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -0400502
bsalomonf80bfed2014-10-07 05:56:02 -0700503 // Since we're going to the draw target and not GPU, no need to check kNoFlush
504 // here.
robertphillipsea461502015-05-26 11:38:03 -0700505 if (!dst->asRenderTarget()) {
junov96c118e2014-09-26 13:09:47 -0700506 return;
507 }
robertphillipsea461502015-05-26 11:38:03 -0700508
robertphillips2e1e51f2015-10-15 08:01:48 -0700509 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(dst->asRenderTarget()));
robertphillipsea461502015-05-26 11:38:03 -0700510 if (!drawContext) {
511 return;
512 }
513
robertphillips2e1e51f2015-10-15 08:01:48 -0700514 drawContext->copySurface(src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -0700515
516 if (kFlushWrites_PixelOp & pixelOpsFlags) {
517 this->flush();
518 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000519}
520
bsalomonf80bfed2014-10-07 05:56:02 -0700521void GrContext::flushSurfaceWrites(GrSurface* surface) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800522 RETURN_IF_ABANDONED
bsalomonf80bfed2014-10-07 05:56:02 -0700523 if (surface->surfacePriv().hasPendingWrite()) {
524 this->flush();
525 }
526}
527
bsalomon@google.com27847de2011-02-22 20:59:41 +0000528////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000529int GrContext::getRecommendedSampleCount(GrPixelConfig config,
530 SkScalar dpi) const {
bsalomon76228632015-05-29 08:02:10 -0700531 if (!this->caps()->isConfigRenderable(config, true)) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000532 return 0;
533 }
534 int chosenSampleCount = 0;
jvanverthe9c0fc62015-04-29 11:18:05 -0700535 if (fGpu->caps()->shaderCaps()->pathRenderingSupport()) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000536 if (dpi >= 250.0f) {
537 chosenSampleCount = 4;
538 } else {
539 chosenSampleCount = 16;
540 }
541 }
542 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
543 chosenSampleCount : 0;
544}
545
robertphillips77a2e522015-10-17 07:43:27 -0700546
547GrDrawContext* GrContext::drawContext(GrRenderTarget* rt, const SkSurfaceProps* surfaceProps) {
548 return fDrawingManager->drawContext(rt, surfaceProps);
549}
550
551bool GrContext::abandoned() const {
552 return fDrawingManager->abandoned();
553}
554
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000555namespace {
556void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
557 GrConfigConversionEffect::PMConversion pmToUPM;
558 GrConfigConversionEffect::PMConversion upmToPM;
559 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
560 *pmToUPMValue = pmToUPM;
561 *upmToPMValue = upmToPM;
562}
563}
564
bsalomon6c6f6582015-09-10 08:12:46 -0700565void GrContext::testPMConversionsIfNecessary(uint32_t flags) {
566 if (SkToBool(kUnpremul_PixelOpsFlag & flags)) {
567 SkAutoMutexAcquire ama(fTestPMConversionsMutex);
568 if (!fDidTestPMConversions) {
569 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
570 fDidTestPMConversions = true;
571 }
572 }
573}
574
bsalomon4a339522015-10-06 08:40:50 -0700575const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture,
joshualittb0a8a372014-09-23 09:50:21 -0700576 bool swapRAndB,
bsalomon6c6f6582015-09-10 08:12:46 -0700577 const SkMatrix& matrix) const {
578 // We should have already called this->testPMConversionsIfNecessary().
579 SkASSERT(fDidTestPMConversions);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000580 GrConfigConversionEffect::PMConversion pmToUPM =
581 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
582 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon4a339522015-10-06 08:40:50 -0700583 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000584 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700585 return nullptr;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000586 }
587}
588
bsalomon4a339522015-10-06 08:40:50 -0700589const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture,
joshualittb0a8a372014-09-23 09:50:21 -0700590 bool swapRAndB,
bsalomon6c6f6582015-09-10 08:12:46 -0700591 const SkMatrix& matrix) const {
592 // We should have already called this->testPMConversionsIfNecessary().
593 SkASSERT(fDidTestPMConversions);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000594 GrConfigConversionEffect::PMConversion upmToPM =
595 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
596 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon4a339522015-10-06 08:40:50 -0700597 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000598 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700599 return nullptr;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000600 }
601}
602
bsalomon636e8022015-07-29 06:08:46 -0700603bool GrContext::didFailPMUPMConversionTest() const {
bsalomon6c6f6582015-09-10 08:12:46 -0700604 // We should have already called this->testPMConversionsIfNecessary().
605 SkASSERT(fDidTestPMConversions);
bsalomon636e8022015-07-29 06:08:46 -0700606 // The PM<->UPM tests fail or succeed together so we only need to check one.
bsalomon6c6f6582015-09-10 08:12:46 -0700607 return GrConfigConversionEffect::kNone_PMConversion == fPMToUPMConversion;
bsalomon636e8022015-07-29 06:08:46 -0700608}
609
bsalomon37f9a262015-02-02 13:00:10 -0800610//////////////////////////////////////////////////////////////////////////////
611
612void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
613 if (maxTextures) {
bsalomon0ea80f42015-02-11 10:49:59 -0800614 *maxTextures = fResourceCache->getMaxResourceCount();
bsalomon37f9a262015-02-02 13:00:10 -0800615 }
616 if (maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800617 *maxTextureBytes = fResourceCache->getMaxResourceBytes();
bsalomon37f9a262015-02-02 13:00:10 -0800618 }
619}
620
621void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800622 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon37f9a262015-02-02 13:00:10 -0800623}
624
ericrk0a5fa482015-09-15 14:16:10 -0700625//////////////////////////////////////////////////////////////////////////////
626
627void GrContext::dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const {
628 fResourceCache->dumpMemoryStatistics(traceMemoryDump);
629}