blob: 5f0001bad70f0258da0b16af822efca4bec0a9fb [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
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000011#include "effects/GrConfigConversionEffect.h"
egdaniele61c4112014-06-12 10:24:21 -070012#include "effects/GrDashingEffect.h"
13#include "effects/GrSingleTextureEffect.h"
bsalomon@google.comb505a122012-05-31 18:40:36 +000014
jvanverth@google.combfe2b9d2013-09-06 16:57:29 +000015#include "GrAARectRenderer.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000016#include "GrBufferAllocPool.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000017#include "GrGpu.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070018#include "GrDistanceFieldTextContext.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000019#include "GrDrawTargetCaps.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"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000026#include "GrResourceCache.h"
bsalomonc8dc1f72014-08-21 13:02:13 -070027#include "GrResourceCache2.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000028#include "GrSoftwarePathRenderer.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000029#include "GrStencilBuffer.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070030#include "GrStencilAndCoverTextContext.h"
egdanield58a0ba2014-06-11 10:30:05 -070031#include "GrStrokeInfo.h"
bsalomonafbf2d62014-09-30 12:18:44 -070032#include "GrSurfacePriv.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000033#include "GrTextStrike.h"
bsalomonafbf2d62014-09-30 12:18:44 -070034#include "GrTexturePriv.h"
egdanielbbcb38d2014-06-19 10:19:29 -070035#include "GrTraceMarker.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000036#include "GrTracing.h"
egdanield58a0ba2014-06-11 10:30:05 -070037#include "SkDashPathPriv.h"
bsalomon81beccc2014-10-13 12:32:55 -070038#include "SkConfig8888.h"
reed@google.com7111d462014-03-25 16:20:24 +000039#include "SkGr.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000040#include "SkRRect.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000041#include "SkStrokeRec.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000042#include "SkTLazy.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000043#include "SkTLS.h"
commit-bot@chromium.org933e65d2014-03-20 20:00:24 +000044#include "SkTraceEvent.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000045
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000046#ifdef SK_DEBUG
reed@google.com4b2d3f32012-05-15 18:05:50 +000047 // change this to a 1 to see notifications when partial coverage fails
48 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
49#else
50 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
51#endif
52
robertphillips@google.com4e5559a2013-10-30 17:04:16 +000053static const size_t MAX_RESOURCE_CACHE_COUNT = GR_DEFAULT_RESOURCE_CACHE_COUNT_LIMIT;
54static const size_t MAX_RESOURCE_CACHE_BYTES = GR_DEFAULT_RESOURCE_CACHE_MB_LIMIT * 1024 * 1024;
bsalomon@google.com27847de2011-02-22 20:59:41 +000055
bsalomon@google.com60361492012-03-15 17:47:06 +000056static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15;
bsalomon@google.com27847de2011-02-22 20:59:41 +000057static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4;
58
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000059static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11;
60static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4;
bsalomon@google.com27847de2011-02-22 20:59:41 +000061
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000062#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
bsalomon@google.combc4b6542011-11-19 13:56:11 +000063
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000064// Glorified typedef to avoid including GrDrawState.h in GrContext.h
65class GrContext::AutoRestoreEffects : public GrDrawState::AutoRestoreEffects {};
66
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +000067class GrContext::AutoCheckFlush {
68public:
bsalomon49f085d2014-09-05 13:34:00 -070069 AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(context); }
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +000070
71 ~AutoCheckFlush() {
72 if (fContext->fFlushToReduceCacheSize) {
73 fContext->flush();
74 }
75 }
76
77private:
78 GrContext* fContext;
79};
80
krajcevski9c6d4d72014-08-12 07:26:25 -070081GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
82 const Options* opts) {
83 GrContext* context;
84 if (NULL == opts) {
85 context = SkNEW_ARGS(GrContext, (Options()));
86 } else {
87 context = SkNEW_ARGS(GrContext, (*opts));
88 }
89
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000090 if (context->init(backend, backendContext)) {
91 return context;
92 } else {
93 context->unref();
94 return NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +000095 }
bsalomon@google.com27847de2011-02-22 20:59:41 +000096}
97
krajcevski9c6d4d72014-08-12 07:26:25 -070098GrContext::GrContext(const Options& opts) : fOptions(opts) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000099 fDrawState = NULL;
100 fGpu = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000101 fClip = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000102 fPathRendererChain = NULL;
103 fSoftwarePathRenderer = NULL;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000104 fResourceCache = NULL;
bsalomonc8dc1f72014-08-21 13:02:13 -0700105 fResourceCache2 = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000106 fFontCache = NULL;
107 fDrawBuffer = NULL;
108 fDrawBufferVBAllocPool = NULL;
109 fDrawBufferIBAllocPool = NULL;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000110 fFlushToReduceCacheSize = false;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000111 fAARectRenderer = NULL;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000112 fOvalRenderer = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000113 fViewMatrix.reset();
robertphillips@google.com44a91dc2013-07-25 15:32:06 +0000114 fMaxTextureSizeOverride = 1 << 20;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000115}
116
117bool GrContext::init(GrBackend backend, GrBackendContext backendContext) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000118 SkASSERT(NULL == fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000119
120 fGpu = GrGpu::Create(backend, backendContext, this);
121 if (NULL == fGpu) {
122 return false;
123 }
124
125 fDrawState = SkNEW(GrDrawState);
126 fGpu->setDrawState(fDrawState);
127
bsalomonbcf0a522014-10-08 08:40:09 -0700128 fResourceCache = SkNEW_ARGS(GrResourceCache, (fGpu->caps(),
129 MAX_RESOURCE_CACHE_COUNT,
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000130 MAX_RESOURCE_CACHE_BYTES));
131 fResourceCache->setOverbudgetCallback(OverbudgetCB, this);
bsalomonc8dc1f72014-08-21 13:02:13 -0700132 fResourceCache2 = SkNEW(GrResourceCache2);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000133
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000134 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
135
robertphillips4ec84da2014-06-24 13:10:43 -0700136 fLayerCache.reset(SkNEW_ARGS(GrLayerCache, (this)));
robertphillips@google.come930a072014-04-03 00:34:27 +0000137
joshualittb44293e2014-10-28 08:12:18 -0700138 fAARectRenderer = SkNEW_ARGS(GrAARectRenderer, (fGpu));
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000139 fOvalRenderer = SkNEW(GrOvalRenderer);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000140
141 fDidTestPMConversions = false;
142
143 this->setupDrawBuffer();
144
145 return true;
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000146}
147
bsalomon@google.com27847de2011-02-22 20:59:41 +0000148GrContext::~GrContext() {
bsalomon@google.com733c0622013-04-24 17:59:32 +0000149 if (NULL == fGpu) {
150 return;
151 }
152
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000153 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000154
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000155 for (int i = 0; i < fCleanUpData.count(); ++i) {
156 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
157 }
158
bsalomonc8dc1f72014-08-21 13:02:13 -0700159 delete fResourceCache2;
160 fResourceCache2 = NULL;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000161 delete fResourceCache;
162 fResourceCache = NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000163 delete fFontCache;
164 delete fDrawBuffer;
165 delete fDrawBufferVBAllocPool;
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +0000166 delete fDrawBufferIBAllocPool;
bsalomon@google.com30085192011-08-19 15:42:31 +0000167
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000168 fAARectRenderer->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000169 fOvalRenderer->unref();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000170
bsalomon@google.com205d4602011-04-25 12:43:45 +0000171 fGpu->unref();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000172 SkSafeUnref(fPathRendererChain);
173 SkSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000174 fDrawState->unref();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000175}
176
bsalomon2354f842014-07-28 13:48:36 -0700177void GrContext::abandonContext() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000178 // abandon first to so destructors
179 // don't try to free the resources in the API.
bsalomonc8dc1f72014-08-21 13:02:13 -0700180 fResourceCache2->abandonAll();
181
robertphillipse3371302014-09-17 06:01:06 -0700182 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000183
bsalomon@google.com30085192011-08-19 15:42:31 +0000184 // a path renderer may be holding onto resources that
185 // are now unusable
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000186 SkSafeSetNull(fPathRendererChain);
187 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000188
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000189 delete fDrawBuffer;
190 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000191
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000192 delete fDrawBufferVBAllocPool;
193 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000194
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000195 delete fDrawBufferIBAllocPool;
196 fDrawBufferIBAllocPool = NULL;
197
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000198 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000199 fOvalRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000200
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000201 fResourceCache->purgeAllUnlocked();
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000202
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000203 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000204 fLayerCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000205}
206
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000207void GrContext::resetContext(uint32_t state) {
208 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000209}
210
211void GrContext::freeGpuResources() {
212 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000213
robertphillips@google.comff175842012-05-14 19:31:39 +0000214 fGpu->purgeResources();
bsalomon49f085d2014-09-05 13:34:00 -0700215 if (fDrawBuffer) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700216 fDrawBuffer->purgeResources();
217 }
robertphillips@google.comff175842012-05-14 19:31:39 +0000218
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000219 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000220 fOvalRenderer->reset();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000221
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000222 fResourceCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000223 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000224 fLayerCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000225 // a path renderer may be holding onto resources
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000226 SkSafeSetNull(fPathRendererChain);
227 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000228}
229
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000230void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon49f085d2014-09-05 13:34:00 -0700231 if (resourceCount) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000232 *resourceCount = fResourceCache->getCachedResourceCount();
233 }
bsalomon49f085d2014-09-05 13:34:00 -0700234 if (resourceBytes) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000235 *resourceBytes = fResourceCache->getCachedResourceBytes();
236 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000237}
238
kkinnunenc6cb56f2014-06-24 00:12:27 -0700239GrTextContext* GrContext::createTextContext(GrRenderTarget* renderTarget,
240 const SkDeviceProperties&
241 leakyProperties,
242 bool enableDistanceFieldFonts) {
jvanverth8c27a182014-10-14 08:45:50 -0700243 if (fGpu->caps()->pathRenderingSupport() && renderTarget->getStencilBuffer() &&
244 renderTarget->isMultisampled()) {
245 return GrStencilAndCoverTextContext::Create(this, leakyProperties);
246 }
247
248 return GrDistanceFieldTextContext::Create(this, leakyProperties, enableDistanceFieldFonts);
kkinnunenc6cb56f2014-06-24 00:12:27 -0700249}
250
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000251////////////////////////////////////////////////////////////////////////////////
252
bsalomonf2703d82014-10-28 14:33:06 -0700253GrTexture* GrContext::findAndRefTexture(const GrSurfaceDesc& desc,
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000254 const GrCacheID& cacheID,
255 const GrTextureParams* params) {
bsalomonafbf2d62014-09-30 12:18:44 -0700256 GrResourceKey resourceKey = GrTexturePriv::ComputeKey(fGpu, params, desc, cacheID);
bsalomon6d3fe022014-07-25 08:35:45 -0700257 GrGpuResource* resource = fResourceCache->find(resourceKey);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000258 SkSafeRef(resource);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000259 return static_cast<GrTexture*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000260}
261
bsalomonf2703d82014-10-28 14:33:06 -0700262bool GrContext::isTextureInCache(const GrSurfaceDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000263 const GrCacheID& cacheID,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000264 const GrTextureParams* params) const {
bsalomonafbf2d62014-09-30 12:18:44 -0700265 GrResourceKey resourceKey = GrTexturePriv::ComputeKey(fGpu, params, desc, cacheID);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000266 return fResourceCache->hasKey(resourceKey);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000267}
268
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000269void GrContext::addStencilBuffer(GrStencilBuffer* sb) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +0000270 ASSERT_OWNED_RESOURCE(sb);
robertphillips@google.com46a86002012-08-08 10:42:44 +0000271
272 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(),
273 sb->height(),
274 sb->numSamples());
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000275 fResourceCache->addResource(resourceKey, sb);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000276}
277
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000278GrStencilBuffer* GrContext::findStencilBuffer(int width, int height,
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000279 int sampleCnt) {
robertphillips@google.com46a86002012-08-08 10:42:44 +0000280 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width,
281 height,
282 sampleCnt);
bsalomon6d3fe022014-07-25 08:35:45 -0700283 GrGpuResource* resource = fResourceCache->find(resourceKey);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000284 return static_cast<GrStencilBuffer*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000285}
286
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000287static void stretch_image(void* dst,
288 int dstW,
289 int dstH,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000290 const void* src,
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000291 int srcW,
292 int srcH,
293 size_t bpp) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000294 SkFixed dx = (srcW << 16) / dstW;
295 SkFixed dy = (srcH << 16) / dstH;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000296
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000297 SkFixed y = dy >> 1;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000298
robertphillips@google.com8b169312013-10-15 17:47:36 +0000299 size_t dstXLimit = dstW*bpp;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000300 for (int j = 0; j < dstH; ++j) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000301 SkFixed x = dx >> 1;
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000302 const uint8_t* srcRow = reinterpret_cast<const uint8_t *>(src) + (y>>16)*srcW*bpp;
303 uint8_t* dstRow = reinterpret_cast<uint8_t *>(dst) + j*dstW*bpp;
robertphillips@google.com8b169312013-10-15 17:47:36 +0000304 for (size_t i = 0; i < dstXLimit; i += bpp) {
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000305 memcpy(dstRow + i, srcRow + (x>>16)*bpp, bpp);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000306 x += dx;
307 }
308 y += dy;
309 }
310}
311
robertphillips@google.com42903302013-04-20 12:26:07 +0000312namespace {
313
314// position + local coordinate
315extern const GrVertexAttrib gVertexAttribs[] = {
316 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000317 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000318};
319
320};
321
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000322// The desired texture is NPOT and tiled but that isn't supported by
robertphillips@google.com3319f332012-08-13 18:00:36 +0000323// the current hardware. Resize the texture to be a POT
bsalomonf2703d82014-10-28 14:33:06 -0700324GrTexture* GrContext::createResizedTexture(const GrSurfaceDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000325 const GrCacheID& cacheID,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000326 const void* srcData,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000327 size_t rowBytes,
humper@google.comb86add12013-07-25 18:49:07 +0000328 bool filter) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000329 SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, cacheID, NULL));
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000330 if (NULL == clampedTexture) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000331 clampedTexture.reset(this->createTexture(NULL, desc, cacheID, srcData, rowBytes));
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000332
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000333 if (NULL == clampedTexture) {
robertphillips@google.com3319f332012-08-13 18:00:36 +0000334 return NULL;
335 }
336 }
robertphillips@google.com0d25eef2012-09-11 21:25:51 +0000337
bsalomonf2703d82014-10-28 14:33:06 -0700338 GrSurfaceDesc rtDesc = desc;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000339 rtDesc.fFlags = rtDesc.fFlags |
bsalomonf2703d82014-10-28 14:33:06 -0700340 kRenderTarget_GrSurfaceFlag |
341 kNoStencil_GrSurfaceFlag;
commit-bot@chromium.org5898dce2013-09-18 18:52:16 +0000342 rtDesc.fWidth = GrNextPow2(desc.fWidth);
343 rtDesc.fHeight = GrNextPow2(desc.fHeight);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000344
345 GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0);
346
bsalomon49f085d2014-09-05 13:34:00 -0700347 if (texture) {
joshualitt5c55fef2014-10-31 14:04:35 -0700348 GrDrawTarget::AutoStateRestore asr(fDrawBuffer, GrDrawTarget::kReset_ASRInit);
349 GrDrawState* drawState = fDrawBuffer->drawState();
robertphillips@google.com3319f332012-08-13 18:00:36 +0000350 drawState->setRenderTarget(texture->asRenderTarget());
351
352 // if filtering is not desired then we want to ensure all
353 // texels in the resampled image are copies of texels from
354 // the original.
joshualitt5c55fef2014-10-31 14:04:35 -0700355 GrTextureParams params(SkShader::kClamp_TileMode,
356 filter ? GrTextureParams::kBilerp_FilterMode :
357 GrTextureParams::kNone_FilterMode);
joshualittb0a8a372014-09-23 09:50:21 -0700358 drawState->addColorTextureProcessor(clampedTexture, SkMatrix::I(), params);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000359
egdaniel7b3d5ee2014-08-28 05:41:14 -0700360 drawState->setVertexAttribs<gVertexAttribs>(SK_ARRAY_COUNT(gVertexAttribs),
361 2 * sizeof(SkPoint));
jvanverth@google.com054ae992013-04-01 20:06:51 +0000362
joshualitt5c55fef2014-10-31 14:04:35 -0700363 GrDrawTarget::AutoReleaseGeometry arg(fDrawBuffer, 4, 0);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000364
365 if (arg.succeeded()) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000366 SkPoint* verts = (SkPoint*) arg.vertices();
367 verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(SkPoint));
368 verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(SkPoint));
joshualitt5c55fef2014-10-31 14:04:35 -0700369 fDrawBuffer->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000370 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000371 } else {
372 // TODO: Our CPU stretch doesn't filter. But we create separate
bsalomon@google.com08283af2012-10-26 13:01:20 +0000373 // stretched textures when the texture params is either filtered or
robertphillips@google.com3319f332012-08-13 18:00:36 +0000374 // not. Either implement filtered stretch blit on CPU or just create
375 // one when FBO case fails.
376
bsalomonf2703d82014-10-28 14:33:06 -0700377 rtDesc.fFlags = kNone_GrSurfaceFlags;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000378 // no longer need to clamp at min RT size.
379 rtDesc.fWidth = GrNextPow2(desc.fWidth);
380 rtDesc.fHeight = GrNextPow2(desc.fHeight);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000381
382 // We shouldn't be resizing a compressed texture.
383 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
384
robertphillips@google.com8b169312013-10-15 17:47:36 +0000385 size_t bpp = GrBytesPerPixel(desc.fConfig);
georgeb62508b2014-08-12 18:00:47 -0700386 GrAutoMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight);
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000387 stretch_image(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight,
388 srcData, desc.fWidth, desc.fHeight, bpp);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000389
390 size_t stretchedRowBytes = rtDesc.fWidth * bpp;
391
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000392 texture = fGpu->createTexture(rtDesc, stretchedPixels.get(), stretchedRowBytes);
bsalomon49f085d2014-09-05 13:34:00 -0700393 SkASSERT(texture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000394 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000395
396 return texture;
397}
398
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000399GrTexture* GrContext::createTexture(const GrTextureParams* params,
bsalomonf2703d82014-10-28 14:33:06 -0700400 const GrSurfaceDesc& desc,
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000401 const GrCacheID& cacheID,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000402 const void* srcData,
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000403 size_t rowBytes,
404 GrResourceKey* cacheKey) {
bsalomonafbf2d62014-09-30 12:18:44 -0700405 GrResourceKey resourceKey = GrTexturePriv::ComputeKey(fGpu, params, desc, cacheID);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000406
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000407 GrTexture* texture;
bsalomonafbf2d62014-09-30 12:18:44 -0700408 if (GrTexturePriv::NeedsResizing(resourceKey)) {
krajcevski9c0e6292014-06-02 07:38:14 -0700409 // We do not know how to resize compressed textures.
410 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
411
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000412 texture = this->createResizedTexture(desc, cacheID,
413 srcData, rowBytes,
bsalomonafbf2d62014-09-30 12:18:44 -0700414 GrTexturePriv::NeedsBilerp(resourceKey));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000415 } else {
krajcevski9c0e6292014-06-02 07:38:14 -0700416 texture = fGpu->createTexture(desc, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000417 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000418
bsalomon49f085d2014-09-05 13:34:00 -0700419 if (texture) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000420 fResourceCache->addResource(resourceKey, texture);
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000421
bsalomon49f085d2014-09-05 13:34:00 -0700422 if (cacheKey) {
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000423 *cacheKey = resourceKey;
424 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000425 }
426
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000427 return texture;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000428}
429
bsalomonf2703d82014-10-28 14:33:06 -0700430GrTexture* GrContext::createNewScratchTexture(const GrSurfaceDesc& desc) {
bsalomonbcf0a522014-10-08 08:40:09 -0700431 GrTexture* texture = fGpu->createTexture(desc, NULL, 0);
432 if (!texture) {
433 return NULL;
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000434 }
bsalomonbcf0a522014-10-08 08:40:09 -0700435 fResourceCache->addResource(texture->getScratchKey(), texture);
Brian Salomon9323b8b2014-10-07 15:07:38 -0400436 return texture;
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000437}
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000438
bsalomonf2703d82014-10-28 14:33:06 -0700439GrTexture* GrContext::refScratchTexture(const GrSurfaceDesc& inDesc, ScratchTexMatch match,
bsalomone3059732014-10-14 11:47:22 -0700440 bool calledDuringFlush) {
bsalomonbcf0a522014-10-08 08:40:09 -0700441 // kNoStencil has no meaning if kRT isn't set.
bsalomonf2703d82014-10-28 14:33:06 -0700442 SkASSERT((inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
443 !(inDesc.fFlags & kNoStencil_GrSurfaceFlag));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000444
bsalomonbcf0a522014-10-08 08:40:09 -0700445 // Make sure caller has checked for renderability if kRT is set.
bsalomonf2703d82014-10-28 14:33:06 -0700446 SkASSERT(!(inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
bsalomonbcf0a522014-10-08 08:40:09 -0700447 this->isConfigRenderable(inDesc.fConfig, inDesc.fSampleCnt > 0));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000448
bsalomonf2703d82014-10-28 14:33:06 -0700449 SkTCopyOnFirstWrite<GrSurfaceDesc> desc(inDesc);
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000450
bsalomonf2703d82014-10-28 14:33:06 -0700451 if (fGpu->caps()->reuseScratchTextures() || (desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
452 GrSurfaceFlags origFlags = desc->fFlags;
bsalomonbcf0a522014-10-08 08:40:09 -0700453 if (kApprox_ScratchTexMatch == match) {
454 // bin by pow2 with a reasonable min
455 static const int MIN_SIZE = 16;
bsalomonf2703d82014-10-28 14:33:06 -0700456 GrSurfaceDesc* wdesc = desc.writable();
bsalomonbcf0a522014-10-08 08:40:09 -0700457 wdesc->fWidth = SkTMax(MIN_SIZE, GrNextPow2(desc->fWidth));
458 wdesc->fHeight = SkTMax(MIN_SIZE, GrNextPow2(desc->fHeight));
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000459 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000460
bsalomonbcf0a522014-10-08 08:40:09 -0700461 do {
462 GrResourceKey key = GrTexturePriv::ComputeScratchKey(*desc);
bsalomon000f8292014-10-15 19:04:14 -0700463 uint32_t scratchFlags = 0;
464 if (calledDuringFlush) {
465 scratchFlags = GrResourceCache2::kRequireNoPendingIO_ScratchFlag;
bsalomonf2703d82014-10-28 14:33:06 -0700466 } else if (!(desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
bsalomon000f8292014-10-15 19:04:14 -0700467 // If it is not a render target then it will most likely be populated by
468 // writePixels() which will trigger a flush if the texture has pending IO.
469 scratchFlags = GrResourceCache2::kPreferNoPendingIO_ScratchFlag;
470 }
471 GrGpuResource* resource = fResourceCache2->findAndRefScratchResource(key, scratchFlags);
bsalomonbcf0a522014-10-08 08:40:09 -0700472 if (resource) {
473 fResourceCache->makeResourceMRU(resource);
474 return static_cast<GrTexture*>(resource);
475 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000476
bsalomonbcf0a522014-10-08 08:40:09 -0700477 if (kExact_ScratchTexMatch == match) {
478 break;
479 }
480 // We had a cache miss and we are in approx mode, relax the fit of the flags.
481
482 // We no longer try to reuse textures that were previously used as render targets in
483 // situations where no RT is needed; doing otherwise can confuse the video driver and
484 // cause significant performance problems in some cases.
bsalomonf2703d82014-10-28 14:33:06 -0700485 if (desc->fFlags & kNoStencil_GrSurfaceFlag) {
486 desc.writable()->fFlags = desc->fFlags & ~kNoStencil_GrSurfaceFlag;
bsalomonbcf0a522014-10-08 08:40:09 -0700487 } else {
488 break;
489 }
490
491 } while (true);
492
493 desc.writable()->fFlags = origFlags;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000494 }
495
bsalomonbcf0a522014-10-08 08:40:09 -0700496 GrTexture* texture = this->createNewScratchTexture(*desc);
497 SkASSERT(NULL == texture ||
498 texture->getScratchKey() == GrTexturePriv::ComputeScratchKey(*desc));
499 return texture;
Brian Salomon9323b8b2014-10-07 15:07:38 -0400500}
501
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000502bool GrContext::OverbudgetCB(void* data) {
bsalomon49f085d2014-09-05 13:34:00 -0700503 SkASSERT(data);
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000504
505 GrContext* context = reinterpret_cast<GrContext*>(data);
506
507 // Flush the InOrderDrawBuffer to possibly free up some textures
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000508 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000509
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000510 return true;
511}
512
513
bsalomonf2703d82014-10-28 14:33:06 -0700514GrTexture* GrContext::createUncachedTexture(const GrSurfaceDesc& descIn,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000515 void* srcData,
516 size_t rowBytes) {
bsalomonf2703d82014-10-28 14:33:06 -0700517 GrSurfaceDesc descCopy = descIn;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000518 return fGpu->createTexture(descCopy, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000519}
520
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000521void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
522 fResourceCache->getLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000523}
524
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000525void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
526 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000527}
528
bsalomon@google.com91958362011-06-13 17:58:13 +0000529int GrContext::getMaxTextureSize() const {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000530 return SkTMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride);
bsalomon@google.com91958362011-06-13 17:58:13 +0000531}
532
533int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000534 return fGpu->caps()->maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000535}
536
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000537int GrContext::getMaxSampleCount() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000538 return fGpu->caps()->maxSampleCount();
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000539}
540
bsalomon@google.com27847de2011-02-22 20:59:41 +0000541///////////////////////////////////////////////////////////////////////////////
542
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000543GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) {
544 return fGpu->wrapBackendTexture(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000545}
546
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000547GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
548 return fGpu->wrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000549}
550
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000551///////////////////////////////////////////////////////////////////////////////
552
bsalomon@google.comb8670992012-07-25 21:27:09 +0000553bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000554 int width, int height) const {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000555 const GrDrawTargetCaps* caps = fGpu->caps();
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000556 if (!caps->isConfigTexturable(kIndex_8_GrPixelConfig)) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000557 return false;
558 }
559
tfarinaf9dae782014-06-06 06:35:28 -0700560 bool isPow2 = SkIsPow2(width) && SkIsPow2(height);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000561
562 if (!isPow2) {
bsalomon49f085d2014-09-05 13:34:00 -0700563 bool tiled = params && params->isTiled();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000564 if (tiled && !caps->npotTextureTileSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000565 return false;
566 }
567 }
568 return true;
569}
570
bsalomon@google.com27847de2011-02-22 20:59:41 +0000571
bsalomon@google.com27847de2011-02-22 20:59:41 +0000572////////////////////////////////////////////////////////////////////////////////
573
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000574void GrContext::clear(const SkIRect* rect,
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000575 const GrColor color,
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000576 bool canIgnoreRect,
bsalomon41ebbdd2014-08-04 08:31:39 -0700577 GrRenderTarget* renderTarget) {
578 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000579 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000580 AutoCheckFlush acf(this);
egdanield78a1682014-07-09 10:41:26 -0700581 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::clear", this);
joshualitt5c55fef2014-10-31 14:04:35 -0700582 GrDrawTarget* target = this->prepareToDraw(NULL, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700583 if (NULL == target) {
584 return;
585 }
586 target->clear(rect, color, canIgnoreRect, renderTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000587}
588
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000589void GrContext::drawPaint(const GrPaint& origPaint) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000590 // set rect to be big enough to fill the space, but not super-huge, so we
591 // don't overflow fixed-point implementations
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000592 SkRect r;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000593 r.setLTRB(0, 0,
bsalomon@google.com81712882012-11-01 17:12:34 +0000594 SkIntToScalar(getRenderTarget()->width()),
595 SkIntToScalar(getRenderTarget()->height()));
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000596 SkMatrix inverse;
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000597 SkTCopyOnFirstWrite<GrPaint> paint(origPaint);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000598 AutoMatrix am;
egdanield78a1682014-07-09 10:41:26 -0700599 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::drawPaint", this);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000600
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000601 // We attempt to map r by the inverse matrix and draw that. mapRect will
602 // map the four corners and bound them with a new rect. This will not
603 // produce a correct result for some perspective matrices.
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000604 if (!this->getMatrix().hasPerspective()) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000605 if (!fViewMatrix.invert(&inverse)) {
tfarina38406c82014-10-31 07:11:12 -0700606 SkDebugf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000607 return;
608 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000609 inverse.mapRect(&r);
610 } else {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000611 if (!am.setIdentity(this, paint.writable())) {
tfarina38406c82014-10-31 07:11:12 -0700612 SkDebugf("Could not invert matrix\n");
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000613 return;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000614 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000615 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000616 // by definition this fills the entire clip, no need for AA
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000617 if (paint->isAntiAlias()) {
618 paint.writable()->setAntiAlias(false);
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000619 }
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000620 this->drawRect(*paint, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000621}
622
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000623#ifdef SK_DEVELOPER
624void GrContext::dumpFontCache() const {
625 fFontCache->dump();
626}
627#endif
628
bsalomon@google.com205d4602011-04-25 12:43:45 +0000629////////////////////////////////////////////////////////////////////////////////
630
bsalomon@google.com27847de2011-02-22 20:59:41 +0000631/* create a triangle strip that strokes the specified triangle. There are 8
632 unique vertices, but we repreat the last 2 to close up. Alternatively we
633 could use an indices array, and then only send 8 verts, but not sure that
634 would be faster.
635 */
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000636static void setStrokeRectStrip(SkPoint verts[10], SkRect rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000637 SkScalar width) {
638 const SkScalar rad = SkScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000639 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000640
641 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
642 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
643 verts[2].set(rect.fRight - rad, rect.fTop + rad);
644 verts[3].set(rect.fRight + rad, rect.fTop - rad);
645 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
646 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
647 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
648 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
649 verts[8] = verts[0];
650 verts[9] = verts[1];
651}
652
bsalomonc30aaa02014-08-13 07:15:29 -0700653static inline bool is_irect(const SkRect& r) {
tfarina38406c82014-10-31 07:11:12 -0700654 return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
655 SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
bsalomonc30aaa02014-08-13 07:15:29 -0700656}
657
bsalomon@google.com205d4602011-04-25 12:43:45 +0000658static bool apply_aa_to_rect(GrDrawTarget* target,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000659 const SkRect& rect,
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000660 SkScalar strokeWidth,
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000661 const SkMatrix& combinedMatrix,
bsalomon9c0822a2014-08-11 11:07:48 -0700662 SkRect* devBoundRect) {
663 if (!target->getDrawState().canTweakAlphaForCoverage() &&
664 target->shouldDisableCoverageAAForBlend()) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000665#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700666 //SkDebugf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000667#endif
bsalomon9c0822a2014-08-11 11:07:48 -0700668 return false;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000669 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000670 const GrDrawState& drawState = target->getDrawState();
671 if (drawState.getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000672 return false;
673 }
674
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000675#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000676 if (strokeWidth >= 0) {
677#endif
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000678 if (!combinedMatrix.preservesAxisAlignment()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000679 return false;
680 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000681
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000682#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000683 } else {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000684 if (!combinedMatrix.preservesRightAngles()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000685 return false;
686 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000687 }
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000688#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000689
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000690 combinedMatrix.mapRect(devBoundRect, rect);
bsalomonc30aaa02014-08-13 07:15:29 -0700691 if (strokeWidth < 0) {
692 return !is_irect(*devBoundRect);
693 }
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000694
bsalomon9c0822a2014-08-11 11:07:48 -0700695 return true;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000696}
697
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000698static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
699 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
700 point.fY >= rect.fTop && point.fY <= rect.fBottom;
701}
702
bsalomon@google.com27847de2011-02-22 20:59:41 +0000703void GrContext::drawRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000704 const SkRect& rect,
bsalomon01c8da12014-08-04 09:21:30 -0700705 const GrStrokeInfo* strokeInfo) {
bsalomon49f085d2014-09-05 13:34:00 -0700706 if (strokeInfo && strokeInfo->isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700707 SkPath path;
708 path.addRect(rect);
709 this->drawPath(paint, path, *strokeInfo);
710 return;
711 }
712
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000713 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000714 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700715 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700716 if (NULL == target) {
717 return;
718 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000719
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000720 GR_CREATE_TRACE_MARKER("GrContext::drawRect", target);
egdanield58a0ba2014-06-11 10:30:05 -0700721 SkScalar width = NULL == strokeInfo ? -1 : strokeInfo->getStrokeRec().getWidth();
bsalomon01c8da12014-08-04 09:21:30 -0700722 SkMatrix matrix = target->drawState()->getViewMatrix();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000723
724 // Check if this is a full RT draw and can be replaced with a clear. We don't bother checking
725 // cases where the RT is fully inside a stroke.
726 if (width < 0) {
727 SkRect rtRect;
728 target->getDrawState().getRenderTarget()->getBoundsRect(&rtRect);
729 SkRect clipSpaceRTRect = rtRect;
730 bool checkClip = false;
bsalomon49f085d2014-09-05 13:34:00 -0700731 if (this->getClip()) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000732 checkClip = true;
733 clipSpaceRTRect.offset(SkIntToScalar(this->getClip()->fOrigin.fX),
734 SkIntToScalar(this->getClip()->fOrigin.fY));
735 }
736 // Does the clip contain the entire RT?
737 if (!checkClip || target->getClip()->fClipStack->quickContains(clipSpaceRTRect)) {
738 SkMatrix invM;
bsalomon01c8da12014-08-04 09:21:30 -0700739 if (!matrix.invert(&invM)) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000740 return;
741 }
742 // Does the rect bound the RT?
743 SkPoint srcSpaceRTQuad[4];
744 invM.mapRectToQuad(srcSpaceRTQuad, rtRect);
745 if (rect_contains_inclusive(rect, srcSpaceRTQuad[0]) &&
746 rect_contains_inclusive(rect, srcSpaceRTQuad[1]) &&
747 rect_contains_inclusive(rect, srcSpaceRTQuad[2]) &&
748 rect_contains_inclusive(rect, srcSpaceRTQuad[3])) {
749 // Will it blend?
750 GrColor clearColor;
751 if (paint.isOpaqueAndConstantColor(&clearColor)) {
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000752 target->clear(NULL, clearColor, true);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000753 return;
754 }
755 }
756 }
757 }
758
759 SkRect devBoundRect;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000760 bool needAA = paint.isAntiAlias() &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000761 !target->getDrawState().getRenderTarget()->isMultisampled();
bsalomon9c0822a2014-08-11 11:07:48 -0700762 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix, &devBoundRect);
egdanield58a0ba2014-06-11 10:30:05 -0700763
764 const SkStrokeRec& strokeRec = strokeInfo->getStrokeRec();
765
bsalomon@google.com205d4602011-04-25 12:43:45 +0000766 if (doAA) {
bsalomon@google.com137f1342013-05-29 21:27:53 +0000767 GrDrawState::AutoViewMatrixRestore avmr;
768 if (!avmr.setIdentity(target->drawState())) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000769 return;
770 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000771 if (width >= 0) {
joshualittb44293e2014-10-28 08:12:18 -0700772 fAARectRenderer->strokeAARect(target, rect,
bsalomon01c8da12014-08-04 09:21:30 -0700773 matrix, devBoundRect,
bsalomon9c0822a2014-08-11 11:07:48 -0700774 strokeRec);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000775 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000776 // filled AA rect
joshualittb44293e2014-10-28 08:12:18 -0700777 fAARectRenderer->fillAARect(target,
bsalomon9c0822a2014-08-11 11:07:48 -0700778 rect, matrix, devBoundRect);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000779 }
780 return;
781 }
782
bsalomon@google.com27847de2011-02-22 20:59:41 +0000783 if (width >= 0) {
784 // TODO: consider making static vertex buffers for these cases.
bsalomon@google.com64386952013-02-08 21:22:44 +0000785 // Hairline could be done by just adding closing vertex to
786 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000787
bsalomon@google.com27847de2011-02-22 20:59:41 +0000788 static const int worstCaseVertCount = 10;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000789 target->drawState()->setDefaultVertexAttribs();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000790 GrDrawTarget::AutoReleaseGeometry geo(target, worstCaseVertCount, 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000791
792 if (!geo.succeeded()) {
tfarina38406c82014-10-31 07:11:12 -0700793 SkDebugf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000794 return;
795 }
796
797 GrPrimitiveType primType;
798 int vertCount;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000799 SkPoint* vertex = geo.positions();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000800
801 if (width > 0) {
802 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000803 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000804 setStrokeRectStrip(vertex, rect, width);
805 } else {
806 // hairline
807 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000808 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000809 vertex[0].set(rect.fLeft, rect.fTop);
810 vertex[1].set(rect.fRight, rect.fTop);
811 vertex[2].set(rect.fRight, rect.fBottom);
812 vertex[3].set(rect.fLeft, rect.fBottom);
813 vertex[4].set(rect.fLeft, rect.fTop);
814 }
815
bsalomon@google.com27847de2011-02-22 20:59:41 +0000816 target->drawNonIndexed(primType, 0, vertCount);
817 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000818 // filled BW rect
bsalomon01c8da12014-08-04 09:21:30 -0700819 target->drawSimpleRect(rect);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000820 }
821}
822
823void GrContext::drawRectToRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000824 const SkRect& dstRect,
825 const SkRect& localRect,
bsalomon@google.comc7818882013-03-20 19:19:53 +0000826 const SkMatrix* localMatrix) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000827 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000828 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700829 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700830 if (NULL == target) {
831 return;
832 }
bsalomon@google.com64386952013-02-08 21:22:44 +0000833
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000834 GR_CREATE_TRACE_MARKER("GrContext::drawRectToRect", target);
835
bsalomon01c8da12014-08-04 09:21:30 -0700836 target->drawRect(dstRect, &localRect, localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000837}
838
robertphillips@google.com42903302013-04-20 12:26:07 +0000839namespace {
840
841extern const GrVertexAttrib gPosUVColorAttribs[] = {
842 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding },
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000843 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding },
844 {kVec4ub_GrVertexAttribType, 2*sizeof(SkPoint), kColor_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000845};
846
egdaniel7b3d5ee2014-08-28 05:41:14 -0700847static const size_t kPosUVAttribsSize = 2 * sizeof(SkPoint);
848static const size_t kPosUVColorAttribsSize = 2 * sizeof(SkPoint) + sizeof(GrColor);
849
robertphillips@google.com42903302013-04-20 12:26:07 +0000850extern const GrVertexAttrib gPosColorAttribs[] = {
851 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000852 {kVec4ub_GrVertexAttribType, sizeof(SkPoint), kColor_GrVertexAttribBinding},
robertphillips@google.com42903302013-04-20 12:26:07 +0000853};
854
egdaniel7b3d5ee2014-08-28 05:41:14 -0700855static const size_t kPosAttribsSize = sizeof(SkPoint);
856static const size_t kPosColorAttribsSize = sizeof(SkPoint) + sizeof(GrColor);
857
robertphillips@google.com42903302013-04-20 12:26:07 +0000858static void set_vertex_attributes(GrDrawState* drawState,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000859 const SkPoint* texCoords,
robertphillips@google.com42903302013-04-20 12:26:07 +0000860 const GrColor* colors,
861 int* colorOffset,
862 int* texOffset) {
863 *texOffset = -1;
864 *colorOffset = -1;
865
bsalomon49f085d2014-09-05 13:34:00 -0700866 if (texCoords && colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000867 *texOffset = sizeof(SkPoint);
868 *colorOffset = 2*sizeof(SkPoint);
egdaniel7b3d5ee2014-08-28 05:41:14 -0700869 drawState->setVertexAttribs<gPosUVColorAttribs>(3, kPosUVColorAttribsSize);
bsalomon49f085d2014-09-05 13:34:00 -0700870 } else if (texCoords) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000871 *texOffset = sizeof(SkPoint);
egdaniel7b3d5ee2014-08-28 05:41:14 -0700872 drawState->setVertexAttribs<gPosUVColorAttribs>(2, kPosUVAttribsSize);
bsalomon49f085d2014-09-05 13:34:00 -0700873 } else if (colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000874 *colorOffset = sizeof(SkPoint);
egdaniel7b3d5ee2014-08-28 05:41:14 -0700875 drawState->setVertexAttribs<gPosColorAttribs>(2, kPosColorAttribsSize);
robertphillips@google.com42903302013-04-20 12:26:07 +0000876 } else {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700877 drawState->setVertexAttribs<gPosColorAttribs>(1, kPosAttribsSize);
robertphillips@google.com42903302013-04-20 12:26:07 +0000878 }
879}
880
881};
882
bsalomon@google.com27847de2011-02-22 20:59:41 +0000883void GrContext::drawVertices(const GrPaint& paint,
884 GrPrimitiveType primitiveType,
885 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000886 const SkPoint positions[],
887 const SkPoint texCoords[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000888 const GrColor colors[],
889 const uint16_t indices[],
890 int indexCount) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000891 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000892 AutoCheckFlush acf(this);
commit-bot@chromium.org5a567932014-01-08 21:26:09 +0000893 GrDrawTarget::AutoReleaseGeometry geo; // must be inside AutoCheckFlush scope
894
joshualitt5c55fef2014-10-31 14:04:35 -0700895 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700896 if (NULL == target) {
897 return;
898 }
egdaniele61c4112014-06-12 10:24:21 -0700899 GrDrawState* drawState = target->drawState();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000900
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000901 GR_CREATE_TRACE_MARKER("GrContext::drawVertices", target);
902
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000903 int colorOffset = -1, texOffset = -1;
robertphillips@google.com42903302013-04-20 12:26:07 +0000904 set_vertex_attributes(drawState, texCoords, colors, &colorOffset, &texOffset);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000905
egdaniel7b3d5ee2014-08-28 05:41:14 -0700906 size_t VertexStride = drawState->getVertexStride();
907 if (sizeof(SkPoint) != VertexStride) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000908 if (!geo.set(target, vertexCount, 0)) {
tfarina38406c82014-10-31 07:11:12 -0700909 SkDebugf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000910 return;
911 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000912 void* curVertex = geo.vertices();
913
914 for (int i = 0; i < vertexCount; ++i) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000915 *((SkPoint*)curVertex) = positions[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000916
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000917 if (texOffset >= 0) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000918 *(SkPoint*)((intptr_t)curVertex + texOffset) = texCoords[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000919 }
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000920 if (colorOffset >= 0) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000921 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
922 }
egdaniel7b3d5ee2014-08-28 05:41:14 -0700923 curVertex = (void*)((intptr_t)curVertex + VertexStride);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000924 }
925 } else {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000926 target->setVertexSourceToArray(positions, vertexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000927 }
928
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000929 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +0000930 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon@google.coma47a48d2011-04-26 20:22:11 +0000931
bsalomon49f085d2014-09-05 13:34:00 -0700932 if (indices) {
bsalomon@google.com91958362011-06-13 17:58:13 +0000933 target->setIndexSourceToArray(indices, indexCount);
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000934 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000935 target->resetIndexSource();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000936 } else {
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000937 target->drawNonIndexed(primitiveType, 0, vertexCount);
938 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000939}
940
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000941///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com93c96602012-04-27 13:05:21 +0000942
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000943void GrContext::drawRRect(const GrPaint& paint,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000944 const SkRRect& rrect,
egdanield58a0ba2014-06-11 10:30:05 -0700945 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000946 if (rrect.isEmpty()) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000947 return;
948 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000949
egdanield58a0ba2014-06-11 10:30:05 -0700950 if (strokeInfo.isDashed()) {
951 SkPath path;
952 path.addRRect(rrect);
953 this->drawPath(paint, path, strokeInfo);
954 return;
955 }
956
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000957 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000958 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700959 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700960 if (NULL == target) {
961 return;
962 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000963
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000964 GR_CREATE_TRACE_MARKER("GrContext::drawRRect", target);
965
egdanield58a0ba2014-06-11 10:30:05 -0700966 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
967
968 if (!fOvalRenderer->drawRRect(target, this, paint.isAntiAlias(), rrect, strokeRec)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000969 SkPath path;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000970 path.addRRect(rrect);
egdanield58a0ba2014-06-11 10:30:05 -0700971 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000972 }
973}
974
975///////////////////////////////////////////////////////////////////////////////
976
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000977void GrContext::drawDRRect(const GrPaint& paint,
978 const SkRRect& outer,
979 const SkRRect& inner) {
980 if (outer.isEmpty()) {
981 return;
982 }
983
984 AutoRestoreEffects are;
985 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700986 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000987
988 GR_CREATE_TRACE_MARKER("GrContext::drawDRRect", target);
989
990 if (!fOvalRenderer->drawDRRect(target, this, paint.isAntiAlias(), outer, inner)) {
991 SkPath path;
992 path.addRRect(inner);
993 path.addRRect(outer);
994 path.setFillType(SkPath::kEvenOdd_FillType);
995
egdanield58a0ba2014-06-11 10:30:05 -0700996 GrStrokeInfo fillRec(SkStrokeRec::kFill_InitStyle);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000997 this->internalDrawPath(target, paint.isAntiAlias(), path, fillRec);
998 }
999}
1000
1001///////////////////////////////////////////////////////////////////////////////
1002
bsalomon@google.com93c96602012-04-27 13:05:21 +00001003void GrContext::drawOval(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001004 const SkRect& oval,
egdanield58a0ba2014-06-11 10:30:05 -07001005 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001006 if (oval.isEmpty()) {
1007 return;
1008 }
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001009
egdanield58a0ba2014-06-11 10:30:05 -07001010 if (strokeInfo.isDashed()) {
1011 SkPath path;
1012 path.addOval(oval);
1013 this->drawPath(paint, path, strokeInfo);
1014 return;
1015 }
1016
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001017 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001018 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001019 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001020 if (NULL == target) {
1021 return;
1022 }
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001023
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001024 GR_CREATE_TRACE_MARKER("GrContext::drawOval", target);
1025
egdanield58a0ba2014-06-11 10:30:05 -07001026 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1027
1028
1029 if (!fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), oval, strokeRec)) {
bsalomon@google.com93c96602012-04-27 13:05:21 +00001030 SkPath path;
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001031 path.addOval(oval);
egdanield58a0ba2014-06-11 10:30:05 -07001032 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
skia.committer@gmail.com98ded842013-01-23 07:06:17 +00001033 }
bsalomon@google.com150d2842012-01-12 20:19:56 +00001034}
bsalomon@google.com27847de2011-02-22 20:59:41 +00001035
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001036// Can 'path' be drawn as a pair of filled nested rectangles?
1037static bool is_nested_rects(GrDrawTarget* target,
1038 const SkPath& path,
1039 const SkStrokeRec& stroke,
bsalomon9c0822a2014-08-11 11:07:48 -07001040 SkRect rects[2]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001041 SkASSERT(stroke.isFillStyle());
1042
1043 if (path.isInverseFillType()) {
1044 return false;
1045 }
1046
1047 const GrDrawState& drawState = target->getDrawState();
1048
1049 // TODO: this restriction could be lifted if we were willing to apply
1050 // the matrix to all the points individually rather than just to the rect
1051 if (!drawState.getViewMatrix().preservesAxisAlignment()) {
1052 return false;
1053 }
1054
bsalomon9c0822a2014-08-11 11:07:48 -07001055 if (!target->getDrawState().canTweakAlphaForCoverage() &&
1056 target->shouldDisableCoverageAAForBlend()) {
1057 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001058 }
1059
1060 SkPath::Direction dirs[2];
1061 if (!path.isNestedRects(rects, dirs)) {
1062 return false;
1063 }
1064
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001065 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001066 // The two rects need to be wound opposite to each other
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001067 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001068 }
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001069
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001070 // Right now, nested rects where the margin is not the same width
1071 // all around do not render correctly
1072 const SkScalar* outer = rects[0].asScalars();
1073 const SkScalar* inner = rects[1].asScalars();
1074
robertphillips183e9852014-10-21 11:25:37 -07001075 bool allEq = true;
1076
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001077 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
robertphillips183e9852014-10-21 11:25:37 -07001078 bool allGoE1 = margin >= SK_Scalar1;
1079
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001080 for (int i = 1; i < 4; ++i) {
1081 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
robertphillips183e9852014-10-21 11:25:37 -07001082 if (temp < SK_Scalar1) {
1083 allGoE1 = false;
1084 }
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001085 if (!SkScalarNearlyEqual(margin, temp)) {
robertphillips183e9852014-10-21 11:25:37 -07001086 allEq = false;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001087 }
1088 }
1089
robertphillips183e9852014-10-21 11:25:37 -07001090 return allEq || allGoE1;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001091}
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001092
egdanield58a0ba2014-06-11 10:30:05 -07001093void GrContext::drawPath(const GrPaint& paint, const SkPath& path, const GrStrokeInfo& strokeInfo) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001094
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001095 if (path.isEmpty()) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001096 if (path.isInverseFillType()) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001097 this->drawPaint(paint);
1098 }
1099 return;
1100 }
1101
egdanield58a0ba2014-06-11 10:30:05 -07001102 if (strokeInfo.isDashed()) {
egdaniele61c4112014-06-12 10:24:21 -07001103 SkPoint pts[2];
1104 if (path.isLine(pts)) {
1105 AutoRestoreEffects are;
1106 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001107 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001108 if (NULL == target) {
1109 return;
1110 }
egdaniele61c4112014-06-12 10:24:21 -07001111 GrDrawState* drawState = target->drawState();
1112
1113 SkMatrix origViewMatrix = drawState->getViewMatrix();
1114 GrDrawState::AutoViewMatrixRestore avmr;
1115 if (avmr.setIdentity(target->drawState())) {
1116 if (GrDashingEffect::DrawDashLine(pts, paint, strokeInfo, fGpu, target,
1117 origViewMatrix)) {
1118 return;
1119 }
1120 }
1121 }
1122
1123 // Filter dashed path into new path with the dashing applied
egdanield58a0ba2014-06-11 10:30:05 -07001124 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
1125 SkTLazy<SkPath> effectPath;
1126 GrStrokeInfo newStrokeInfo(strokeInfo, false);
1127 SkStrokeRec* stroke = newStrokeInfo.getStrokeRecPtr();
1128 if (SkDashPath::FilterDashPath(effectPath.init(), path, stroke, NULL, info)) {
1129 this->drawPath(paint, *effectPath.get(), newStrokeInfo);
1130 return;
1131 }
1132
1133 this->drawPath(paint, path, newStrokeInfo);
1134 return;
1135 }
1136
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001137 // Note that internalDrawPath may sw-rasterize the path into a scratch texture.
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001138 // Scratch textures can be recycled after they are returned to the texture
1139 // cache. This presents a potential hazard for buffered drawing. However,
1140 // the writePixels that uploads to the scratch will perform a flush so we're
1141 // OK.
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001142 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001143 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001144 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001145 if (NULL == target) {
1146 return;
1147 }
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001148 GrDrawState* drawState = target->drawState();
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001149
egdaniel93a37bc2014-07-21 13:47:57 -07001150 GR_CREATE_TRACE_MARKER1("GrContext::drawPath", target, "Is Convex", path.isConvex());
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001151
egdanield58a0ba2014-06-11 10:30:05 -07001152 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1153
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001154 bool useCoverageAA = paint.isAntiAlias() && !drawState->getRenderTarget()->isMultisampled();
1155
egdanield58a0ba2014-06-11 10:30:05 -07001156 if (useCoverageAA && strokeRec.getWidth() < 0 && !path.isConvex()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001157 // Concave AA paths are expensive - try to avoid them for special cases
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001158 SkRect rects[2];
1159
bsalomon9c0822a2014-08-11 11:07:48 -07001160 if (is_nested_rects(target, path, strokeRec, rects)) {
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001161 SkMatrix origViewMatrix = drawState->getViewMatrix();
bsalomon@google.com137f1342013-05-29 21:27:53 +00001162 GrDrawState::AutoViewMatrixRestore avmr;
1163 if (!avmr.setIdentity(target->drawState())) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001164 return;
1165 }
1166
joshualittb44293e2014-10-28 08:12:18 -07001167 fAARectRenderer->fillAANestedRects(target, rects, origViewMatrix);
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001168 return;
1169 }
1170 }
1171
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001172 SkRect ovalRect;
1173 bool isOval = path.isOval(&ovalRect);
1174
skia.committer@gmail.com7e328512013-03-23 07:01:28 +00001175 if (!isOval || path.isInverseFillType()
egdanield58a0ba2014-06-11 10:30:05 -07001176 || !fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), ovalRect, strokeRec)) {
1177 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001178 }
1179}
1180
bsalomon@google.com1b20a102013-11-08 14:42:56 +00001181void GrContext::internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
egdanield58a0ba2014-06-11 10:30:05 -07001182 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001183 SkASSERT(!path.isEmpty());
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001184
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001185 GR_CREATE_TRACE_MARKER("GrContext::internalDrawPath", target);
1186
1187
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001188 // An Assumption here is that path renderer would use some form of tweaking
1189 // the src color (either the input alpha or in the frag shader) to implement
1190 // aa. If we have some future driver-mojo path AA that can do the right
1191 // thing WRT to the blend then we'll need some query on the PR.
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001192 bool useCoverageAA = useAA &&
1193 !target->getDrawState().getRenderTarget()->isMultisampled() &&
1194 !target->shouldDisableCoverageAAForBlend();
bsalomon@google.com289533a2011-10-27 12:34:25 +00001195
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001196
1197 GrPathRendererChain::DrawType type =
1198 useCoverageAA ? GrPathRendererChain::kColorAntiAlias_DrawType :
robertphillips@google.come79f3202014-02-11 16:30:21 +00001199 GrPathRendererChain::kColor_DrawType;
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001200
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001201 const SkPath* pathPtr = &path;
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001202 SkTLazy<SkPath> tmpPath;
egdanield58a0ba2014-06-11 10:30:05 -07001203 SkTCopyOnFirstWrite<SkStrokeRec> stroke(strokeInfo.getStrokeRec());
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001204
1205 // Try a 1st time without stroking the path and without allowing the SW renderer
robertphillips@google.come79f3202014-02-11 16:30:21 +00001206 GrPathRenderer* pr = this->getPathRenderer(*pathPtr, *stroke, target, false, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001207
robertphillips@google.come79f3202014-02-11 16:30:21 +00001208 if (NULL == pr) {
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001209 if (!GrPathRenderer::IsStrokeHairlineOrEquivalent(*stroke, this->getMatrix(), NULL)) {
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001210 // It didn't work the 1st time, so try again with the stroked path
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001211 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1212 pathPtr = tmpPath.get();
1213 stroke.writable()->setFillStyle();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001214 if (pathPtr->isEmpty()) {
1215 return;
1216 }
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001217 }
1218 }
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001219
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001220 // This time, allow SW renderer
robertphillips@google.come79f3202014-02-11 16:30:21 +00001221 pr = this->getPathRenderer(*pathPtr, *stroke, target, true, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001222 }
1223
robertphillips@google.come79f3202014-02-11 16:30:21 +00001224 if (NULL == pr) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001225#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -07001226 SkDebugf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001227#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001228 return;
1229 }
1230
robertphillips@google.come79f3202014-02-11 16:30:21 +00001231 pr->drawPath(*pathPtr, *stroke, target, useCoverageAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001232}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001233
bsalomon@google.com27847de2011-02-22 20:59:41 +00001234////////////////////////////////////////////////////////////////////////////////
1235
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001236void GrContext::flush(int flagsBitfield) {
robertphillips@google.come7db8d62013-07-04 11:48:52 +00001237 if (NULL == fDrawBuffer) {
1238 return;
1239 }
1240
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001241 if (kDiscard_FlushBit & flagsBitfield) {
1242 fDrawBuffer->reset();
1243 } else {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001244 fDrawBuffer->flush();
junov@google.com53a55842011-06-08 22:55:10 +00001245 }
bsalomonbcf0a522014-10-08 08:40:09 -07001246 fResourceCache->purgeAsNeeded();
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001247 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001248}
1249
bsalomon81beccc2014-10-13 12:32:55 -07001250bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
1251 const void* inPixels, size_t outRowBytes, void* outPixels) {
1252 SkSrcPixelInfo srcPI;
1253 if (!GrPixelConfig2ColorType(srcConfig, &srcPI.fColorType)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001254 return false;
1255 }
bsalomon81beccc2014-10-13 12:32:55 -07001256 srcPI.fAlphaType = kUnpremul_SkAlphaType;
1257 srcPI.fPixels = inPixels;
1258 srcPI.fRowBytes = inRowBytes;
1259
1260 SkDstPixelInfo dstPI;
1261 dstPI.fColorType = srcPI.fColorType;
1262 dstPI.fAlphaType = kPremul_SkAlphaType;
1263 dstPI.fPixels = outPixels;
1264 dstPI.fRowBytes = outRowBytes;
1265
1266 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001267}
1268
bsalomon81beccc2014-10-13 12:32:55 -07001269bool GrContext::writeSurfacePixels(GrSurface* surface,
1270 int left, int top, int width, int height,
1271 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
1272 uint32_t pixelOpsFlags) {
1273
1274 {
1275 GrTexture* texture = NULL;
1276 if (!(kUnpremul_PixelOpsFlag & pixelOpsFlags) && (texture = surface->asTexture()) &&
1277 fGpu->canWriteTexturePixels(texture, srcConfig)) {
1278
1279 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) &&
1280 surface->surfacePriv().hasPendingIO()) {
1281 this->flush();
1282 }
1283 return fGpu->writeTexturePixels(texture, left, top, width, height,
1284 srcConfig, buffer, rowBytes);
1285 // Don't need to check kFlushWrites_PixelOp here, we just did a direct write so the
1286 // upload is already flushed.
1287 }
1288 }
1289
1290 // If we didn't do a direct texture write then we upload the pixels to a texture and draw.
1291 GrRenderTarget* renderTarget = surface->asRenderTarget();
1292 if (NULL == renderTarget) {
1293 return false;
1294 }
1295
1296 // We ignore the preferred config unless it is a R/B swap of the src config. In that case
1297 // we will upload the original src data to a scratch texture but we will spoof it as the swapped
1298 // config. This scratch will then have R and B swapped. We correct for this by swapping again
1299 // when drawing the scratch to the dst using a conversion effect.
1300 bool swapRAndB = false;
1301 GrPixelConfig writeConfig = srcConfig;
1302 if (GrPixelConfigSwapRAndB(srcConfig) ==
1303 fGpu->preferredWritePixelsConfig(srcConfig, renderTarget->config())) {
1304 writeConfig = GrPixelConfigSwapRAndB(srcConfig);
1305 swapRAndB = true;
1306 }
1307
bsalomonf2703d82014-10-28 14:33:06 -07001308 GrSurfaceDesc desc;
bsalomon81beccc2014-10-13 12:32:55 -07001309 desc.fWidth = width;
1310 desc.fHeight = height;
1311 desc.fConfig = writeConfig;
bsalomone3059732014-10-14 11:47:22 -07001312 SkAutoTUnref<GrTexture> texture(this->refScratchTexture(desc, kApprox_ScratchTexMatch));
1313 if (!texture) {
bsalomon81beccc2014-10-13 12:32:55 -07001314 return false;
1315 }
1316
1317 SkAutoTUnref<const GrFragmentProcessor> fp;
1318 SkMatrix textureMatrix;
1319 textureMatrix.setIDiv(texture->width(), texture->height());
1320
1321 // allocate a tmp buffer and sw convert the pixels to premul
1322 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1323
1324 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
1325 if (!GrPixelConfigIs8888(srcConfig)) {
1326 return false;
1327 }
1328 fp.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix));
1329 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
1330 if (NULL == fp) {
1331 size_t tmpRowBytes = 4 * width;
1332 tmpPixels.reset(width * height);
1333 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
1334 tmpPixels.get())) {
1335 return false;
1336 }
1337 rowBytes = tmpRowBytes;
1338 buffer = tmpPixels.get();
1339 }
1340 }
1341 if (NULL == fp) {
1342 fp.reset(GrConfigConversionEffect::Create(texture,
1343 swapRAndB,
1344 GrConfigConversionEffect::kNone_PMConversion,
1345 textureMatrix));
1346 }
1347
1348 // Even if the client told us not to flush, we still flush here. The client may have known that
1349 // writes to the original surface caused no data hazards, but they can't know that the scratch
1350 // we just got is safe.
1351 if (texture->surfacePriv().hasPendingIO()) {
1352 this->flush();
1353 }
1354 if (!fGpu->writeTexturePixels(texture, 0, 0, width, height,
1355 writeConfig, buffer, rowBytes)) {
1356 return false;
1357 }
1358
1359 SkMatrix matrix;
1360 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
1361
1362 // This function can be called in the midst of drawing another object (e.g., when uploading a
1363 // SW-rasterized clip while issuing a draw). So we push the current geometry state before
1364 // drawing a rect to the render target.
1365 // The bracket ensures we pop the stack if we wind up flushing below.
1366 {
joshualitt5c55fef2014-10-31 14:04:35 -07001367 GrDrawTarget* drawTarget = this->prepareToDraw(NULL, NULL, NULL);
bsalomon81beccc2014-10-13 12:32:55 -07001368 GrDrawTarget::AutoGeometryAndStatePush agasp(drawTarget, GrDrawTarget::kReset_ASRInit,
1369 &matrix);
1370 GrDrawState* drawState = drawTarget->drawState();
1371 drawState->addColorProcessor(fp);
1372 drawState->setRenderTarget(renderTarget);
1373 drawState->disableState(GrDrawState::kClip_StateBit);
1374 drawTarget->drawSimpleRect(SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)));
1375 }
1376
1377 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1378 this->flushSurfaceWrites(surface);
1379 }
1380
1381 return true;
1382}
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001383
reed@google.com7111d462014-03-25 16:20:24 +00001384// toggles between RGBA and BGRA
1385static SkColorType toggle_colortype32(SkColorType ct) {
1386 if (kRGBA_8888_SkColorType == ct) {
1387 return kBGRA_8888_SkColorType;
1388 } else {
1389 SkASSERT(kBGRA_8888_SkColorType == ct);
1390 return kRGBA_8888_SkColorType;
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001391 }
1392}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001393
bsalomon@google.com0342a852012-08-20 19:22:38 +00001394bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1395 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001396 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001397 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001398 ASSERT_OWNED_RESOURCE(target);
1399
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001400 if (NULL == target) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001401 target = fRenderTarget.get();
bsalomon@google.comc4364992011-11-07 15:54:49 +00001402 if (NULL == target) {
1403 return false;
1404 }
1405 }
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001406
bsalomonafbf2d62014-09-30 12:18:44 -07001407 if (!(kDontFlush_PixelOpsFlag & flags) && target->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001408 this->flush();
1409 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001410
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001411 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001412
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001413 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1414 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1415 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001416 width, height, dstConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001417 rowBytes);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001418 // We ignore the preferred config if it is different than our config unless it is an R/B swap.
1419 // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped
1420 // config. Then we will call readPixels on the scratch with the swapped config. The swaps during
1421 // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from
1422 // dstConfig.
1423 GrPixelConfig readConfig = dstConfig;
1424 bool swapRAndB = false;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001425 if (GrPixelConfigSwapRAndB(dstConfig) ==
1426 fGpu->preferredReadPixelsConfig(dstConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001427 readConfig = GrPixelConfigSwapRAndB(readConfig);
1428 swapRAndB = true;
1429 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001430
bsalomon@google.com0342a852012-08-20 19:22:38 +00001431 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001432
bsalomon@google.com9c680582013-02-06 18:17:50 +00001433 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001434 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001435 return false;
1436 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001437
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001438 // If the src is a texture and we would have to do conversions after read pixels, we instead
1439 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1440 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1441 // on the read back pixels.
1442 GrTexture* src = target->asTexture();
bsalomon49f085d2014-09-05 13:34:00 -07001443 if (src && (swapRAndB || unpremul || flipY)) {
bsalomon81beccc2014-10-13 12:32:55 -07001444 // Make the scratch a render so we can read its pixels.
bsalomonf2703d82014-10-28 14:33:06 -07001445 GrSurfaceDesc desc;
1446 desc.fFlags = kRenderTarget_GrSurfaceFlag;
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001447 desc.fWidth = width;
1448 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001449 desc.fConfig = readConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001450 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001451
bsalomon@google.com9c680582013-02-06 18:17:50 +00001452 // 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 +00001453 // match the passed rect. However, if we see many different size rectangles we will trash
1454 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1455 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001456 ScratchTexMatch match = kApprox_ScratchTexMatch;
1457 if (0 == left &&
1458 0 == top &&
1459 target->width() == width &&
1460 target->height() == height &&
1461 fGpu->fullReadPixelsIsFasterThanPartial()) {
1462 match = kExact_ScratchTexMatch;
1463 }
bsalomone3059732014-10-14 11:47:22 -07001464 SkAutoTUnref<GrTexture> texture(this->refScratchTexture(desc, match));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001465 if (texture) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001466 // compute a matrix to perform the draw
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001467 SkMatrix textureMatrix;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001468 textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001469 textureMatrix.postIDiv(src->width(), src->height());
1470
joshualittb0a8a372014-09-23 09:50:21 -07001471 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001472 if (unpremul) {
joshualittb0a8a372014-09-23 09:50:21 -07001473 fp.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix));
1474 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001475 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001476 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001477 }
1478 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1479 // there is no longer any point to using the scratch.
joshualittb0a8a372014-09-23 09:50:21 -07001480 if (fp || flipY || swapRAndB) {
1481 if (!fp) {
1482 fp.reset(GrConfigConversionEffect::Create(
1483 src, swapRAndB, GrConfigConversionEffect::kNone_PMConversion,
1484 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001485 }
1486 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001487
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001488 // We protect the existing geometry here since it may not be
1489 // clear to the caller that a draw operation (i.e., drawSimpleRect)
1490 // can be invoked in this method
joshualitt5c55fef2014-10-31 14:04:35 -07001491 {
1492 GrDrawTarget::AutoGeometryAndStatePush agasp(fDrawBuffer,
1493 GrDrawTarget::kReset_ASRInit);
1494 GrDrawState* drawState = fDrawBuffer->drawState();
1495 SkASSERT(fp);
1496 drawState->addColorProcessor(fp);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001497
joshualitt5c55fef2014-10-31 14:04:35 -07001498 drawState->setRenderTarget(texture->asRenderTarget());
1499 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
1500 fDrawBuffer->drawSimpleRect(rect);
1501 // we want to read back from the scratch's origin
1502 left = 0;
1503 top = 0;
1504 target = texture->asRenderTarget();
1505 }
1506 this->flushSurfaceWrites(target);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001507 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001508 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001509 }
joshualitt5c55fef2014-10-31 14:04:35 -07001510
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001511 if (!fGpu->readPixels(target,
1512 left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001513 readConfig, buffer, rowBytes)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001514 return false;
1515 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001516 // Perform any conversions we weren't able to perform using a scratch texture.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001517 if (unpremul || swapRAndB) {
reed@google.com7111d462014-03-25 16:20:24 +00001518 SkDstPixelInfo dstPI;
1519 if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) {
1520 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001521 }
reed@google.com7111d462014-03-25 16:20:24 +00001522 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1523 dstPI.fPixels = buffer;
1524 dstPI.fRowBytes = rowBytes;
1525
1526 SkSrcPixelInfo srcPI;
1527 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1528 srcPI.fAlphaType = kPremul_SkAlphaType;
1529 srcPI.fPixels = buffer;
1530 srcPI.fRowBytes = rowBytes;
1531
1532 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001533 }
1534 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001535}
1536
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001537void GrContext::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001538 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001539 ASSERT_OWNED_RESOURCE(target);
1540 // In the future we may track whether there are any pending draws to this
1541 // target. We don't today so we always perform a flush. We don't promise
1542 // this to our clients, though.
1543 this->flush();
bsalomon49f085d2014-09-05 13:34:00 -07001544 if (fGpu) {
bsalomon41ebbdd2014-08-04 08:31:39 -07001545 fGpu->resolveRenderTarget(target);
1546 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001547}
1548
bsalomon41ebbdd2014-08-04 08:31:39 -07001549void GrContext::discardRenderTarget(GrRenderTarget* renderTarget) {
1550 SkASSERT(renderTarget);
1551 ASSERT_OWNED_RESOURCE(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001552 AutoRestoreEffects are;
1553 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001554 GrDrawTarget* target = this->prepareToDraw(NULL, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001555 if (NULL == target) {
1556 return;
1557 }
1558 target->discard(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001559}
1560
bsalomonf80bfed2014-10-07 05:56:02 -07001561void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
1562 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001563 if (NULL == src || NULL == dst) {
1564 return;
1565 }
bsalomone3d4bf22014-09-23 09:15:03 -07001566 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -07001567 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -04001568
bsalomonf80bfed2014-10-07 05:56:02 -07001569 // Since we're going to the draw target and not GPU, no need to check kNoFlush
1570 // here.
junov96c118e2014-09-26 13:09:47 -07001571
joshualitt5c55fef2014-10-31 14:04:35 -07001572 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, NULL);
junov96c118e2014-09-26 13:09:47 -07001573 if (NULL == target) {
1574 return;
1575 }
junov96c118e2014-09-26 13:09:47 -07001576 target->copySurface(dst, src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -07001577
1578 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1579 this->flush();
1580 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001581}
1582
bsalomonf80bfed2014-10-07 05:56:02 -07001583void GrContext::flushSurfaceWrites(GrSurface* surface) {
1584 if (surface->surfacePriv().hasPendingWrite()) {
1585 this->flush();
1586 }
1587}
1588
bsalomon@google.com27847de2011-02-22 20:59:41 +00001589////////////////////////////////////////////////////////////////////////////////
1590
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001591GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint,
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001592 AutoRestoreEffects* are,
1593 AutoCheckFlush* acf) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001594 // All users of this draw state should be freeing up all effects when they're done.
1595 // Otherwise effects that own resources may keep those resources alive indefinitely.
joshualittbd769d02014-09-04 08:56:46 -07001596 SkASSERT(0 == fDrawState->numColorStages() && 0 == fDrawState->numCoverageStages() &&
1597 !fDrawState->hasGeometryProcessor());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001598
bsalomon41ebbdd2014-08-04 08:31:39 -07001599 if (NULL == fGpu) {
1600 return NULL;
1601 }
1602
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001603 ASSERT_OWNED_RESOURCE(fRenderTarget.get());
bsalomon49f085d2014-09-05 13:34:00 -07001604 if (paint) {
1605 SkASSERT(are);
1606 SkASSERT(acf);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001607 are->set(fDrawState);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001608 fDrawState->setFromPaint(*paint, fViewMatrix, fRenderTarget.get());
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001609#if GR_DEBUG_PARTIAL_COVERAGE_CHECK
1610 if ((paint->hasMask() || 0xff != paint->fCoverage) &&
bsalomon62c447d2014-08-08 08:08:50 -07001611 !fDrawState->couldApplyCoverage(fGpu->caps())) {
tfarina38406c82014-10-31 07:11:12 -07001612 SkDebugf("Partial pixel coverage will be incorrectly blended.\n");
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001613 }
1614#endif
bsalomon9c0822a2014-08-11 11:07:48 -07001615 // Clear any vertex attributes configured for the previous use of the
1616 // GrDrawState which can effect which blend optimizations are in effect.
1617 fDrawState->setDefaultVertexAttribs();
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001618 } else {
bsalomon@google.com137f1342013-05-29 21:27:53 +00001619 fDrawState->reset(fViewMatrix);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001620 fDrawState->setRenderTarget(fRenderTarget.get());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001621 }
bsalomon49f085d2014-09-05 13:34:00 -07001622 fDrawState->setState(GrDrawState::kClip_StateBit, fClip &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001623 !fClip->fClipStack->isWideOpen());
joshualitt5c55fef2014-10-31 14:04:35 -07001624 fDrawBuffer->setClip(fClip);
1625 SkASSERT(fDrawState == fDrawBuffer->drawState());
1626 return fDrawBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001627}
1628
robertphillips@google.com72176b22012-05-23 13:19:12 +00001629/*
1630 * This method finds a path renderer that can draw the specified path on
1631 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001632 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001633 * can be individually allowed/disallowed via the "allowSW" boolean.
1634 */
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001635GrPathRenderer* GrContext::getPathRenderer(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001636 const SkStrokeRec& stroke,
bsalomon@google.comc2099d22012-03-02 21:26:50 +00001637 const GrDrawTarget* target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001638 bool allowSW,
1639 GrPathRendererChain::DrawType drawType,
1640 GrPathRendererChain::StencilSupport* stencilSupport) {
1641
bsalomon@google.com30085192011-08-19 15:42:31 +00001642 if (NULL == fPathRendererChain) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001643 fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this));
bsalomon@google.com30085192011-08-19 15:42:31 +00001644 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001645
sugoi@google.com12b4e272012-12-06 20:13:11 +00001646 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path,
1647 stroke,
robertphillips@google.com72176b22012-05-23 13:19:12 +00001648 target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001649 drawType,
1650 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +00001651
1652 if (NULL == pr && allowSW) {
1653 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001654 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001655 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001656 pr = fSoftwarePathRenderer;
1657 }
1658
1659 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001660}
1661
bsalomon@google.com27847de2011-02-22 20:59:41 +00001662////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00001663bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
1664 return fGpu->caps()->isConfigRenderable(config, withMSAA);
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001665}
1666
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +00001667int GrContext::getRecommendedSampleCount(GrPixelConfig config,
1668 SkScalar dpi) const {
1669 if (!this->isConfigRenderable(config, true)) {
1670 return 0;
1671 }
1672 int chosenSampleCount = 0;
1673 if (fGpu->caps()->pathRenderingSupport()) {
1674 if (dpi >= 250.0f) {
1675 chosenSampleCount = 4;
1676 } else {
1677 chosenSampleCount = 16;
1678 }
1679 }
1680 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
1681 chosenSampleCount : 0;
1682}
1683
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001684void GrContext::setupDrawBuffer() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001685 SkASSERT(NULL == fDrawBuffer);
1686 SkASSERT(NULL == fDrawBufferVBAllocPool);
1687 SkASSERT(NULL == fDrawBufferIBAllocPool);
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001688
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001689 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001690 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001691 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001692 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001693 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001694 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001695 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001696 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001697
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001698 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001699 fDrawBufferVBAllocPool,
1700 fDrawBufferIBAllocPool));
bsalomon@google.com3c4d0322012-04-03 18:04:51 +00001701
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001702 fDrawBuffer->setDrawState(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001703}
1704
bsalomon@google.com21c10c52013-06-13 17:44:07 +00001705GrDrawTarget* GrContext::getTextTarget() {
joshualitt5c55fef2014-10-31 14:04:35 -07001706 return this->prepareToDraw(NULL, NULL, NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001707}
1708
1709const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1710 return fGpu->getQuadIndexBuffer();
1711}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001712
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001713namespace {
1714void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1715 GrConfigConversionEffect::PMConversion pmToUPM;
1716 GrConfigConversionEffect::PMConversion upmToPM;
1717 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1718 *pmToUPMValue = pmToUPM;
1719 *upmToPMValue = upmToPM;
1720}
1721}
1722
joshualittb0a8a372014-09-23 09:50:21 -07001723const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture,
1724 bool swapRAndB,
1725 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001726 if (!fDidTestPMConversions) {
1727 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001728 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001729 }
1730 GrConfigConversionEffect::PMConversion pmToUPM =
1731 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1732 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001733 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001734 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001735 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001736 }
1737}
1738
joshualittb0a8a372014-09-23 09:50:21 -07001739const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture,
1740 bool swapRAndB,
1741 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001742 if (!fDidTestPMConversions) {
1743 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001744 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001745 }
1746 GrConfigConversionEffect::PMConversion upmToPM =
1747 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1748 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001749 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001750 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001751 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001752 }
1753}
1754
bsalomon6d3fe022014-07-25 08:35:45 -07001755void GrContext::addResourceToCache(const GrResourceKey& resourceKey, GrGpuResource* resource) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001756 fResourceCache->addResource(resourceKey, resource);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001757}
1758
bsalomon6d3fe022014-07-25 08:35:45 -07001759GrGpuResource* GrContext::findAndRefCachedResource(const GrResourceKey& resourceKey) {
1760 GrGpuResource* resource = fResourceCache->find(resourceKey);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001761 SkSafeRef(resource);
1762 return resource;
1763}
1764
egdanielbbcb38d2014-06-19 10:19:29 -07001765void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
1766 fGpu->addGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001767 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001768 fDrawBuffer->addGpuTraceMarker(marker);
1769 }
1770}
1771
1772void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
1773 fGpu->removeGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001774 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001775 fDrawBuffer->removeGpuTraceMarker(marker);
1776 }
1777}
1778
bsalomon@google.comc4364992011-11-07 15:54:49 +00001779///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001780#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001781void GrContext::printCacheStats() const {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001782 fResourceCache->printStats();
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001783}
1784#endif
robertphillips754f4e92014-09-18 13:52:08 -07001785
1786#if GR_GPU_STATS
1787const GrContext::GPUStats* GrContext::gpuStats() const {
1788 return fGpu->gpuStats();
1789}
1790#endif
1791