blob: ad89672f3bad5c64611773aa82258cc54198f9fd [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 }
bsalomon69cfe952015-11-30 13:27:47 -080075 this->initCommon(options);
bsalomon33435572014-11-05 14:47:41 -080076 return true;
77}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000078
bsalomon69cfe952015-11-30 13:27:47 -080079void 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
bsalomon69cfe952015-11-30 13:27:47 -080089 GrDrawTarget::Options dtOptions;
90 dtOptions.fClipBatchToBounds = options.fClipBatchToBounds;
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();
robertphillips0dfa62c2015-11-16 06:23:31 -0800123
124 // Need to abandon the drawing manager first so all the render targets
125 // will be released/forgotten before they too are abandoned.
126 fDrawingManager->abandon();
127
bsalomon@google.com205d4602011-04-25 12:43:45 +0000128 // abandon first to so destructors
129 // don't try to free the resources in the API.
bsalomon0ea80f42015-02-11 10:49:59 -0800130 fResourceCache->abandonAll();
bsalomonc8dc1f72014-08-21 13:02:13 -0700131
robertphillipse3371302014-09-17 06:01:06 -0700132 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000133
joshualitt7c3a2f82015-03-31 13:32:05 -0700134 fBatchFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000135 fLayerCache->freeAll();
joshualitt26ffc002015-04-16 11:24:04 -0700136 fTextBlobCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000137}
138
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000139void GrContext::resetContext(uint32_t state) {
140 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000141}
142
143void GrContext::freeGpuResources() {
144 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000145
joshualitt7c3a2f82015-03-31 13:32:05 -0700146 fBatchFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000147 fLayerCache->freeAll();
robertphillips68737822015-10-29 12:12:21 -0700148
149 fDrawingManager->freeGpuResources();
bsalomon3033b9f2015-04-13 11:09:56 -0700150
151 fResourceCache->purgeAllUnlocked();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000152}
153
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000154void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon71cb0c22014-11-14 12:10:14 -0800155 if (resourceCount) {
bsalomon0ea80f42015-02-11 10:49:59 -0800156 *resourceCount = fResourceCache->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800157 }
158 if (resourceBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800159 *resourceBytes = fResourceCache->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800160 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000161}
162
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000163////////////////////////////////////////////////////////////////////////////////
164
bsalomon71cb0c22014-11-14 12:10:14 -0800165void GrContext::OverBudgetCB(void* data) {
bsalomon66a450f2014-11-13 13:19:10 -0800166 SkASSERT(data);
bsalomonf21dab92014-11-13 13:33:28 -0800167
bsalomon66a450f2014-11-13 13:19:10 -0800168 GrContext* context = reinterpret_cast<GrContext*>(data);
bsalomonf21dab92014-11-13 13:33:28 -0800169
joshualittb542bae2015-07-28 09:58:39 -0700170 // Flush the GrBufferedDrawTarget to possibly free up some textures
bsalomonf21dab92014-11-13 13:33:28 -0800171 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000172}
173
joshualitt0db6dfa2015-04-10 07:01:30 -0700174void GrContext::TextBlobCacheOverBudgetCB(void* data) {
175 SkASSERT(data);
176
177 // Unlike the GrResourceCache, TextBlobs are drawn at the SkGpuDevice level, therefore they
178 // cannot use fFlushTorReduceCacheSize because it uses AutoCheckFlush. The solution is to move
179 // drawText calls to below the GrContext level, but this is not trivial because they call
180 // drawPath on SkGpuDevice
181 GrContext* context = reinterpret_cast<GrContext*>(data);
182 context->flush();
183}
184
bsalomon@google.com27847de2011-02-22 20:59:41 +0000185////////////////////////////////////////////////////////////////////////////////
186
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000187void GrContext::flush(int flagsBitfield) {
robertphillipsea461502015-05-26 11:38:03 -0700188 RETURN_IF_ABANDONED
robertphillips@google.come7db8d62013-07-04 11:48:52 +0000189
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000190 if (kDiscard_FlushBit & flagsBitfield) {
robertphillips77a2e522015-10-17 07:43:27 -0700191 fDrawingManager->reset();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000192 } else {
robertphillips77a2e522015-10-17 07:43:27 -0700193 fDrawingManager->flush();
junov@google.com53a55842011-06-08 22:55:10 +0000194 }
bsalomon3f324322015-04-08 11:01:54 -0700195 fResourceCache->notifyFlushOccurred();
bsalomonf21dab92014-11-13 13:33:28 -0800196 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000197}
198
bsalomon81beccc2014-10-13 12:32:55 -0700199bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
200 const void* inPixels, size_t outRowBytes, void* outPixels) {
201 SkSrcPixelInfo srcPI;
halcanary96fcdcc2015-08-27 07:41:13 -0700202 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, nullptr)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000203 return false;
204 }
bsalomon81beccc2014-10-13 12:32:55 -0700205 srcPI.fAlphaType = kUnpremul_SkAlphaType;
206 srcPI.fPixels = inPixels;
207 srcPI.fRowBytes = inRowBytes;
208
209 SkDstPixelInfo dstPI;
210 dstPI.fColorType = srcPI.fColorType;
211 dstPI.fAlphaType = kPremul_SkAlphaType;
212 dstPI.fPixels = outPixels;
213 dstPI.fRowBytes = outRowBytes;
214
215 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000216}
217
bsalomon81beccc2014-10-13 12:32:55 -0700218bool GrContext::writeSurfacePixels(GrSurface* surface,
219 int left, int top, int width, int height,
220 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
221 uint32_t pixelOpsFlags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800222 RETURN_FALSE_IF_ABANDONED
bsalomon6c6f6582015-09-10 08:12:46 -0700223 ASSERT_OWNED_RESOURCE(surface);
224 SkASSERT(surface);
225
226 this->testPMConversionsIfNecessary(pixelOpsFlags);
bsalomon81beccc2014-10-13 12:32:55 -0700227
bsalomone8d21e82015-07-16 08:23:13 -0700228 // 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 -0700229 // necessary and because GrGpu::getWritePixelsInfo requires it.
bsalomone8d21e82015-07-16 08:23:13 -0700230 if (!GrSurfacePriv::AdjustWritePixelParams(surface->width(), surface->height(),
231 GrBytesPerPixel(srcConfig), &left, &top, &width,
232 &height, &buffer, &rowBytes)) {
233 return false;
234 }
235
bsalomonf0674512015-07-28 13:26:15 -0700236 bool applyPremulToSrc = false;
bsalomon81beccc2014-10-13 12:32:55 -0700237 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
238 if (!GrPixelConfigIs8888(srcConfig)) {
239 return false;
240 }
bsalomonf0674512015-07-28 13:26:15 -0700241 applyPremulToSrc = true;
242 }
bsalomon636e8022015-07-29 06:08:46 -0700243
244 GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference;
245 // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when
246 // we've already determined that there isn't a roundtrip preserving conversion processor pair.
247 if (applyPremulToSrc && !this->didFailPMUPMConversionTest()) {
248 drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference;
249 }
250
bsalomonf0674512015-07-28 13:26:15 -0700251 GrGpu::WritePixelTempDrawInfo tempDrawInfo;
252 if (!fGpu->getWritePixelsInfo(surface, width, height, rowBytes, srcConfig, &drawPreference,
253 &tempDrawInfo)) {
254 return false;
255 }
256
257 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) && surface->surfacePriv().hasPendingIO()) {
258 this->flush();
259 }
260
261 SkAutoTUnref<GrTexture> tempTexture;
262 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomoneae62002015-07-31 13:59:30 -0700263 tempTexture.reset(
264 this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc));
bsalomonf0674512015-07-28 13:26:15 -0700265 if (!tempTexture && GrGpu::kRequireDraw_DrawPreference == drawPreference) {
266 return false;
267 }
268 }
269
270 // temp buffer for doing sw premul conversion, if needed.
benjaminwagner7d974f52015-10-19 13:55:55 -0700271#if defined(GOOGLE3)
272 // Stack frame size is limited in GOOGLE3.
273 SkAutoSTMalloc<48 * 48, uint32_t> tmpPixels(0);
274#else
bsalomonf0674512015-07-28 13:26:15 -0700275 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
benjaminwagner7d974f52015-10-19 13:55:55 -0700276#endif
bsalomonf0674512015-07-28 13:26:15 -0700277 if (tempTexture) {
278 SkAutoTUnref<const GrFragmentProcessor> fp;
279 SkMatrix textureMatrix;
280 textureMatrix.setIDiv(tempTexture->width(), tempTexture->height());
bsalomonf0674512015-07-28 13:26:15 -0700281 if (applyPremulToSrc) {
bsalomon4a339522015-10-06 08:40:50 -0700282 fp.reset(this->createUPMToPMEffect(tempTexture, tempDrawInfo.fSwapRAndB,
283 textureMatrix));
bsalomonf0674512015-07-28 13:26:15 -0700284 // If premultiplying was the only reason for the draw, fall back to a straight write.
285 if (!fp) {
286 if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) {
halcanary96fcdcc2015-08-27 07:41:13 -0700287 tempTexture.reset(nullptr);
bsalomonf0674512015-07-28 13:26:15 -0700288 }
289 } else {
290 applyPremulToSrc = false;
291 }
292 }
293 if (tempTexture) {
294 if (!fp) {
bsalomon4a339522015-10-06 08:40:50 -0700295 fp.reset(GrConfigConversionEffect::Create(tempTexture, tempDrawInfo.fSwapRAndB,
bsalomonf0674512015-07-28 13:26:15 -0700296 GrConfigConversionEffect::kNone_PMConversion, textureMatrix));
297 if (!fp) {
298 return false;
299 }
300 }
301 GrRenderTarget* renderTarget = surface->asRenderTarget();
302 SkASSERT(renderTarget);
303 if (tempTexture->surfacePriv().hasPendingIO()) {
304 this->flush();
305 }
306 if (applyPremulToSrc) {
307 size_t tmpRowBytes = 4 * width;
308 tmpPixels.reset(width * height);
309 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
310 tmpPixels.get())) {
311 return false;
312 }
313 rowBytes = tmpRowBytes;
314 buffer = tmpPixels.get();
315 applyPremulToSrc = false;
316 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700317 if (!fGpu->writePixels(tempTexture, 0, 0, width, height,
318 tempDrawInfo.fTempSurfaceDesc.fConfig, buffer,
319 rowBytes)) {
bsalomonf0674512015-07-28 13:26:15 -0700320 return false;
321 }
322 SkMatrix matrix;
323 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
robertphillips2e1e51f2015-10-15 08:01:48 -0700324 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(renderTarget));
bsalomonf0674512015-07-28 13:26:15 -0700325 if (!drawContext) {
326 return false;
327 }
egdanielc4b72722015-11-23 13:20:41 -0800328 GrPaint paint;
bsalomonac856c92015-08-27 06:30:17 -0700329 paint.addColorFragmentProcessor(fp);
egdanielc4b72722015-11-23 13:20:41 -0800330 paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode);
bsalomonf0674512015-07-28 13:26:15 -0700331 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
robertphillips2e1e51f2015-10-15 08:01:48 -0700332 drawContext->drawRect(GrClip::WideOpen(), paint, matrix, rect, nullptr);
bsalomonf0674512015-07-28 13:26:15 -0700333
334 if (kFlushWrites_PixelOp & pixelOpsFlags) {
335 this->flushSurfaceWrites(surface);
336 }
337 }
338 }
339 if (!tempTexture) {
bsalomonf0674512015-07-28 13:26:15 -0700340 if (applyPremulToSrc) {
bsalomon81beccc2014-10-13 12:32:55 -0700341 size_t tmpRowBytes = 4 * width;
342 tmpPixels.reset(width * height);
343 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
344 tmpPixels.get())) {
345 return false;
346 }
347 rowBytes = tmpRowBytes;
348 buffer = tmpPixels.get();
bsalomonf0674512015-07-28 13:26:15 -0700349 applyPremulToSrc = false;
bsalomon81beccc2014-10-13 12:32:55 -0700350 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700351 return fGpu->writePixels(surface, left, top, width, height, srcConfig, buffer, rowBytes);
bsalomon81beccc2014-10-13 12:32:55 -0700352 }
bsalomon81beccc2014-10-13 12:32:55 -0700353 return true;
354}
bsalomon@google.coma91e9232012-02-23 15:39:54 +0000355
bsalomone8d21e82015-07-16 08:23:13 -0700356bool GrContext::readSurfacePixels(GrSurface* src,
357 int left, int top, int width, int height,
358 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
359 uint32_t flags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800360 RETURN_FALSE_IF_ABANDONED
bsalomone8d21e82015-07-16 08:23:13 -0700361 ASSERT_OWNED_RESOURCE(src);
362 SkASSERT(src);
bsalomon32ab2602015-09-09 18:57:49 -0700363
bsalomon6c6f6582015-09-10 08:12:46 -0700364 this->testPMConversionsIfNecessary(flags);
365 SkAutoMutexAcquire ama(fReadPixelsMutex);
366
bsalomone8d21e82015-07-16 08:23:13 -0700367 // Adjust the params so that if we wind up using an intermediate surface we've already done
368 // all the trimming and the temporary can be the min size required.
369 if (!GrSurfacePriv::AdjustReadPixelParams(src->width(), src->height(),
370 GrBytesPerPixel(dstConfig), &left,
371 &top, &width, &height, &buffer, &rowBytes)) {
372 return false;
373 }
374
375 if (!(kDontFlush_PixelOpsFlag & flags) && src->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000376 this->flush();
377 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000378
bsalomone8d21e82015-07-16 08:23:13 -0700379 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000380 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon39826022015-07-23 08:07:21 -0700381 // The unpremul flag is only allowed for 8888 configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000382 return false;
383 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000384
bsalomon636e8022015-07-29 06:08:46 -0700385 GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference;
386 // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when
387 // we've already determined that there isn't a roundtrip preserving conversion processor pair.
388 if (unpremul && !this->didFailPMUPMConversionTest()) {
389 drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference;
390 }
391
bsalomon39826022015-07-23 08:07:21 -0700392 GrGpu::ReadPixelTempDrawInfo tempDrawInfo;
393 if (!fGpu->getReadPixelsInfo(src, width, height, rowBytes, dstConfig, &drawPreference,
394 &tempDrawInfo)) {
395 return false;
396 }
bsalomon191bcc02014-11-14 11:31:13 -0800397
bsalomon6cb3cbe2015-07-30 07:34:27 -0700398 SkAutoTUnref<GrSurface> surfaceToRead(SkRef(src));
bsalomon39826022015-07-23 08:07:21 -0700399 bool didTempDraw = false;
400 if (GrGpu::kNoDraw_DrawPreference != drawPreference) {
bsalomon39826022015-07-23 08:07:21 -0700401 if (tempDrawInfo.fUseExactScratch) {
402 // We only respect this when the entire src is being read. Otherwise we can trigger too
403 // many odd ball texture sizes and trash the cache.
bsalomoneae62002015-07-31 13:59:30 -0700404 if (width != src->width() || height != src->height()) {
405 tempDrawInfo.fUseExactScratch = false;
bsalomon39826022015-07-23 08:07:21 -0700406 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000407 }
bsalomon39826022015-07-23 08:07:21 -0700408 SkAutoTUnref<GrTexture> temp;
bsalomoneae62002015-07-31 13:59:30 -0700409 if (tempDrawInfo.fUseExactScratch) {
410 temp.reset(this->textureProvider()->createTexture(tempDrawInfo.fTempSurfaceDesc, true));
411 } else {
412 temp.reset(this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc));
413 }
bsalomon39826022015-07-23 08:07:21 -0700414 if (temp) {
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000415 SkMatrix textureMatrix;
bsalomon39826022015-07-23 08:07:21 -0700416 textureMatrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000417 textureMatrix.postIDiv(src->width(), src->height());
joshualittb0a8a372014-09-23 09:50:21 -0700418 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000419 if (unpremul) {
bsalomon4a339522015-10-06 08:40:50 -0700420 fp.reset(this->createPMToUPMEffect(src->asTexture(), tempDrawInfo.fSwapRAndB,
bsalomon39826022015-07-23 08:07:21 -0700421 textureMatrix));
joshualittb0a8a372014-09-23 09:50:21 -0700422 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000423 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon39826022015-07-23 08:07:21 -0700424 } else if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) {
425 // We only wanted to do the draw in order to perform the unpremul so don't
426 // bother.
halcanary96fcdcc2015-08-27 07:41:13 -0700427 temp.reset(nullptr);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000428 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000429 }
bsalomon39826022015-07-23 08:07:21 -0700430 if (!fp && temp) {
bsalomon4a339522015-10-06 08:40:50 -0700431 fp.reset(GrConfigConversionEffect::Create(src->asTexture(), tempDrawInfo.fSwapRAndB,
bsalomon39826022015-07-23 08:07:21 -0700432 GrConfigConversionEffect::kNone_PMConversion, textureMatrix));
433 }
434 if (fp) {
egdanielc4b72722015-11-23 13:20:41 -0800435 GrPaint paint;
bsalomonac856c92015-08-27 06:30:17 -0700436 paint.addColorFragmentProcessor(fp);
egdanielc4b72722015-11-23 13:20:41 -0800437 paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode);
bsalomon39826022015-07-23 08:07:21 -0700438 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
robertphillips2e1e51f2015-10-15 08:01:48 -0700439 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(temp->asRenderTarget()));
440 drawContext->drawRect(GrClip::WideOpen(), paint, SkMatrix::I(), rect, nullptr);
bsalomon6cb3cbe2015-07-30 07:34:27 -0700441 surfaceToRead.reset(SkRef(temp.get()));
bsalomon39826022015-07-23 08:07:21 -0700442 left = 0;
443 top = 0;
444 didTempDraw = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000445 }
bsalomon@google.com0342a852012-08-20 19:22:38 +0000446 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000447 }
joshualitt5c55fef2014-10-31 14:04:35 -0700448
bsalomon39826022015-07-23 08:07:21 -0700449 if (GrGpu::kRequireDraw_DrawPreference == drawPreference && !didTempDraw) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000450 return false;
451 }
bsalomon39826022015-07-23 08:07:21 -0700452 GrPixelConfig configToRead = dstConfig;
453 if (didTempDraw) {
bsalomon6cb3cbe2015-07-30 07:34:27 -0700454 this->flushSurfaceWrites(surfaceToRead);
bsalomon39826022015-07-23 08:07:21 -0700455 // We swapped R and B while doing the temp draw. Swap back on the read.
456 if (tempDrawInfo.fSwapRAndB) {
457 configToRead = GrPixelConfigSwapRAndB(dstConfig);
458 }
459 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700460 if (!fGpu->readPixels(surfaceToRead, left, top, width, height, configToRead, buffer,
461 rowBytes)) {
bsalomon39826022015-07-23 08:07:21 -0700462 return false;
463 }
464
465 // Perform umpremul conversion if we weren't able to perform it as a draw.
466 if (unpremul) {
reed@google.com7111d462014-03-25 16:20:24 +0000467 SkDstPixelInfo dstPI;
halcanary96fcdcc2015-08-27 07:41:13 -0700468 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, nullptr)) {
reed@google.com7111d462014-03-25 16:20:24 +0000469 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000470 }
reed@google.com7111d462014-03-25 16:20:24 +0000471 dstPI.fAlphaType = kUnpremul_SkAlphaType;
472 dstPI.fPixels = buffer;
473 dstPI.fRowBytes = rowBytes;
474
475 SkSrcPixelInfo srcPI;
bsalomon39826022015-07-23 08:07:21 -0700476 srcPI.fColorType = dstPI.fColorType;
reed@google.com7111d462014-03-25 16:20:24 +0000477 srcPI.fAlphaType = kPremul_SkAlphaType;
478 srcPI.fPixels = buffer;
479 srcPI.fRowBytes = rowBytes;
480
481 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000482 }
483 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000484}
485
bsalomonc49e8682015-06-30 11:37:35 -0700486void GrContext::prepareSurfaceForExternalIO(GrSurface* surface) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800487 RETURN_IF_ABANDONED
bsalomon87a94eb2014-11-03 14:28:32 -0800488 SkASSERT(surface);
489 ASSERT_OWNED_RESOURCE(surface);
490 if (surface->surfacePriv().hasPendingIO()) {
491 this->flush();
492 }
493 GrRenderTarget* rt = surface->asRenderTarget();
494 if (fGpu && rt) {
495 fGpu->resolveRenderTarget(rt);
bsalomon41ebbdd2014-08-04 08:31:39 -0700496 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000497}
498
bsalomonf80bfed2014-10-07 05:56:02 -0700499void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
500 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800501 RETURN_IF_ABANDONED
robertphillipsea461502015-05-26 11:38:03 -0700502 if (!src || !dst) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000503 return;
504 }
bsalomone3d4bf22014-09-23 09:15:03 -0700505 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -0700506 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -0400507
bsalomonf80bfed2014-10-07 05:56:02 -0700508 // Since we're going to the draw target and not GPU, no need to check kNoFlush
509 // here.
robertphillipsea461502015-05-26 11:38:03 -0700510 if (!dst->asRenderTarget()) {
junov96c118e2014-09-26 13:09:47 -0700511 return;
512 }
robertphillipsea461502015-05-26 11:38:03 -0700513
robertphillips2e1e51f2015-10-15 08:01:48 -0700514 SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(dst->asRenderTarget()));
robertphillipsea461502015-05-26 11:38:03 -0700515 if (!drawContext) {
516 return;
517 }
518
robertphillips2e1e51f2015-10-15 08:01:48 -0700519 drawContext->copySurface(src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -0700520
521 if (kFlushWrites_PixelOp & pixelOpsFlags) {
522 this->flush();
523 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000524}
525
bsalomonf80bfed2014-10-07 05:56:02 -0700526void GrContext::flushSurfaceWrites(GrSurface* surface) {
joshualitt5f5a8d72015-02-25 14:09:45 -0800527 RETURN_IF_ABANDONED
bsalomonf80bfed2014-10-07 05:56:02 -0700528 if (surface->surfacePriv().hasPendingWrite()) {
529 this->flush();
530 }
531}
532
bsalomon@google.com27847de2011-02-22 20:59:41 +0000533////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000534int GrContext::getRecommendedSampleCount(GrPixelConfig config,
535 SkScalar dpi) const {
bsalomon76228632015-05-29 08:02:10 -0700536 if (!this->caps()->isConfigRenderable(config, true)) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000537 return 0;
538 }
539 int chosenSampleCount = 0;
jvanverthe9c0fc62015-04-29 11:18:05 -0700540 if (fGpu->caps()->shaderCaps()->pathRenderingSupport()) {
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000541 if (dpi >= 250.0f) {
542 chosenSampleCount = 4;
543 } else {
544 chosenSampleCount = 16;
545 }
546 }
547 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
548 chosenSampleCount : 0;
549}
550
robertphillips77a2e522015-10-17 07:43:27 -0700551
552GrDrawContext* GrContext::drawContext(GrRenderTarget* rt, const SkSurfaceProps* surfaceProps) {
553 return fDrawingManager->drawContext(rt, surfaceProps);
554}
555
556bool GrContext::abandoned() const {
557 return fDrawingManager->abandoned();
558}
559
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000560namespace {
561void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
562 GrConfigConversionEffect::PMConversion pmToUPM;
563 GrConfigConversionEffect::PMConversion upmToPM;
564 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
565 *pmToUPMValue = pmToUPM;
566 *upmToPMValue = upmToPM;
567}
568}
569
bsalomon6c6f6582015-09-10 08:12:46 -0700570void GrContext::testPMConversionsIfNecessary(uint32_t flags) {
571 if (SkToBool(kUnpremul_PixelOpsFlag & flags)) {
572 SkAutoMutexAcquire ama(fTestPMConversionsMutex);
573 if (!fDidTestPMConversions) {
574 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
575 fDidTestPMConversions = true;
576 }
577 }
578}
579
bsalomon4a339522015-10-06 08:40:50 -0700580const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture,
joshualittb0a8a372014-09-23 09:50:21 -0700581 bool swapRAndB,
bsalomon6c6f6582015-09-10 08:12:46 -0700582 const SkMatrix& matrix) const {
583 // We should have already called this->testPMConversionsIfNecessary().
584 SkASSERT(fDidTestPMConversions);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000585 GrConfigConversionEffect::PMConversion pmToUPM =
586 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
587 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon4a339522015-10-06 08:40:50 -0700588 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000589 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700590 return nullptr;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000591 }
592}
593
bsalomon4a339522015-10-06 08:40:50 -0700594const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture,
joshualittb0a8a372014-09-23 09:50:21 -0700595 bool swapRAndB,
bsalomon6c6f6582015-09-10 08:12:46 -0700596 const SkMatrix& matrix) const {
597 // We should have already called this->testPMConversionsIfNecessary().
598 SkASSERT(fDidTestPMConversions);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000599 GrConfigConversionEffect::PMConversion upmToPM =
600 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
601 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon4a339522015-10-06 08:40:50 -0700602 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000603 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700604 return nullptr;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000605 }
606}
607
bsalomon636e8022015-07-29 06:08:46 -0700608bool GrContext::didFailPMUPMConversionTest() const {
bsalomon6c6f6582015-09-10 08:12:46 -0700609 // We should have already called this->testPMConversionsIfNecessary().
610 SkASSERT(fDidTestPMConversions);
bsalomon636e8022015-07-29 06:08:46 -0700611 // The PM<->UPM tests fail or succeed together so we only need to check one.
bsalomon6c6f6582015-09-10 08:12:46 -0700612 return GrConfigConversionEffect::kNone_PMConversion == fPMToUPMConversion;
bsalomon636e8022015-07-29 06:08:46 -0700613}
614
bsalomon37f9a262015-02-02 13:00:10 -0800615//////////////////////////////////////////////////////////////////////////////
616
617void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
618 if (maxTextures) {
bsalomon0ea80f42015-02-11 10:49:59 -0800619 *maxTextures = fResourceCache->getMaxResourceCount();
bsalomon37f9a262015-02-02 13:00:10 -0800620 }
621 if (maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800622 *maxTextureBytes = fResourceCache->getMaxResourceBytes();
bsalomon37f9a262015-02-02 13:00:10 -0800623 }
624}
625
626void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
bsalomon0ea80f42015-02-11 10:49:59 -0800627 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon37f9a262015-02-02 13:00:10 -0800628}
629
ericrk0a5fa482015-09-15 14:16:10 -0700630//////////////////////////////////////////////////////////////////////////////
631
632void GrContext::dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const {
633 fResourceCache->dumpMemoryStatistics(traceMemoryDump);
634}