blob: 07073a5ee5d2a9a248df846b76a531c929058add [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
jvanverth@google.combfe2b9d2013-09-06 16:57:29 +000011#include "GrAARectRenderer.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000012#include "GrBufferAllocPool.h"
joshualitt5478d422014-11-14 16:00:38 -080013#include "GrDefaultGeoProcFactory.h"
jvanverth787cdf92014-12-04 10:46:50 -080014#include "GrFontCache.h"
bsalomon453cf402014-11-11 14:15:57 -080015#include "GrGpuResource.h"
16#include "GrGpuResourceCacheAccess.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070017#include "GrDistanceFieldTextContext.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000018#include "GrDrawTargetCaps.h"
joshualitt5478d422014-11-14 16:00:38 -080019#include "GrGpu.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000020#include "GrIndexBuffer.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000021#include "GrInOrderDrawBuffer.h"
robertphillips@google.come930a072014-04-03 00:34:27 +000022#include "GrLayerCache.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000023#include "GrOvalRenderer.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000024#include "GrPathRenderer.h"
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000025#include "GrPathUtils.h"
bsalomonc8dc1f72014-08-21 13:02:13 -070026#include "GrResourceCache2.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000027#include "GrSoftwarePathRenderer.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070028#include "GrStencilAndCoverTextContext.h"
egdanield58a0ba2014-06-11 10:30:05 -070029#include "GrStrokeInfo.h"
bsalomonafbf2d62014-09-30 12:18:44 -070030#include "GrSurfacePriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070031#include "GrTexturePriv.h"
egdanielbbcb38d2014-06-19 10:19:29 -070032#include "GrTraceMarker.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000033#include "GrTracing.h"
egdanield58a0ba2014-06-11 10:30:05 -070034#include "SkDashPathPriv.h"
bsalomon81beccc2014-10-13 12:32:55 -070035#include "SkConfig8888.h"
reed@google.com7111d462014-03-25 16:20:24 +000036#include "SkGr.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000037#include "SkRRect.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000038#include "SkStrokeRec.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000039#include "SkTLazy.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000040#include "SkTLS.h"
commit-bot@chromium.org933e65d2014-03-20 20:00:24 +000041#include "SkTraceEvent.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000042
joshualitt5478d422014-11-14 16:00:38 -080043#include "effects/GrConfigConversionEffect.h"
44#include "effects/GrDashingEffect.h"
45#include "effects/GrSingleTextureEffect.h"
46
bsalomon@google.com60361492012-03-15 17:47:06 +000047static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15;
bsalomon@google.com27847de2011-02-22 20:59:41 +000048static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4;
49
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000050static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11;
51static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4;
bsalomon@google.com27847de2011-02-22 20:59:41 +000052
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000053#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
bsalomon@google.combc4b6542011-11-19 13:56:11 +000054
bsalomonf21dab92014-11-13 13:33:28 -080055class GrContext::AutoCheckFlush {
56public:
57 AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(context); }
58
59 ~AutoCheckFlush() {
60 if (fContext->fFlushToReduceCacheSize) {
61 fContext->flush();
62 }
63 }
64
65private:
66 GrContext* fContext;
67};
68
krajcevski9c6d4d72014-08-12 07:26:25 -070069GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
70 const Options* opts) {
71 GrContext* context;
72 if (NULL == opts) {
73 context = SkNEW_ARGS(GrContext, (Options()));
74 } else {
75 context = SkNEW_ARGS(GrContext, (*opts));
76 }
77
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000078 if (context->init(backend, backendContext)) {
79 return context;
80 } else {
81 context->unref();
82 return NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +000083 }
bsalomon@google.com27847de2011-02-22 20:59:41 +000084}
85
krajcevski9c6d4d72014-08-12 07:26:25 -070086GrContext::GrContext(const Options& opts) : fOptions(opts) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000087 fGpu = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +000088 fClip = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000089 fPathRendererChain = NULL;
90 fSoftwarePathRenderer = NULL;
bsalomonc8dc1f72014-08-21 13:02:13 -070091 fResourceCache2 = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000092 fFontCache = NULL;
93 fDrawBuffer = NULL;
94 fDrawBufferVBAllocPool = NULL;
95 fDrawBufferIBAllocPool = NULL;
bsalomonf21dab92014-11-13 13:33:28 -080096 fFlushToReduceCacheSize = false;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000097 fAARectRenderer = NULL;
commit-bot@chromium.org81312832013-03-22 18:34:09 +000098 fOvalRenderer = NULL;
robertphillips@google.com44a91dc2013-07-25 15:32:06 +000099 fMaxTextureSizeOverride = 1 << 20;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000100}
101
102bool GrContext::init(GrBackend backend, GrBackendContext backendContext) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000103 SkASSERT(NULL == fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000104
105 fGpu = GrGpu::Create(backend, backendContext, this);
106 if (NULL == fGpu) {
107 return false;
108 }
bsalomon33435572014-11-05 14:47:41 -0800109 this->initCommon();
110 return true;
111}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000112
bsalomon33435572014-11-05 14:47:41 -0800113void GrContext::initCommon() {
bsalomonc8dc1f72014-08-21 13:02:13 -0700114 fResourceCache2 = SkNEW(GrResourceCache2);
bsalomon71cb0c22014-11-14 12:10:14 -0800115 fResourceCache2->setOverBudgetCallback(OverBudgetCB, this);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000116
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000117 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
118
robertphillips4ec84da2014-06-24 13:10:43 -0700119 fLayerCache.reset(SkNEW_ARGS(GrLayerCache, (this)));
robertphillips@google.come930a072014-04-03 00:34:27 +0000120
joshualittb44293e2014-10-28 08:12:18 -0700121 fAARectRenderer = SkNEW_ARGS(GrAARectRenderer, (fGpu));
joshualitt5531d512014-12-17 15:50:11 -0800122 fOvalRenderer = SkNEW_ARGS(GrOvalRenderer, (fGpu));
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000123
124 fDidTestPMConversions = false;
125
126 this->setupDrawBuffer();
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000127}
128
bsalomon@google.com27847de2011-02-22 20:59:41 +0000129GrContext::~GrContext() {
bsalomon@google.com733c0622013-04-24 17:59:32 +0000130 if (NULL == fGpu) {
131 return;
132 }
133
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000134 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000135
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000136 for (int i = 0; i < fCleanUpData.count(); ++i) {
137 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
138 }
139
bsalomon33435572014-11-05 14:47:41 -0800140 SkDELETE(fResourceCache2);
bsalomon33435572014-11-05 14:47:41 -0800141 SkDELETE(fFontCache);
142 SkDELETE(fDrawBuffer);
143 SkDELETE(fDrawBufferVBAllocPool);
144 SkDELETE(fDrawBufferIBAllocPool);
bsalomon@google.com30085192011-08-19 15:42:31 +0000145
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000146 fAARectRenderer->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000147 fOvalRenderer->unref();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000148
bsalomon@google.com205d4602011-04-25 12:43:45 +0000149 fGpu->unref();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000150 SkSafeUnref(fPathRendererChain);
151 SkSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000152}
153
bsalomon2354f842014-07-28 13:48:36 -0700154void GrContext::abandonContext() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000155 // abandon first to so destructors
156 // don't try to free the resources in the API.
bsalomonc8dc1f72014-08-21 13:02:13 -0700157 fResourceCache2->abandonAll();
158
robertphillipse3371302014-09-17 06:01:06 -0700159 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000160
bsalomon@google.com30085192011-08-19 15:42:31 +0000161 // a path renderer may be holding onto resources that
162 // are now unusable
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000163 SkSafeSetNull(fPathRendererChain);
164 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000165
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000166 delete fDrawBuffer;
167 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000168
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000169 delete fDrawBufferVBAllocPool;
170 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000171
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000172 delete fDrawBufferIBAllocPool;
173 fDrawBufferIBAllocPool = NULL;
174
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000175 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000176 fOvalRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000177
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000178 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000179 fLayerCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000180}
181
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000182void GrContext::resetContext(uint32_t state) {
183 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000184}
185
186void GrContext::freeGpuResources() {
187 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000188
bsalomon49f085d2014-09-05 13:34:00 -0700189 if (fDrawBuffer) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700190 fDrawBuffer->purgeResources();
191 }
robertphillips@google.comff175842012-05-14 19:31:39 +0000192
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000193 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000194 fOvalRenderer->reset();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000195
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000196 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000197 fLayerCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000198 // a path renderer may be holding onto resources
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000199 SkSafeSetNull(fPathRendererChain);
200 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000201}
202
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000203void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon71cb0c22014-11-14 12:10:14 -0800204 if (resourceCount) {
bsalomondace19e2014-11-17 07:34:06 -0800205 *resourceCount = fResourceCache2->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800206 }
207 if (resourceBytes) {
bsalomondace19e2014-11-17 07:34:06 -0800208 *resourceBytes = fResourceCache2->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800209 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000210}
211
kkinnunenc6cb56f2014-06-24 00:12:27 -0700212GrTextContext* GrContext::createTextContext(GrRenderTarget* renderTarget,
213 const SkDeviceProperties&
214 leakyProperties,
215 bool enableDistanceFieldFonts) {
jvanverth8c27a182014-10-14 08:45:50 -0700216 if (fGpu->caps()->pathRenderingSupport() && renderTarget->getStencilBuffer() &&
217 renderTarget->isMultisampled()) {
218 return GrStencilAndCoverTextContext::Create(this, leakyProperties);
219 }
220
221 return GrDistanceFieldTextContext::Create(this, leakyProperties, enableDistanceFieldFonts);
kkinnunenc6cb56f2014-06-24 00:12:27 -0700222}
223
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000224////////////////////////////////////////////////////////////////////////////////
225
bsalomon37f9a262015-02-02 13:00:10 -0800226GrTexture* GrContext::createTexture(const GrSurfaceDesc& desc, const void* srcData,
227 size_t rowBytes) {
228 return fGpu->createTexture(desc, true, srcData, rowBytes);
bsalomon24db3b12015-01-23 04:24:04 -0800229}
230
bsalomonf2703d82014-10-28 14:33:06 -0700231GrTexture* GrContext::refScratchTexture(const GrSurfaceDesc& inDesc, ScratchTexMatch match,
bsalomone3059732014-10-14 11:47:22 -0700232 bool calledDuringFlush) {
bsalomonbcf0a522014-10-08 08:40:09 -0700233 // kNoStencil has no meaning if kRT isn't set.
bsalomonf2703d82014-10-28 14:33:06 -0700234 SkASSERT((inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
235 !(inDesc.fFlags & kNoStencil_GrSurfaceFlag));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000236
bsalomonbcf0a522014-10-08 08:40:09 -0700237 // Make sure caller has checked for renderability if kRT is set.
bsalomonf2703d82014-10-28 14:33:06 -0700238 SkASSERT(!(inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
bsalomonbcf0a522014-10-08 08:40:09 -0700239 this->isConfigRenderable(inDesc.fConfig, inDesc.fSampleCnt > 0));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000240
bsalomonf2703d82014-10-28 14:33:06 -0700241 SkTCopyOnFirstWrite<GrSurfaceDesc> desc(inDesc);
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000242
bsalomonf2703d82014-10-28 14:33:06 -0700243 if (fGpu->caps()->reuseScratchTextures() || (desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
244 GrSurfaceFlags origFlags = desc->fFlags;
bsalomonbcf0a522014-10-08 08:40:09 -0700245 if (kApprox_ScratchTexMatch == match) {
246 // bin by pow2 with a reasonable min
247 static const int MIN_SIZE = 16;
bsalomonf2703d82014-10-28 14:33:06 -0700248 GrSurfaceDesc* wdesc = desc.writable();
bsalomonbcf0a522014-10-08 08:40:09 -0700249 wdesc->fWidth = SkTMax(MIN_SIZE, GrNextPow2(desc->fWidth));
250 wdesc->fHeight = SkTMax(MIN_SIZE, GrNextPow2(desc->fHeight));
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000251 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000252
bsalomonbcf0a522014-10-08 08:40:09 -0700253 do {
bsalomon7775c852014-12-30 12:50:52 -0800254 GrScratchKey key;
255 GrTexturePriv::ComputeScratchKey(*desc, &key);
bsalomon000f8292014-10-15 19:04:14 -0700256 uint32_t scratchFlags = 0;
257 if (calledDuringFlush) {
258 scratchFlags = GrResourceCache2::kRequireNoPendingIO_ScratchFlag;
bsalomonf2703d82014-10-28 14:33:06 -0700259 } else if (!(desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
bsalomon000f8292014-10-15 19:04:14 -0700260 // If it is not a render target then it will most likely be populated by
261 // writePixels() which will trigger a flush if the texture has pending IO.
262 scratchFlags = GrResourceCache2::kPreferNoPendingIO_ScratchFlag;
263 }
264 GrGpuResource* resource = fResourceCache2->findAndRefScratchResource(key, scratchFlags);
bsalomonbcf0a522014-10-08 08:40:09 -0700265 if (resource) {
bsalomon66e09a82015-01-26 11:46:52 -0800266 GrSurface* surface = static_cast<GrSurface*>(resource);
267 GrRenderTarget* rt = surface->asRenderTarget();
268 if (rt && fGpu->caps()->discardRenderTargetSupport()) {
269 rt->discard();
270 }
271 return surface->asTexture();
bsalomonbcf0a522014-10-08 08:40:09 -0700272 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000273
bsalomonbcf0a522014-10-08 08:40:09 -0700274 if (kExact_ScratchTexMatch == match) {
275 break;
276 }
277 // We had a cache miss and we are in approx mode, relax the fit of the flags.
278
279 // We no longer try to reuse textures that were previously used as render targets in
280 // situations where no RT is needed; doing otherwise can confuse the video driver and
281 // cause significant performance problems in some cases.
bsalomonf2703d82014-10-28 14:33:06 -0700282 if (desc->fFlags & kNoStencil_GrSurfaceFlag) {
283 desc.writable()->fFlags = desc->fFlags & ~kNoStencil_GrSurfaceFlag;
bsalomonbcf0a522014-10-08 08:40:09 -0700284 } else {
285 break;
286 }
287
288 } while (true);
289
290 desc.writable()->fFlags = origFlags;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000291 }
292
bsalomon5236cf42015-01-14 10:42:08 -0800293 GrTexture* texture = fGpu->createTexture(*desc, true, NULL, 0);
bsalomon7775c852014-12-30 12:50:52 -0800294#ifdef SK_DEBUG
bsalomone167f962015-01-27 09:56:04 -0800295 if (fGpu->caps()->reuseScratchTextures() || (desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
296 GrScratchKey key;
297 GrTexturePriv::ComputeScratchKey(*desc, &key);
298 SkASSERT(NULL == texture || texture->cacheAccess().getScratchKey() == key);
299 }
bsalomon7775c852014-12-30 12:50:52 -0800300#endif
bsalomonbcf0a522014-10-08 08:40:09 -0700301 return texture;
Brian Salomon9323b8b2014-10-07 15:07:38 -0400302}
303
bsalomon71cb0c22014-11-14 12:10:14 -0800304void GrContext::OverBudgetCB(void* data) {
bsalomon66a450f2014-11-13 13:19:10 -0800305 SkASSERT(data);
bsalomonf21dab92014-11-13 13:33:28 -0800306
bsalomon66a450f2014-11-13 13:19:10 -0800307 GrContext* context = reinterpret_cast<GrContext*>(data);
bsalomonf21dab92014-11-13 13:33:28 -0800308
309 // Flush the InOrderDrawBuffer to possibly free up some textures
310 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000311}
312
bsalomon5236cf42015-01-14 10:42:08 -0800313GrTexture* GrContext::createUncachedTexture(const GrSurfaceDesc& desc,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000314 void* srcData,
315 size_t rowBytes) {
bsalomon5236cf42015-01-14 10:42:08 -0800316 return fGpu->createTexture(desc, false, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000317}
318
bsalomon@google.com91958362011-06-13 17:58:13 +0000319int GrContext::getMaxTextureSize() const {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000320 return SkTMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride);
bsalomon@google.com91958362011-06-13 17:58:13 +0000321}
322
323int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000324 return fGpu->caps()->maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000325}
326
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000327int GrContext::getMaxSampleCount() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000328 return fGpu->caps()->maxSampleCount();
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000329}
330
bsalomon@google.com27847de2011-02-22 20:59:41 +0000331///////////////////////////////////////////////////////////////////////////////
332
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000333GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) {
334 return fGpu->wrapBackendTexture(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000335}
336
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000337GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
338 return fGpu->wrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000339}
340
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000341///////////////////////////////////////////////////////////////////////////////
342
bsalomon37f9a262015-02-02 13:00:10 -0800343bool GrContext::supportsIndex8PixelConfig() const {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000344 const GrDrawTargetCaps* caps = fGpu->caps();
bsalomon37f9a262015-02-02 13:00:10 -0800345 return caps->isConfigTexturable(kIndex_8_GrPixelConfig);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000346}
347
bsalomon@google.com27847de2011-02-22 20:59:41 +0000348
bsalomon@google.com27847de2011-02-22 20:59:41 +0000349////////////////////////////////////////////////////////////////////////////////
350
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000351void GrContext::clear(const SkIRect* rect,
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000352 const GrColor color,
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000353 bool canIgnoreRect,
bsalomon41ebbdd2014-08-04 08:31:39 -0700354 GrRenderTarget* renderTarget) {
355 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomon89c62982014-11-03 12:08:42 -0800356 SkASSERT(renderTarget);
357
bsalomonf21dab92014-11-13 13:33:28 -0800358 AutoCheckFlush acf(this);
egdanield78a1682014-07-09 10:41:26 -0700359 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::clear", this);
joshualitt8059eb92014-12-29 15:10:07 -0800360 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700361 if (NULL == target) {
362 return;
363 }
364 target->clear(rect, color, canIgnoreRect, renderTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000365}
366
joshualitt5531d512014-12-17 15:50:11 -0800367void GrContext::drawPaint(const GrPaint& origPaint, const SkMatrix& viewMatrix) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000368 // set rect to be big enough to fill the space, but not super-huge, so we
369 // don't overflow fixed-point implementations
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000370 SkRect r;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000371 r.setLTRB(0, 0,
bsalomon@google.com81712882012-11-01 17:12:34 +0000372 SkIntToScalar(getRenderTarget()->width()),
373 SkIntToScalar(getRenderTarget()->height()));
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000374 SkTCopyOnFirstWrite<GrPaint> paint(origPaint);
joshualitt8fc6c2d2014-12-22 15:27:05 -0800375
376 // by definition this fills the entire clip, no need for AA
377 if (paint->isAntiAlias()) {
378 paint.writable()->setAntiAlias(false);
379 }
380
381 bool isPerspective = viewMatrix.hasPerspective();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000382
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000383 // We attempt to map r by the inverse matrix and draw that. mapRect will
384 // map the four corners and bound them with a new rect. This will not
385 // produce a correct result for some perspective matrices.
joshualitt8fc6c2d2014-12-22 15:27:05 -0800386 if (!isPerspective) {
joshualitt5531d512014-12-17 15:50:11 -0800387 SkMatrix inverse;
388 if (!viewMatrix.invert(&inverse)) {
tfarina38406c82014-10-31 07:11:12 -0700389 SkDebugf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000390 return;
391 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000392 inverse.mapRect(&r);
joshualitt8fc6c2d2014-12-22 15:27:05 -0800393 this->drawRect(*paint, viewMatrix, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000394 } else {
joshualitt8fc6c2d2014-12-22 15:27:05 -0800395 SkMatrix localMatrix;
396 if (!viewMatrix.invert(&localMatrix)) {
tfarina38406c82014-10-31 07:11:12 -0700397 SkDebugf("Could not invert matrix\n");
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000398 return;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000399 }
joshualitt8fc6c2d2014-12-22 15:27:05 -0800400
401 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800402 GrPipelineBuilder pipelineBuilder;
403 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, paint, &acf);
joshualitt8fc6c2d2014-12-22 15:27:05 -0800404 if (NULL == target) {
405 return;
406 }
407
408 GR_CREATE_TRACE_MARKER("GrContext::drawPaintWithPerspective", target);
egdaniel8dd688b2015-01-22 10:16:09 -0800409 target->drawRect(&pipelineBuilder, paint->getColor(), SkMatrix::I(), r, NULL, &localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000410 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000411}
412
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000413#ifdef SK_DEVELOPER
414void GrContext::dumpFontCache() const {
415 fFontCache->dump();
416}
417#endif
418
bsalomon@google.com205d4602011-04-25 12:43:45 +0000419////////////////////////////////////////////////////////////////////////////////
420
bsalomon@google.com27847de2011-02-22 20:59:41 +0000421/* create a triangle strip that strokes the specified triangle. There are 8
422 unique vertices, but we repreat the last 2 to close up. Alternatively we
423 could use an indices array, and then only send 8 verts, but not sure that
424 would be faster.
425 */
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000426static void setStrokeRectStrip(SkPoint verts[10], SkRect rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000427 SkScalar width) {
428 const SkScalar rad = SkScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000429 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000430
431 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
432 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
433 verts[2].set(rect.fRight - rad, rect.fTop + rad);
434 verts[3].set(rect.fRight + rad, rect.fTop - rad);
435 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
436 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
437 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
438 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
439 verts[8] = verts[0];
440 verts[9] = verts[1];
441}
442
bsalomonc30aaa02014-08-13 07:15:29 -0700443static inline bool is_irect(const SkRect& r) {
tfarina38406c82014-10-31 07:11:12 -0700444 return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
445 SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
bsalomonc30aaa02014-08-13 07:15:29 -0700446}
447
bsalomon@google.com205d4602011-04-25 12:43:45 +0000448static bool apply_aa_to_rect(GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -0800449 GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -0800450 SkRect* devBoundRect,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000451 const SkRect& rect,
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000452 SkScalar strokeWidth,
joshualitt2e3b3e32014-12-09 13:31:14 -0800453 const SkMatrix& combinedMatrix,
454 GrColor color) {
egdaniel8dd688b2015-01-22 10:16:09 -0800455 if (!pipelineBuilder->canTweakAlphaForCoverage() &&
456 !pipelineBuilder->canUseFracCoveragePrimProc(color, *target->caps())) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000457#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700458 //SkDebugf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000459#endif
bsalomon9c0822a2014-08-11 11:07:48 -0700460 return false;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000461 }
joshualitt9853cce2014-11-17 14:22:48 -0800462
egdaniel8dd688b2015-01-22 10:16:09 -0800463 if (pipelineBuilder->getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000464 return false;
465 }
466
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000467#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000468 if (strokeWidth >= 0) {
469#endif
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000470 if (!combinedMatrix.preservesAxisAlignment()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000471 return false;
472 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000473
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000474#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000475 } else {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000476 if (!combinedMatrix.preservesRightAngles()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000477 return false;
478 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000479 }
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000480#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000481
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000482 combinedMatrix.mapRect(devBoundRect, rect);
derekfe638d1c2014-12-02 13:51:29 -0800483 if (!combinedMatrix.rectStaysRect()) {
484 return true;
485 }
486
bsalomonc30aaa02014-08-13 07:15:29 -0700487 if (strokeWidth < 0) {
488 return !is_irect(*devBoundRect);
489 }
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000490
bsalomon9c0822a2014-08-11 11:07:48 -0700491 return true;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000492}
493
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000494static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
495 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
496 point.fY >= rect.fTop && point.fY <= rect.fBottom;
497}
498
bsalomon@google.com27847de2011-02-22 20:59:41 +0000499void GrContext::drawRect(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800500 const SkMatrix& viewMatrix,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000501 const SkRect& rect,
bsalomon01c8da12014-08-04 09:21:30 -0700502 const GrStrokeInfo* strokeInfo) {
bsalomon49f085d2014-09-05 13:34:00 -0700503 if (strokeInfo && strokeInfo->isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700504 SkPath path;
505 path.addRect(rect);
joshualitt5531d512014-12-17 15:50:11 -0800506 this->drawPath(paint, viewMatrix, path, *strokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700507 return;
508 }
509
bsalomonf21dab92014-11-13 13:33:28 -0800510 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800511 GrPipelineBuilder pipelineBuilder;
512 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700513 if (NULL == target) {
514 return;
515 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000516
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000517 GR_CREATE_TRACE_MARKER("GrContext::drawRect", target);
egdanield58a0ba2014-06-11 10:30:05 -0700518 SkScalar width = NULL == strokeInfo ? -1 : strokeInfo->getStrokeRec().getWidth();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000519
520 // Check if this is a full RT draw and can be replaced with a clear. We don't bother checking
521 // cases where the RT is fully inside a stroke.
522 if (width < 0) {
523 SkRect rtRect;
egdaniel8dd688b2015-01-22 10:16:09 -0800524 pipelineBuilder.getRenderTarget()->getBoundsRect(&rtRect);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000525 SkRect clipSpaceRTRect = rtRect;
526 bool checkClip = false;
bsalomon49f085d2014-09-05 13:34:00 -0700527 if (this->getClip()) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000528 checkClip = true;
529 clipSpaceRTRect.offset(SkIntToScalar(this->getClip()->fOrigin.fX),
530 SkIntToScalar(this->getClip()->fOrigin.fY));
531 }
532 // Does the clip contain the entire RT?
533 if (!checkClip || target->getClip()->fClipStack->quickContains(clipSpaceRTRect)) {
534 SkMatrix invM;
joshualitt8059eb92014-12-29 15:10:07 -0800535 if (!viewMatrix.invert(&invM)) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000536 return;
537 }
538 // Does the rect bound the RT?
539 SkPoint srcSpaceRTQuad[4];
540 invM.mapRectToQuad(srcSpaceRTQuad, rtRect);
541 if (rect_contains_inclusive(rect, srcSpaceRTQuad[0]) &&
542 rect_contains_inclusive(rect, srcSpaceRTQuad[1]) &&
543 rect_contains_inclusive(rect, srcSpaceRTQuad[2]) &&
544 rect_contains_inclusive(rect, srcSpaceRTQuad[3])) {
545 // Will it blend?
546 GrColor clearColor;
547 if (paint.isOpaqueAndConstantColor(&clearColor)) {
bsalomon89c62982014-11-03 12:08:42 -0800548 target->clear(NULL, clearColor, true, fRenderTarget);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000549 return;
550 }
551 }
552 }
553 }
554
joshualitt2e3b3e32014-12-09 13:31:14 -0800555 GrColor color = paint.getColor();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000556 SkRect devBoundRect;
egdaniel8dd688b2015-01-22 10:16:09 -0800557 bool needAA = paint.isAntiAlias() && !pipelineBuilder.getRenderTarget()->isMultisampled();
558 bool doAA = needAA && apply_aa_to_rect(target, &pipelineBuilder, &devBoundRect, rect, width,
joshualitt8059eb92014-12-29 15:10:07 -0800559 viewMatrix, color);
egdanield58a0ba2014-06-11 10:30:05 -0700560
bsalomon@google.com205d4602011-04-25 12:43:45 +0000561 if (doAA) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000562 if (width >= 0) {
bsalomon395ef052014-11-12 11:35:22 -0800563 const SkStrokeRec& strokeRec = strokeInfo->getStrokeRec();
joshualitt9853cce2014-11-17 14:22:48 -0800564 fAARectRenderer->strokeAARect(target,
egdaniel8dd688b2015-01-22 10:16:09 -0800565 &pipelineBuilder,
joshualitt2e3b3e32014-12-09 13:31:14 -0800566 color,
joshualitt8059eb92014-12-29 15:10:07 -0800567 viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800568 rect,
joshualitt9853cce2014-11-17 14:22:48 -0800569 devBoundRect,
570 strokeRec);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000571 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000572 // filled AA rect
joshualitt8059eb92014-12-29 15:10:07 -0800573 fAARectRenderer->fillAARect(target,
egdaniel8dd688b2015-01-22 10:16:09 -0800574 &pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -0800575 color,
576 viewMatrix,
577 rect,
joshualittd27f73e2014-12-29 07:43:36 -0800578 devBoundRect);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000579 }
580 return;
581 }
582
bsalomon@google.com27847de2011-02-22 20:59:41 +0000583 if (width >= 0) {
584 // TODO: consider making static vertex buffers for these cases.
bsalomon@google.com64386952013-02-08 21:22:44 +0000585 // Hairline could be done by just adding closing vertex to
586 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000587
bsalomon@google.com27847de2011-02-22 20:59:41 +0000588 static const int worstCaseVertCount = 10;
joshualitt8059eb92014-12-29 15:10:07 -0800589 SkAutoTUnref<const GrGeometryProcessor> gp(
590 GrDefaultGeoProcFactory::Create(GrDefaultGeoProcFactory::kPosition_GPType,
591 color,
592 viewMatrix,
593 SkMatrix::I()));
joshualitt9853cce2014-11-17 14:22:48 -0800594 GrDrawTarget::AutoReleaseGeometry geo(target,
595 worstCaseVertCount,
joshualitt2dd1ae02014-12-03 06:24:10 -0800596 gp->getVertexStride(),
joshualitt9853cce2014-11-17 14:22:48 -0800597 0);
joshualitt2dd1ae02014-12-03 06:24:10 -0800598 SkASSERT(gp->getVertexStride() == sizeof(SkPoint));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000599
600 if (!geo.succeeded()) {
tfarina38406c82014-10-31 07:11:12 -0700601 SkDebugf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000602 return;
603 }
604
605 GrPrimitiveType primType;
606 int vertCount;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000607 SkPoint* vertex = geo.positions();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000608
609 if (width > 0) {
610 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000611 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000612 setStrokeRectStrip(vertex, rect, width);
613 } else {
614 // hairline
615 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000616 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000617 vertex[0].set(rect.fLeft, rect.fTop);
618 vertex[1].set(rect.fRight, rect.fTop);
619 vertex[2].set(rect.fRight, rect.fBottom);
620 vertex[3].set(rect.fLeft, rect.fBottom);
621 vertex[4].set(rect.fLeft, rect.fTop);
622 }
623
egdaniel8dd688b2015-01-22 10:16:09 -0800624 target->drawNonIndexed(&pipelineBuilder, gp, primType, 0, vertCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000625 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000626 // filled BW rect
egdaniel8dd688b2015-01-22 10:16:09 -0800627 target->drawSimpleRect(&pipelineBuilder, color, viewMatrix, rect);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000628 }
629}
630
joshualitt16b27892014-12-18 07:47:16 -0800631void GrContext::drawNonAARectToRect(const GrPaint& paint,
632 const SkMatrix& viewMatrix,
633 const SkRect& rectToDraw,
634 const SkRect& localRect,
635 const SkMatrix* localMatrix) {
bsalomonf21dab92014-11-13 13:33:28 -0800636 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800637 GrPipelineBuilder pipelineBuilder;
638 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700639 if (NULL == target) {
640 return;
641 }
bsalomon@google.com64386952013-02-08 21:22:44 +0000642
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000643 GR_CREATE_TRACE_MARKER("GrContext::drawRectToRect", target);
644
egdaniel8dd688b2015-01-22 10:16:09 -0800645 target->drawRect(&pipelineBuilder, paint.getColor(), viewMatrix, rectToDraw, &localRect,
646 localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000647}
648
joshualitt56995b52014-12-11 15:44:02 -0800649static const GrGeometryProcessor* set_vertex_attributes(const SkPoint* texCoords,
650 const GrColor* colors,
651 int* colorOffset,
652 int* texOffset,
joshualitt8059eb92014-12-29 15:10:07 -0800653 GrColor color,
654 const SkMatrix& viewMatrix) {
robertphillips@google.com42903302013-04-20 12:26:07 +0000655 *texOffset = -1;
656 *colorOffset = -1;
joshualitt5478d422014-11-14 16:00:38 -0800657 uint32_t flags = GrDefaultGeoProcFactory::kPosition_GPType;
bsalomon49f085d2014-09-05 13:34:00 -0700658 if (texCoords && colors) {
joshualitt5478d422014-11-14 16:00:38 -0800659 *colorOffset = sizeof(SkPoint);
660 *texOffset = sizeof(SkPoint) + sizeof(GrColor);
661 flags |= GrDefaultGeoProcFactory::kColor_GPType |
662 GrDefaultGeoProcFactory::kLocalCoord_GPType;
bsalomon49f085d2014-09-05 13:34:00 -0700663 } else if (texCoords) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000664 *texOffset = sizeof(SkPoint);
joshualitt5478d422014-11-14 16:00:38 -0800665 flags |= GrDefaultGeoProcFactory::kLocalCoord_GPType;
bsalomon49f085d2014-09-05 13:34:00 -0700666 } else if (colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000667 *colorOffset = sizeof(SkPoint);
joshualitt5478d422014-11-14 16:00:38 -0800668 flags |= GrDefaultGeoProcFactory::kColor_GPType;
robertphillips@google.com42903302013-04-20 12:26:07 +0000669 }
joshualitt8059eb92014-12-29 15:10:07 -0800670 return GrDefaultGeoProcFactory::Create(flags, color, viewMatrix, SkMatrix::I());
robertphillips@google.com42903302013-04-20 12:26:07 +0000671}
672
bsalomon@google.com27847de2011-02-22 20:59:41 +0000673void GrContext::drawVertices(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800674 const SkMatrix& viewMatrix,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000675 GrPrimitiveType primitiveType,
676 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000677 const SkPoint positions[],
678 const SkPoint texCoords[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000679 const GrColor colors[],
680 const uint16_t indices[],
681 int indexCount) {
bsalomonf21dab92014-11-13 13:33:28 -0800682 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800683 GrPipelineBuilder pipelineBuilder;
bsalomonf21dab92014-11-13 13:33:28 -0800684 GrDrawTarget::AutoReleaseGeometry geo; // must be inside AutoCheckFlush scope
commit-bot@chromium.org5a567932014-01-08 21:26:09 +0000685
egdaniel8dd688b2015-01-22 10:16:09 -0800686 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700687 if (NULL == target) {
688 return;
689 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000690
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000691 GR_CREATE_TRACE_MARKER("GrContext::drawVertices", target);
692
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000693 int colorOffset = -1, texOffset = -1;
joshualitt56995b52014-12-11 15:44:02 -0800694 SkAutoTUnref<const GrGeometryProcessor> gp(
joshualitt8059eb92014-12-29 15:10:07 -0800695 set_vertex_attributes(texCoords, colors, &colorOffset, &texOffset,
696 paint.getColor(), viewMatrix));
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000697
joshualitt56995b52014-12-11 15:44:02 -0800698 size_t vertexStride = gp->getVertexStride();
joshualitt2dd1ae02014-12-03 06:24:10 -0800699 SkASSERT(vertexStride == sizeof(SkPoint) + (SkToBool(texCoords) ? sizeof(SkPoint) : 0)
700 + (SkToBool(colors) ? sizeof(GrColor) : 0));
joshualitt9853cce2014-11-17 14:22:48 -0800701 if (!geo.set(target, vertexCount, vertexStride, indexCount)) {
joshualittd1aa8ff2014-11-04 07:47:55 -0800702 SkDebugf("Failed to get space for vertices!\n");
703 return;
704 }
705 void* curVertex = geo.vertices();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000706
joshualittd1aa8ff2014-11-04 07:47:55 -0800707 for (int i = 0; i < vertexCount; ++i) {
708 *((SkPoint*)curVertex) = positions[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000709
joshualittd1aa8ff2014-11-04 07:47:55 -0800710 if (texOffset >= 0) {
711 *(SkPoint*)((intptr_t)curVertex + texOffset) = texCoords[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000712 }
joshualittd1aa8ff2014-11-04 07:47:55 -0800713 if (colorOffset >= 0) {
714 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
715 }
joshualitt9853cce2014-11-17 14:22:48 -0800716 curVertex = (void*)((intptr_t)curVertex + vertexStride);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000717 }
718
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000719 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +0000720 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon49f085d2014-09-05 13:34:00 -0700721 if (indices) {
joshualittd1aa8ff2014-11-04 07:47:55 -0800722 uint16_t* curIndex = (uint16_t*)geo.indices();
723 for (int i = 0; i < indexCount; ++i) {
724 curIndex[i] = indices[i];
725 }
egdaniel8dd688b2015-01-22 10:16:09 -0800726 target->drawIndexed(&pipelineBuilder, gp, primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000727 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800728 target->drawNonIndexed(&pipelineBuilder, gp, primitiveType, 0, vertexCount);
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000729 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000730}
731
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000732///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com93c96602012-04-27 13:05:21 +0000733
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000734void GrContext::drawRRect(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800735 const SkMatrix& viewMatrix,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000736 const SkRRect& rrect,
egdanield58a0ba2014-06-11 10:30:05 -0700737 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000738 if (rrect.isEmpty()) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000739 return;
740 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000741
egdanield58a0ba2014-06-11 10:30:05 -0700742 if (strokeInfo.isDashed()) {
743 SkPath path;
744 path.addRRect(rrect);
joshualitt5531d512014-12-17 15:50:11 -0800745 this->drawPath(paint, viewMatrix, path, strokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700746 return;
747 }
748
bsalomonf21dab92014-11-13 13:33:28 -0800749 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800750 GrPipelineBuilder pipelineBuilder;
751 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700752 if (NULL == target) {
753 return;
754 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000755
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000756 GR_CREATE_TRACE_MARKER("GrContext::drawRRect", target);
757
egdanield58a0ba2014-06-11 10:30:05 -0700758 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
759
joshualitt2e3b3e32014-12-09 13:31:14 -0800760 GrColor color = paint.getColor();
egdaniel8dd688b2015-01-22 10:16:09 -0800761 if (!fOvalRenderer->drawRRect(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
762 rrect, strokeRec)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000763 SkPath path;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000764 path.addRRect(rrect);
egdaniel8dd688b2015-01-22 10:16:09 -0800765 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
766 path, strokeInfo);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000767 }
768}
769
770///////////////////////////////////////////////////////////////////////////////
771
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000772void GrContext::drawDRRect(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800773 const SkMatrix& viewMatrix,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000774 const SkRRect& outer,
775 const SkRRect& inner) {
776 if (outer.isEmpty()) {
777 return;
778 }
779
bsalomonf21dab92014-11-13 13:33:28 -0800780 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800781 GrPipelineBuilder pipelineBuilder;
782 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000783
784 GR_CREATE_TRACE_MARKER("GrContext::drawDRRect", target);
785
joshualitt2e3b3e32014-12-09 13:31:14 -0800786 GrColor color = paint.getColor();
egdaniel8dd688b2015-01-22 10:16:09 -0800787 if (!fOvalRenderer->drawDRRect(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
788 outer, inner)) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000789 SkPath path;
790 path.addRRect(inner);
791 path.addRRect(outer);
792 path.setFillType(SkPath::kEvenOdd_FillType);
793
egdanield58a0ba2014-06-11 10:30:05 -0700794 GrStrokeInfo fillRec(SkStrokeRec::kFill_InitStyle);
egdaniel8dd688b2015-01-22 10:16:09 -0800795 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
796 path, fillRec);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000797 }
798}
799
800///////////////////////////////////////////////////////////////////////////////
801
bsalomon@google.com93c96602012-04-27 13:05:21 +0000802void GrContext::drawOval(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800803 const SkMatrix& viewMatrix,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000804 const SkRect& oval,
egdanield58a0ba2014-06-11 10:30:05 -0700805 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000806 if (oval.isEmpty()) {
807 return;
808 }
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000809
egdanield58a0ba2014-06-11 10:30:05 -0700810 if (strokeInfo.isDashed()) {
811 SkPath path;
812 path.addOval(oval);
joshualitt5531d512014-12-17 15:50:11 -0800813 this->drawPath(paint, viewMatrix, path, strokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700814 return;
815 }
816
bsalomonf21dab92014-11-13 13:33:28 -0800817 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800818 GrPipelineBuilder pipelineBuilder;
819 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700820 if (NULL == target) {
821 return;
822 }
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000823
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000824 GR_CREATE_TRACE_MARKER("GrContext::drawOval", target);
825
egdanield58a0ba2014-06-11 10:30:05 -0700826 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
827
joshualitt2e3b3e32014-12-09 13:31:14 -0800828 GrColor color = paint.getColor();
egdaniel8dd688b2015-01-22 10:16:09 -0800829 if (!fOvalRenderer->drawOval(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
830 oval, strokeRec)) {
bsalomon@google.com93c96602012-04-27 13:05:21 +0000831 SkPath path;
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000832 path.addOval(oval);
egdaniel8dd688b2015-01-22 10:16:09 -0800833 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
834 path, strokeInfo);
skia.committer@gmail.com98ded842013-01-23 07:06:17 +0000835 }
bsalomon@google.com150d2842012-01-12 20:19:56 +0000836}
bsalomon@google.com27847de2011-02-22 20:59:41 +0000837
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000838// Can 'path' be drawn as a pair of filled nested rectangles?
839static bool is_nested_rects(GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -0800840 GrPipelineBuilder* pipelineBuilder,
joshualitt2e3b3e32014-12-09 13:31:14 -0800841 GrColor color,
joshualitt8059eb92014-12-29 15:10:07 -0800842 const SkMatrix& viewMatrix,
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000843 const SkPath& path,
844 const SkStrokeRec& stroke,
bsalomon9c0822a2014-08-11 11:07:48 -0700845 SkRect rects[2]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000846 SkASSERT(stroke.isFillStyle());
847
848 if (path.isInverseFillType()) {
849 return false;
850 }
851
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000852 // TODO: this restriction could be lifted if we were willing to apply
853 // the matrix to all the points individually rather than just to the rect
joshualitt8059eb92014-12-29 15:10:07 -0800854 if (!viewMatrix.preservesAxisAlignment()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000855 return false;
856 }
857
egdaniel8dd688b2015-01-22 10:16:09 -0800858 if (!pipelineBuilder->canTweakAlphaForCoverage() &&
859 !pipelineBuilder->canUseFracCoveragePrimProc(color, *target->caps())) {
bsalomon9c0822a2014-08-11 11:07:48 -0700860 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000861 }
862
863 SkPath::Direction dirs[2];
864 if (!path.isNestedRects(rects, dirs)) {
865 return false;
866 }
867
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000868 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000869 // The two rects need to be wound opposite to each other
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000870 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000871 }
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000872
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000873 // Right now, nested rects where the margin is not the same width
874 // all around do not render correctly
875 const SkScalar* outer = rects[0].asScalars();
876 const SkScalar* inner = rects[1].asScalars();
877
robertphillips183e9852014-10-21 11:25:37 -0700878 bool allEq = true;
879
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000880 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
robertphillips183e9852014-10-21 11:25:37 -0700881 bool allGoE1 = margin >= SK_Scalar1;
882
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000883 for (int i = 1; i < 4; ++i) {
884 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
robertphillips183e9852014-10-21 11:25:37 -0700885 if (temp < SK_Scalar1) {
886 allGoE1 = false;
887 }
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000888 if (!SkScalarNearlyEqual(margin, temp)) {
robertphillips183e9852014-10-21 11:25:37 -0700889 allEq = false;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000890 }
891 }
892
robertphillips183e9852014-10-21 11:25:37 -0700893 return allEq || allGoE1;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +0000894}
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000895
joshualitt5531d512014-12-17 15:50:11 -0800896void GrContext::drawPath(const GrPaint& paint,
897 const SkMatrix& viewMatrix,
898 const SkPath& path,
899 const GrStrokeInfo& strokeInfo) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000900
bsalomon@google.comfa6ac932011-10-05 19:57:55 +0000901 if (path.isEmpty()) {
sugoi@google.com12b4e272012-12-06 20:13:11 +0000902 if (path.isInverseFillType()) {
joshualitt5531d512014-12-17 15:50:11 -0800903 this->drawPaint(paint, viewMatrix);
bsalomon@google.comfa6ac932011-10-05 19:57:55 +0000904 }
905 return;
906 }
907
joshualitt2e3b3e32014-12-09 13:31:14 -0800908 GrColor color = paint.getColor();
egdanield58a0ba2014-06-11 10:30:05 -0700909 if (strokeInfo.isDashed()) {
egdaniele61c4112014-06-12 10:24:21 -0700910 SkPoint pts[2];
911 if (path.isLine(pts)) {
bsalomonf21dab92014-11-13 13:33:28 -0800912 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800913 GrPipelineBuilder pipelineBuilder;
914 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700915 if (NULL == target) {
916 return;
joshualittd27f73e2014-12-29 07:43:36 -0800917 }
egdaniele61c4112014-06-12 10:24:21 -0700918
egdaniel8dd688b2015-01-22 10:16:09 -0800919 if (GrDashingEffect::DrawDashLine(fGpu, target, &pipelineBuilder, color, viewMatrix,
920 pts, paint, strokeInfo)) {
joshualittd27f73e2014-12-29 07:43:36 -0800921 return;
egdaniele61c4112014-06-12 10:24:21 -0700922 }
923 }
924
925 // Filter dashed path into new path with the dashing applied
egdanield58a0ba2014-06-11 10:30:05 -0700926 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
927 SkTLazy<SkPath> effectPath;
928 GrStrokeInfo newStrokeInfo(strokeInfo, false);
929 SkStrokeRec* stroke = newStrokeInfo.getStrokeRecPtr();
930 if (SkDashPath::FilterDashPath(effectPath.init(), path, stroke, NULL, info)) {
joshualitt5531d512014-12-17 15:50:11 -0800931 this->drawPath(paint, viewMatrix, *effectPath.get(), newStrokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700932 return;
933 }
934
joshualitt5531d512014-12-17 15:50:11 -0800935 this->drawPath(paint, viewMatrix, path, newStrokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700936 return;
937 }
938
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000939 // Note that internalDrawPath may sw-rasterize the path into a scratch texture.
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +0000940 // Scratch textures can be recycled after they are returned to the texture
941 // cache. This presents a potential hazard for buffered drawing. However,
942 // the writePixels that uploads to the scratch will perform a flush so we're
943 // OK.
bsalomonf21dab92014-11-13 13:33:28 -0800944 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800945 GrPipelineBuilder pipelineBuilder;
946 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700947 if (NULL == target) {
948 return;
949 }
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000950
egdaniel93a37bc2014-07-21 13:47:57 -0700951 GR_CREATE_TRACE_MARKER1("GrContext::drawPath", target, "Is Convex", path.isConvex());
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000952
egdanield58a0ba2014-06-11 10:30:05 -0700953 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
954
egdaniel8dd688b2015-01-22 10:16:09 -0800955 bool useCoverageAA = paint.isAntiAlias() &&
956 !pipelineBuilder.getRenderTarget()->isMultisampled();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +0000957
egdanield58a0ba2014-06-11 10:30:05 -0700958 if (useCoverageAA && strokeRec.getWidth() < 0 && !path.isConvex()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000959 // Concave AA paths are expensive - try to avoid them for special cases
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000960 SkRect rects[2];
961
egdaniel8dd688b2015-01-22 10:16:09 -0800962 if (is_nested_rects(target, &pipelineBuilder, color, viewMatrix, path, strokeRec, rects)) {
963 fAARectRenderer->fillAANestedRects(target, &pipelineBuilder, color, viewMatrix,rects);
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000964 return;
965 }
966 }
967
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000968 SkRect ovalRect;
969 bool isOval = path.isOval(&ovalRect);
970
joshualitt8059eb92014-12-29 15:10:07 -0800971 if (!isOval || path.isInverseFillType() ||
egdaniel8dd688b2015-01-22 10:16:09 -0800972 !fOvalRenderer->drawOval(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
joshualitt8059eb92014-12-29 15:10:07 -0800973 ovalRect, strokeRec)) {
egdaniel8dd688b2015-01-22 10:16:09 -0800974 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
975 path, strokeInfo);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000976 }
977}
978
joshualitt9853cce2014-11-17 14:22:48 -0800979void GrContext::internalDrawPath(GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -0800980 GrPipelineBuilder* pipelineBuilder,
joshualitt5531d512014-12-17 15:50:11 -0800981 const SkMatrix& viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -0800982 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -0800983 bool useAA,
984 const SkPath& path,
egdanield58a0ba2014-06-11 10:30:05 -0700985 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000986 SkASSERT(!path.isEmpty());
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000987
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000988 GR_CREATE_TRACE_MARKER("GrContext::internalDrawPath", target);
989
990
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000991 // An Assumption here is that path renderer would use some form of tweaking
992 // the src color (either the input alpha or in the frag shader) to implement
993 // aa. If we have some future driver-mojo path AA that can do the right
994 // thing WRT to the blend then we'll need some query on the PR.
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +0000995 bool useCoverageAA = useAA &&
egdaniel8dd688b2015-01-22 10:16:09 -0800996 !pipelineBuilder->getRenderTarget()->isMultisampled() &&
997 pipelineBuilder->canUseFracCoveragePrimProc(color, *target->caps());
bsalomon@google.com289533a2011-10-27 12:34:25 +0000998
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +0000999
1000 GrPathRendererChain::DrawType type =
1001 useCoverageAA ? GrPathRendererChain::kColorAntiAlias_DrawType :
joshualitt9853cce2014-11-17 14:22:48 -08001002 GrPathRendererChain::kColor_DrawType;
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001003
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001004 const SkPath* pathPtr = &path;
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001005 SkTLazy<SkPath> tmpPath;
egdanield58a0ba2014-06-11 10:30:05 -07001006 SkTCopyOnFirstWrite<SkStrokeRec> stroke(strokeInfo.getStrokeRec());
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001007
1008 // Try a 1st time without stroking the path and without allowing the SW renderer
egdaniel8dd688b2015-01-22 10:16:09 -08001009 GrPathRenderer* pr = this->getPathRenderer(target, pipelineBuilder, viewMatrix, *pathPtr,
1010 *stroke, false, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001011
robertphillips@google.come79f3202014-02-11 16:30:21 +00001012 if (NULL == pr) {
joshualitt5531d512014-12-17 15:50:11 -08001013 if (!GrPathRenderer::IsStrokeHairlineOrEquivalent(*stroke, viewMatrix, NULL)) {
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001014 // It didn't work the 1st time, so try again with the stroked path
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001015 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1016 pathPtr = tmpPath.get();
1017 stroke.writable()->setFillStyle();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001018 if (pathPtr->isEmpty()) {
1019 return;
1020 }
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001021 }
1022 }
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001023
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001024 // This time, allow SW renderer
egdaniel8dd688b2015-01-22 10:16:09 -08001025 pr = this->getPathRenderer(target, pipelineBuilder, viewMatrix, *pathPtr, *stroke, true,
1026 type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001027 }
1028
robertphillips@google.come79f3202014-02-11 16:30:21 +00001029 if (NULL == pr) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001030#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -07001031 SkDebugf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001032#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001033 return;
1034 }
1035
egdaniel8dd688b2015-01-22 10:16:09 -08001036 pr->drawPath(target, pipelineBuilder, color, viewMatrix, *pathPtr, *stroke, useCoverageAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001037}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001038
bsalomon@google.com27847de2011-02-22 20:59:41 +00001039////////////////////////////////////////////////////////////////////////////////
1040
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001041void GrContext::flush(int flagsBitfield) {
robertphillips@google.come7db8d62013-07-04 11:48:52 +00001042 if (NULL == fDrawBuffer) {
1043 return;
1044 }
1045
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001046 if (kDiscard_FlushBit & flagsBitfield) {
1047 fDrawBuffer->reset();
1048 } else {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001049 fDrawBuffer->flush();
junov@google.com53a55842011-06-08 22:55:10 +00001050 }
bsalomonf21dab92014-11-13 13:33:28 -08001051 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001052}
1053
bsalomon81beccc2014-10-13 12:32:55 -07001054bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
1055 const void* inPixels, size_t outRowBytes, void* outPixels) {
1056 SkSrcPixelInfo srcPI;
jvanverthfa1e8a72014-12-22 08:31:49 -08001057 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, NULL)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001058 return false;
1059 }
bsalomon81beccc2014-10-13 12:32:55 -07001060 srcPI.fAlphaType = kUnpremul_SkAlphaType;
1061 srcPI.fPixels = inPixels;
1062 srcPI.fRowBytes = inRowBytes;
1063
1064 SkDstPixelInfo dstPI;
1065 dstPI.fColorType = srcPI.fColorType;
1066 dstPI.fAlphaType = kPremul_SkAlphaType;
1067 dstPI.fPixels = outPixels;
1068 dstPI.fRowBytes = outRowBytes;
1069
1070 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001071}
1072
bsalomon81beccc2014-10-13 12:32:55 -07001073bool GrContext::writeSurfacePixels(GrSurface* surface,
1074 int left, int top, int width, int height,
1075 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
1076 uint32_t pixelOpsFlags) {
1077
1078 {
1079 GrTexture* texture = NULL;
1080 if (!(kUnpremul_PixelOpsFlag & pixelOpsFlags) && (texture = surface->asTexture()) &&
1081 fGpu->canWriteTexturePixels(texture, srcConfig)) {
1082
1083 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) &&
1084 surface->surfacePriv().hasPendingIO()) {
1085 this->flush();
1086 }
1087 return fGpu->writeTexturePixels(texture, left, top, width, height,
1088 srcConfig, buffer, rowBytes);
1089 // Don't need to check kFlushWrites_PixelOp here, we just did a direct write so the
1090 // upload is already flushed.
1091 }
1092 }
1093
1094 // If we didn't do a direct texture write then we upload the pixels to a texture and draw.
1095 GrRenderTarget* renderTarget = surface->asRenderTarget();
1096 if (NULL == renderTarget) {
1097 return false;
1098 }
1099
1100 // We ignore the preferred config unless it is a R/B swap of the src config. In that case
1101 // we will upload the original src data to a scratch texture but we will spoof it as the swapped
1102 // config. This scratch will then have R and B swapped. We correct for this by swapping again
1103 // when drawing the scratch to the dst using a conversion effect.
1104 bool swapRAndB = false;
1105 GrPixelConfig writeConfig = srcConfig;
1106 if (GrPixelConfigSwapRAndB(srcConfig) ==
1107 fGpu->preferredWritePixelsConfig(srcConfig, renderTarget->config())) {
1108 writeConfig = GrPixelConfigSwapRAndB(srcConfig);
1109 swapRAndB = true;
1110 }
1111
bsalomonf2703d82014-10-28 14:33:06 -07001112 GrSurfaceDesc desc;
bsalomon81beccc2014-10-13 12:32:55 -07001113 desc.fWidth = width;
1114 desc.fHeight = height;
1115 desc.fConfig = writeConfig;
bsalomone3059732014-10-14 11:47:22 -07001116 SkAutoTUnref<GrTexture> texture(this->refScratchTexture(desc, kApprox_ScratchTexMatch));
1117 if (!texture) {
bsalomon81beccc2014-10-13 12:32:55 -07001118 return false;
1119 }
1120
1121 SkAutoTUnref<const GrFragmentProcessor> fp;
1122 SkMatrix textureMatrix;
1123 textureMatrix.setIDiv(texture->width(), texture->height());
1124
1125 // allocate a tmp buffer and sw convert the pixels to premul
1126 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1127
1128 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
1129 if (!GrPixelConfigIs8888(srcConfig)) {
1130 return false;
1131 }
1132 fp.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix));
1133 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
1134 if (NULL == fp) {
1135 size_t tmpRowBytes = 4 * width;
1136 tmpPixels.reset(width * height);
1137 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
1138 tmpPixels.get())) {
1139 return false;
1140 }
1141 rowBytes = tmpRowBytes;
1142 buffer = tmpPixels.get();
1143 }
1144 }
1145 if (NULL == fp) {
1146 fp.reset(GrConfigConversionEffect::Create(texture,
1147 swapRAndB,
1148 GrConfigConversionEffect::kNone_PMConversion,
1149 textureMatrix));
1150 }
1151
1152 // Even if the client told us not to flush, we still flush here. The client may have known that
1153 // writes to the original surface caused no data hazards, but they can't know that the scratch
1154 // we just got is safe.
1155 if (texture->surfacePriv().hasPendingIO()) {
1156 this->flush();
1157 }
1158 if (!fGpu->writeTexturePixels(texture, 0, 0, width, height,
1159 writeConfig, buffer, rowBytes)) {
1160 return false;
1161 }
1162
1163 SkMatrix matrix;
1164 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
1165
1166 // This function can be called in the midst of drawing another object (e.g., when uploading a
1167 // SW-rasterized clip while issuing a draw). So we push the current geometry state before
1168 // drawing a rect to the render target.
1169 // The bracket ensures we pop the stack if we wind up flushing below.
1170 {
joshualitt8059eb92014-12-29 15:10:07 -08001171 GrDrawTarget* drawTarget = this->prepareToDraw(NULL, NULL, NULL);
joshualitt9853cce2014-11-17 14:22:48 -08001172 GrDrawTarget::AutoGeometryPush agp(drawTarget);
1173
egdaniel8dd688b2015-01-22 10:16:09 -08001174 GrPipelineBuilder pipelineBuilder;
1175 pipelineBuilder.addColorProcessor(fp);
1176 pipelineBuilder.setRenderTarget(renderTarget);
1177 drawTarget->drawSimpleRect(&pipelineBuilder, GrColor_WHITE, matrix,
joshualitt8059eb92014-12-29 15:10:07 -08001178 SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)));
bsalomon81beccc2014-10-13 12:32:55 -07001179 }
1180
1181 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1182 this->flushSurfaceWrites(surface);
1183 }
1184
1185 return true;
1186}
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001187
reed@google.com7111d462014-03-25 16:20:24 +00001188// toggles between RGBA and BGRA
1189static SkColorType toggle_colortype32(SkColorType ct) {
1190 if (kRGBA_8888_SkColorType == ct) {
1191 return kBGRA_8888_SkColorType;
1192 } else {
1193 SkASSERT(kBGRA_8888_SkColorType == ct);
1194 return kRGBA_8888_SkColorType;
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001195 }
1196}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001197
bsalomon@google.com0342a852012-08-20 19:22:38 +00001198bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1199 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001200 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001201 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001202 ASSERT_OWNED_RESOURCE(target);
bsalomon89c62982014-11-03 12:08:42 -08001203 SkASSERT(target);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001204
bsalomonafbf2d62014-09-30 12:18:44 -07001205 if (!(kDontFlush_PixelOpsFlag & flags) && target->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001206 this->flush();
1207 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001208
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001209 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001210
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001211 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1212 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1213 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001214 width, height, dstConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001215 rowBytes);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001216 // We ignore the preferred config if it is different than our config unless it is an R/B swap.
1217 // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped
1218 // config. Then we will call readPixels on the scratch with the swapped config. The swaps during
1219 // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from
1220 // dstConfig.
1221 GrPixelConfig readConfig = dstConfig;
1222 bool swapRAndB = false;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001223 if (GrPixelConfigSwapRAndB(dstConfig) ==
1224 fGpu->preferredReadPixelsConfig(dstConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001225 readConfig = GrPixelConfigSwapRAndB(readConfig);
1226 swapRAndB = true;
1227 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001228
bsalomon@google.com0342a852012-08-20 19:22:38 +00001229 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001230
bsalomon@google.com9c680582013-02-06 18:17:50 +00001231 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001232 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001233 return false;
1234 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001235
bsalomon191bcc02014-11-14 11:31:13 -08001236 SkAutoTUnref<GrTexture> tempTexture;
1237
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001238 // If the src is a texture and we would have to do conversions after read pixels, we instead
1239 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1240 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1241 // on the read back pixels.
1242 GrTexture* src = target->asTexture();
bsalomon49f085d2014-09-05 13:34:00 -07001243 if (src && (swapRAndB || unpremul || flipY)) {
bsalomon81beccc2014-10-13 12:32:55 -07001244 // Make the scratch a render so we can read its pixels.
bsalomonf2703d82014-10-28 14:33:06 -07001245 GrSurfaceDesc desc;
1246 desc.fFlags = kRenderTarget_GrSurfaceFlag;
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001247 desc.fWidth = width;
1248 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001249 desc.fConfig = readConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001250 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001251
bsalomon@google.com9c680582013-02-06 18:17:50 +00001252 // When a full read back is faster than a partial we could always make the scratch exactly
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001253 // match the passed rect. However, if we see many different size rectangles we will trash
1254 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1255 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001256 ScratchTexMatch match = kApprox_ScratchTexMatch;
1257 if (0 == left &&
1258 0 == top &&
1259 target->width() == width &&
1260 target->height() == height &&
1261 fGpu->fullReadPixelsIsFasterThanPartial()) {
1262 match = kExact_ScratchTexMatch;
1263 }
bsalomon191bcc02014-11-14 11:31:13 -08001264 tempTexture.reset(this->refScratchTexture(desc, match));
1265 if (tempTexture) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001266 // compute a matrix to perform the draw
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001267 SkMatrix textureMatrix;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001268 textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001269 textureMatrix.postIDiv(src->width(), src->height());
1270
joshualittb0a8a372014-09-23 09:50:21 -07001271 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001272 if (unpremul) {
joshualittb0a8a372014-09-23 09:50:21 -07001273 fp.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix));
1274 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001275 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001276 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001277 }
1278 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1279 // there is no longer any point to using the scratch.
joshualittb0a8a372014-09-23 09:50:21 -07001280 if (fp || flipY || swapRAndB) {
1281 if (!fp) {
1282 fp.reset(GrConfigConversionEffect::Create(
1283 src, swapRAndB, GrConfigConversionEffect::kNone_PMConversion,
1284 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001285 }
1286 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001287
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001288 // We protect the existing geometry here since it may not be
1289 // clear to the caller that a draw operation (i.e., drawSimpleRect)
1290 // can be invoked in this method
joshualitt5c55fef2014-10-31 14:04:35 -07001291 {
joshualitt9853cce2014-11-17 14:22:48 -08001292 GrDrawTarget::AutoGeometryPush agp(fDrawBuffer);
egdaniel8dd688b2015-01-22 10:16:09 -08001293 GrPipelineBuilder pipelineBuilder;
joshualitt5c55fef2014-10-31 14:04:35 -07001294 SkASSERT(fp);
egdaniel8dd688b2015-01-22 10:16:09 -08001295 pipelineBuilder.addColorProcessor(fp);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001296
egdaniel8dd688b2015-01-22 10:16:09 -08001297 pipelineBuilder.setRenderTarget(tempTexture->asRenderTarget());
joshualitt5c55fef2014-10-31 14:04:35 -07001298 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
egdaniel8dd688b2015-01-22 10:16:09 -08001299 fDrawBuffer->drawSimpleRect(&pipelineBuilder, GrColor_WHITE, SkMatrix::I(),
1300 rect);
joshualitt5c55fef2014-10-31 14:04:35 -07001301 // we want to read back from the scratch's origin
1302 left = 0;
1303 top = 0;
bsalomon191bcc02014-11-14 11:31:13 -08001304 target = tempTexture->asRenderTarget();
joshualitt5c55fef2014-10-31 14:04:35 -07001305 }
1306 this->flushSurfaceWrites(target);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001307 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001308 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001309 }
joshualitt5c55fef2014-10-31 14:04:35 -07001310
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001311 if (!fGpu->readPixels(target,
1312 left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001313 readConfig, buffer, rowBytes)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001314 return false;
1315 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001316 // Perform any conversions we weren't able to perform using a scratch texture.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001317 if (unpremul || swapRAndB) {
reed@google.com7111d462014-03-25 16:20:24 +00001318 SkDstPixelInfo dstPI;
jvanverthfa1e8a72014-12-22 08:31:49 -08001319 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, NULL)) {
reed@google.com7111d462014-03-25 16:20:24 +00001320 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001321 }
reed@google.com7111d462014-03-25 16:20:24 +00001322 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1323 dstPI.fPixels = buffer;
1324 dstPI.fRowBytes = rowBytes;
1325
1326 SkSrcPixelInfo srcPI;
1327 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1328 srcPI.fAlphaType = kPremul_SkAlphaType;
1329 srcPI.fPixels = buffer;
1330 srcPI.fRowBytes = rowBytes;
1331
1332 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001333 }
1334 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001335}
1336
bsalomon87a94eb2014-11-03 14:28:32 -08001337void GrContext::prepareSurfaceForExternalRead(GrSurface* surface) {
1338 SkASSERT(surface);
1339 ASSERT_OWNED_RESOURCE(surface);
1340 if (surface->surfacePriv().hasPendingIO()) {
1341 this->flush();
1342 }
1343 GrRenderTarget* rt = surface->asRenderTarget();
1344 if (fGpu && rt) {
1345 fGpu->resolveRenderTarget(rt);
bsalomon41ebbdd2014-08-04 08:31:39 -07001346 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001347}
1348
bsalomon41ebbdd2014-08-04 08:31:39 -07001349void GrContext::discardRenderTarget(GrRenderTarget* renderTarget) {
1350 SkASSERT(renderTarget);
1351 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomonf21dab92014-11-13 13:33:28 -08001352 AutoCheckFlush acf(this);
joshualitt8059eb92014-12-29 15:10:07 -08001353 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001354 if (NULL == target) {
1355 return;
1356 }
1357 target->discard(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001358}
1359
bsalomonf80bfed2014-10-07 05:56:02 -07001360void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
1361 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001362 if (NULL == src || NULL == dst) {
1363 return;
1364 }
bsalomone3d4bf22014-09-23 09:15:03 -07001365 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -07001366 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -04001367
bsalomonf80bfed2014-10-07 05:56:02 -07001368 // Since we're going to the draw target and not GPU, no need to check kNoFlush
1369 // here.
junov96c118e2014-09-26 13:09:47 -07001370
joshualitt8059eb92014-12-29 15:10:07 -08001371 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, NULL);
junov96c118e2014-09-26 13:09:47 -07001372 if (NULL == target) {
1373 return;
1374 }
junov96c118e2014-09-26 13:09:47 -07001375 target->copySurface(dst, src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -07001376
1377 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1378 this->flush();
1379 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001380}
1381
bsalomonf80bfed2014-10-07 05:56:02 -07001382void GrContext::flushSurfaceWrites(GrSurface* surface) {
1383 if (surface->surfacePriv().hasPendingWrite()) {
1384 this->flush();
1385 }
1386}
1387
egdaniel8dd688b2015-01-22 10:16:09 -08001388GrDrawTarget* GrContext::prepareToDraw(GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -08001389 const GrPaint* paint,
1390 const AutoCheckFlush* acf) {
bsalomon41ebbdd2014-08-04 08:31:39 -07001391 if (NULL == fGpu) {
1392 return NULL;
1393 }
1394
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001395 ASSERT_OWNED_RESOURCE(fRenderTarget.get());
egdaniel8dd688b2015-01-22 10:16:09 -08001396 if (pipelineBuilder) {
joshualitt2fdeda02015-01-22 07:11:44 -08001397 SkASSERT(paint && acf);
egdaniel8dd688b2015-01-22 10:16:09 -08001398 pipelineBuilder->setFromPaint(*paint, fRenderTarget.get());
1399 pipelineBuilder->setState(GrPipelineBuilder::kClip_StateBit,
1400 fClip && !fClip->fClipStack->isWideOpen());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001401 }
joshualitt5c55fef2014-10-31 14:04:35 -07001402 fDrawBuffer->setClip(fClip);
joshualitt5c55fef2014-10-31 14:04:35 -07001403 return fDrawBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001404}
1405
robertphillips@google.com72176b22012-05-23 13:19:12 +00001406/*
1407 * This method finds a path renderer that can draw the specified path on
1408 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001409 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001410 * can be individually allowed/disallowed via the "allowSW" boolean.
1411 */
joshualitt9853cce2014-11-17 14:22:48 -08001412GrPathRenderer* GrContext::getPathRenderer(const GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -08001413 const GrPipelineBuilder* pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -08001414 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -08001415 const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001416 const SkStrokeRec& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001417 bool allowSW,
1418 GrPathRendererChain::DrawType drawType,
1419 GrPathRendererChain::StencilSupport* stencilSupport) {
1420
bsalomon@google.com30085192011-08-19 15:42:31 +00001421 if (NULL == fPathRendererChain) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001422 fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this));
bsalomon@google.com30085192011-08-19 15:42:31 +00001423 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001424
joshualitt9853cce2014-11-17 14:22:48 -08001425 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(target,
egdaniel8dd688b2015-01-22 10:16:09 -08001426 pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -08001427 viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -08001428 path,
sugoi@google.com12b4e272012-12-06 20:13:11 +00001429 stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001430 drawType,
1431 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +00001432
1433 if (NULL == pr && allowSW) {
1434 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001435 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001436 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001437 pr = fSoftwarePathRenderer;
1438 }
1439
1440 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001441}
1442
bsalomon@google.com27847de2011-02-22 20:59:41 +00001443////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00001444bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
1445 return fGpu->caps()->isConfigRenderable(config, withMSAA);
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001446}
1447
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +00001448int GrContext::getRecommendedSampleCount(GrPixelConfig config,
1449 SkScalar dpi) const {
1450 if (!this->isConfigRenderable(config, true)) {
1451 return 0;
1452 }
1453 int chosenSampleCount = 0;
1454 if (fGpu->caps()->pathRenderingSupport()) {
1455 if (dpi >= 250.0f) {
1456 chosenSampleCount = 4;
1457 } else {
1458 chosenSampleCount = 16;
1459 }
1460 }
1461 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
1462 chosenSampleCount : 0;
1463}
1464
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001465void GrContext::setupDrawBuffer() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001466 SkASSERT(NULL == fDrawBuffer);
1467 SkASSERT(NULL == fDrawBufferVBAllocPool);
1468 SkASSERT(NULL == fDrawBufferIBAllocPool);
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001469
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001470 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001471 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001472 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001473 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001474 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001475 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001476 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001477 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001478
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001479 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001480 fDrawBufferVBAllocPool,
1481 fDrawBufferIBAllocPool));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001482}
1483
bsalomon@google.com21c10c52013-06-13 17:44:07 +00001484GrDrawTarget* GrContext::getTextTarget() {
joshualitt8059eb92014-12-29 15:10:07 -08001485 return this->prepareToDraw(NULL, NULL, NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001486}
1487
1488const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1489 return fGpu->getQuadIndexBuffer();
1490}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001491
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001492namespace {
1493void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1494 GrConfigConversionEffect::PMConversion pmToUPM;
1495 GrConfigConversionEffect::PMConversion upmToPM;
1496 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1497 *pmToUPMValue = pmToUPM;
1498 *upmToPMValue = upmToPM;
1499}
1500}
1501
joshualittb0a8a372014-09-23 09:50:21 -07001502const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture,
1503 bool swapRAndB,
1504 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001505 if (!fDidTestPMConversions) {
1506 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001507 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001508 }
1509 GrConfigConversionEffect::PMConversion pmToUPM =
1510 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1511 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001512 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001513 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001514 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001515 }
1516}
1517
joshualittb0a8a372014-09-23 09:50:21 -07001518const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture,
1519 bool swapRAndB,
1520 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001521 if (!fDidTestPMConversions) {
1522 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001523 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001524 }
1525 GrConfigConversionEffect::PMConversion upmToPM =
1526 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1527 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001528 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001529 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001530 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001531 }
1532}
1533
bsalomon37f9a262015-02-02 13:00:10 -08001534//////////////////////////////////////////////////////////////////////////////
1535
1536void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
1537 if (maxTextures) {
1538 *maxTextures = fResourceCache2->getMaxResourceCount();
1539 }
1540 if (maxTextureBytes) {
1541 *maxTextureBytes = fResourceCache2->getMaxResourceBytes();
1542 }
1543}
1544
1545void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
1546 fResourceCache2->setLimits(maxTextures, maxTextureBytes);
1547}
1548
1549bool GrContext::addResourceToCache(const GrContentKey& key, GrGpuResource* resource) {
1550 ASSERT_OWNED_RESOURCE(resource);
1551 if (!resource || resource->wasDestroyed()) {
1552 return false;
1553 }
1554 return resource->cacheAccess().setContentKey(key);
1555}
1556
1557bool GrContext::isResourceInCache(const GrContentKey& key) const {
1558 return fResourceCache2->hasContentKey(key);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001559}
1560
bsalomon24db3b12015-01-23 04:24:04 -08001561GrGpuResource* GrContext::findAndRefCachedResource(const GrContentKey& key) {
1562 return fResourceCache2->findAndRefContentResource(key);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001563}
1564
bsalomon37f9a262015-02-02 13:00:10 -08001565//////////////////////////////////////////////////////////////////////////////
1566
egdanielbbcb38d2014-06-19 10:19:29 -07001567void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
1568 fGpu->addGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001569 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001570 fDrawBuffer->addGpuTraceMarker(marker);
1571 }
1572}
1573
1574void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
1575 fGpu->removeGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001576 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001577 fDrawBuffer->removeGpuTraceMarker(marker);
1578 }
1579}
1580
bsalomon@google.comc4364992011-11-07 15:54:49 +00001581///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001582#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001583void GrContext::printCacheStats() const {
bsalomon71cb0c22014-11-14 12:10:14 -08001584 fResourceCache2->printStats();
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001585}
1586#endif
robertphillips754f4e92014-09-18 13:52:08 -07001587
1588#if GR_GPU_STATS
1589const GrContext::GPUStats* GrContext::gpuStats() const {
1590 return fGpu->gpuStats();
1591}
1592#endif
1593