blob: a456a799c89af7f1388a68e5919151eebd093d05 [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 }
bsalomon33435572014-11-05 14:47:41 -0800124 this->initCommon();
125 return true;
126}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000127
bsalomon33435572014-11-05 14:47:41 -0800128void GrContext::initCommon() {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000129 fDrawState = SkNEW(GrDrawState);
130 fGpu->setDrawState(fDrawState);
131
bsalomonbcf0a522014-10-08 08:40:09 -0700132 fResourceCache = SkNEW_ARGS(GrResourceCache, (fGpu->caps(),
133 MAX_RESOURCE_CACHE_COUNT,
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000134 MAX_RESOURCE_CACHE_BYTES));
135 fResourceCache->setOverbudgetCallback(OverbudgetCB, this);
bsalomonc8dc1f72014-08-21 13:02:13 -0700136 fResourceCache2 = SkNEW(GrResourceCache2);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000137
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000138 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
139
robertphillips4ec84da2014-06-24 13:10:43 -0700140 fLayerCache.reset(SkNEW_ARGS(GrLayerCache, (this)));
robertphillips@google.come930a072014-04-03 00:34:27 +0000141
joshualittb44293e2014-10-28 08:12:18 -0700142 fAARectRenderer = SkNEW_ARGS(GrAARectRenderer, (fGpu));
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000143 fOvalRenderer = SkNEW(GrOvalRenderer);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000144
145 fDidTestPMConversions = false;
146
147 this->setupDrawBuffer();
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000148}
149
bsalomon@google.com27847de2011-02-22 20:59:41 +0000150GrContext::~GrContext() {
bsalomon@google.com733c0622013-04-24 17:59:32 +0000151 if (NULL == fGpu) {
152 return;
153 }
154
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000155 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000156
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000157 for (int i = 0; i < fCleanUpData.count(); ++i) {
158 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
159 }
160
bsalomon33435572014-11-05 14:47:41 -0800161 SkDELETE(fResourceCache2);
bsalomonc8dc1f72014-08-21 13:02:13 -0700162 fResourceCache2 = NULL;
bsalomon33435572014-11-05 14:47:41 -0800163 SkDELETE(fResourceCache);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000164 fResourceCache = NULL;
bsalomon33435572014-11-05 14:47:41 -0800165 SkDELETE(fFontCache);
166 SkDELETE(fDrawBuffer);
167 SkDELETE(fDrawBufferVBAllocPool);
168 SkDELETE(fDrawBufferIBAllocPool);
bsalomon@google.com30085192011-08-19 15:42:31 +0000169
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000170 fAARectRenderer->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000171 fOvalRenderer->unref();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000172
bsalomon@google.com205d4602011-04-25 12:43:45 +0000173 fGpu->unref();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000174 SkSafeUnref(fPathRendererChain);
175 SkSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000176 fDrawState->unref();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000177}
178
bsalomon2354f842014-07-28 13:48:36 -0700179void GrContext::abandonContext() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000180 // abandon first to so destructors
181 // don't try to free the resources in the API.
bsalomonc8dc1f72014-08-21 13:02:13 -0700182 fResourceCache2->abandonAll();
183
robertphillipse3371302014-09-17 06:01:06 -0700184 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000185
bsalomon@google.com30085192011-08-19 15:42:31 +0000186 // a path renderer may be holding onto resources that
187 // are now unusable
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000188 SkSafeSetNull(fPathRendererChain);
189 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000190
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000191 delete fDrawBuffer;
192 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000193
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000194 delete fDrawBufferVBAllocPool;
195 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000196
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000197 delete fDrawBufferIBAllocPool;
198 fDrawBufferIBAllocPool = NULL;
199
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000200 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000201 fOvalRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000202
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000203 fResourceCache->purgeAllUnlocked();
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000204
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000205 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000206 fLayerCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000207}
208
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000209void GrContext::resetContext(uint32_t state) {
210 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000211}
212
213void GrContext::freeGpuResources() {
214 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000215
robertphillips@google.comff175842012-05-14 19:31:39 +0000216 fGpu->purgeResources();
bsalomon49f085d2014-09-05 13:34:00 -0700217 if (fDrawBuffer) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700218 fDrawBuffer->purgeResources();
219 }
robertphillips@google.comff175842012-05-14 19:31:39 +0000220
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000221 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000222 fOvalRenderer->reset();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000223
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000224 fResourceCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000225 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000226 fLayerCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000227 // a path renderer may be holding onto resources
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000228 SkSafeSetNull(fPathRendererChain);
229 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000230}
231
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000232void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon49f085d2014-09-05 13:34:00 -0700233 if (resourceCount) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000234 *resourceCount = fResourceCache->getCachedResourceCount();
235 }
bsalomon49f085d2014-09-05 13:34:00 -0700236 if (resourceBytes) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000237 *resourceBytes = fResourceCache->getCachedResourceBytes();
238 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000239}
240
kkinnunenc6cb56f2014-06-24 00:12:27 -0700241GrTextContext* GrContext::createTextContext(GrRenderTarget* renderTarget,
242 const SkDeviceProperties&
243 leakyProperties,
244 bool enableDistanceFieldFonts) {
jvanverth8c27a182014-10-14 08:45:50 -0700245 if (fGpu->caps()->pathRenderingSupport() && renderTarget->getStencilBuffer() &&
246 renderTarget->isMultisampled()) {
247 return GrStencilAndCoverTextContext::Create(this, leakyProperties);
248 }
249
250 return GrDistanceFieldTextContext::Create(this, leakyProperties, enableDistanceFieldFonts);
kkinnunenc6cb56f2014-06-24 00:12:27 -0700251}
252
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000253////////////////////////////////////////////////////////////////////////////////
254
bsalomonf2703d82014-10-28 14:33:06 -0700255GrTexture* GrContext::findAndRefTexture(const GrSurfaceDesc& desc,
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000256 const GrCacheID& cacheID,
257 const GrTextureParams* params) {
bsalomonafbf2d62014-09-30 12:18:44 -0700258 GrResourceKey resourceKey = GrTexturePriv::ComputeKey(fGpu, params, desc, cacheID);
bsalomon6d3fe022014-07-25 08:35:45 -0700259 GrGpuResource* resource = fResourceCache->find(resourceKey);
bsalomon37dd3312014-11-03 08:47:23 -0800260 if (resource) {
261 resource->ref();
262 return static_cast<GrSurface*>(resource)->asTexture();
263 } else {
264 return NULL;
265 }
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000266}
267
bsalomonf2703d82014-10-28 14:33:06 -0700268bool GrContext::isTextureInCache(const GrSurfaceDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000269 const GrCacheID& cacheID,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000270 const GrTextureParams* params) const {
bsalomonafbf2d62014-09-30 12:18:44 -0700271 GrResourceKey resourceKey = GrTexturePriv::ComputeKey(fGpu, params, desc, cacheID);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000272 return fResourceCache->hasKey(resourceKey);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000273}
274
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000275void GrContext::addStencilBuffer(GrStencilBuffer* sb) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +0000276 ASSERT_OWNED_RESOURCE(sb);
robertphillips@google.com46a86002012-08-08 10:42:44 +0000277
278 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(),
279 sb->height(),
280 sb->numSamples());
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000281 fResourceCache->addResource(resourceKey, sb);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000282}
283
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000284GrStencilBuffer* GrContext::findStencilBuffer(int width, int height,
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000285 int sampleCnt) {
robertphillips@google.com46a86002012-08-08 10:42:44 +0000286 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width,
287 height,
288 sampleCnt);
bsalomon6d3fe022014-07-25 08:35:45 -0700289 GrGpuResource* resource = fResourceCache->find(resourceKey);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000290 return static_cast<GrStencilBuffer*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000291}
292
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000293static void stretch_image(void* dst,
294 int dstW,
295 int dstH,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000296 const void* src,
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000297 int srcW,
298 int srcH,
299 size_t bpp) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000300 SkFixed dx = (srcW << 16) / dstW;
301 SkFixed dy = (srcH << 16) / dstH;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000302
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000303 SkFixed y = dy >> 1;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000304
robertphillips@google.com8b169312013-10-15 17:47:36 +0000305 size_t dstXLimit = dstW*bpp;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000306 for (int j = 0; j < dstH; ++j) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000307 SkFixed x = dx >> 1;
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000308 const uint8_t* srcRow = reinterpret_cast<const uint8_t *>(src) + (y>>16)*srcW*bpp;
309 uint8_t* dstRow = reinterpret_cast<uint8_t *>(dst) + j*dstW*bpp;
robertphillips@google.com8b169312013-10-15 17:47:36 +0000310 for (size_t i = 0; i < dstXLimit; i += bpp) {
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000311 memcpy(dstRow + i, srcRow + (x>>16)*bpp, bpp);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000312 x += dx;
313 }
314 y += dy;
315 }
316}
317
robertphillips@google.com42903302013-04-20 12:26:07 +0000318namespace {
319
320// position + local coordinate
321extern const GrVertexAttrib gVertexAttribs[] = {
322 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000323 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000324};
325
326};
327
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000328// The desired texture is NPOT and tiled but that isn't supported by
robertphillips@google.com3319f332012-08-13 18:00:36 +0000329// the current hardware. Resize the texture to be a POT
bsalomonf2703d82014-10-28 14:33:06 -0700330GrTexture* GrContext::createResizedTexture(const GrSurfaceDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000331 const GrCacheID& cacheID,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000332 const void* srcData,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000333 size_t rowBytes,
humper@google.comb86add12013-07-25 18:49:07 +0000334 bool filter) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000335 SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, cacheID, NULL));
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000336 if (NULL == clampedTexture) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000337 clampedTexture.reset(this->createTexture(NULL, desc, cacheID, srcData, rowBytes));
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000338
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000339 if (NULL == clampedTexture) {
robertphillips@google.com3319f332012-08-13 18:00:36 +0000340 return NULL;
341 }
342 }
robertphillips@google.com0d25eef2012-09-11 21:25:51 +0000343
bsalomonf2703d82014-10-28 14:33:06 -0700344 GrSurfaceDesc rtDesc = desc;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000345 rtDesc.fFlags = rtDesc.fFlags |
bsalomonf2703d82014-10-28 14:33:06 -0700346 kRenderTarget_GrSurfaceFlag |
347 kNoStencil_GrSurfaceFlag;
commit-bot@chromium.org5898dce2013-09-18 18:52:16 +0000348 rtDesc.fWidth = GrNextPow2(desc.fWidth);
349 rtDesc.fHeight = GrNextPow2(desc.fHeight);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000350
351 GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0);
352
bsalomon49f085d2014-09-05 13:34:00 -0700353 if (texture) {
joshualitt5c55fef2014-10-31 14:04:35 -0700354 GrDrawTarget::AutoStateRestore asr(fDrawBuffer, GrDrawTarget::kReset_ASRInit);
355 GrDrawState* drawState = fDrawBuffer->drawState();
robertphillips@google.com3319f332012-08-13 18:00:36 +0000356 drawState->setRenderTarget(texture->asRenderTarget());
357
358 // if filtering is not desired then we want to ensure all
359 // texels in the resampled image are copies of texels from
360 // the original.
joshualitt5c55fef2014-10-31 14:04:35 -0700361 GrTextureParams params(SkShader::kClamp_TileMode,
362 filter ? GrTextureParams::kBilerp_FilterMode :
363 GrTextureParams::kNone_FilterMode);
joshualittb0a8a372014-09-23 09:50:21 -0700364 drawState->addColorTextureProcessor(clampedTexture, SkMatrix::I(), params);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000365
egdaniel7b3d5ee2014-08-28 05:41:14 -0700366 drawState->setVertexAttribs<gVertexAttribs>(SK_ARRAY_COUNT(gVertexAttribs),
367 2 * sizeof(SkPoint));
jvanverth@google.com054ae992013-04-01 20:06:51 +0000368
joshualitt5c55fef2014-10-31 14:04:35 -0700369 GrDrawTarget::AutoReleaseGeometry arg(fDrawBuffer, 4, 0);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000370
371 if (arg.succeeded()) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000372 SkPoint* verts = (SkPoint*) arg.vertices();
373 verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(SkPoint));
374 verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(SkPoint));
joshualitt5c55fef2014-10-31 14:04:35 -0700375 fDrawBuffer->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000376 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000377 } else {
378 // TODO: Our CPU stretch doesn't filter. But we create separate
bsalomon@google.com08283af2012-10-26 13:01:20 +0000379 // stretched textures when the texture params is either filtered or
robertphillips@google.com3319f332012-08-13 18:00:36 +0000380 // not. Either implement filtered stretch blit on CPU or just create
381 // one when FBO case fails.
382
bsalomonf2703d82014-10-28 14:33:06 -0700383 rtDesc.fFlags = kNone_GrSurfaceFlags;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000384 // no longer need to clamp at min RT size.
385 rtDesc.fWidth = GrNextPow2(desc.fWidth);
386 rtDesc.fHeight = GrNextPow2(desc.fHeight);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000387
388 // We shouldn't be resizing a compressed texture.
389 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
390
robertphillips@google.com8b169312013-10-15 17:47:36 +0000391 size_t bpp = GrBytesPerPixel(desc.fConfig);
georgeb62508b2014-08-12 18:00:47 -0700392 GrAutoMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight);
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000393 stretch_image(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight,
394 srcData, desc.fWidth, desc.fHeight, bpp);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000395
396 size_t stretchedRowBytes = rtDesc.fWidth * bpp;
397
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000398 texture = fGpu->createTexture(rtDesc, stretchedPixels.get(), stretchedRowBytes);
bsalomon49f085d2014-09-05 13:34:00 -0700399 SkASSERT(texture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000400 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000401
402 return texture;
403}
404
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000405GrTexture* GrContext::createTexture(const GrTextureParams* params,
bsalomonf2703d82014-10-28 14:33:06 -0700406 const GrSurfaceDesc& desc,
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000407 const GrCacheID& cacheID,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000408 const void* srcData,
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000409 size_t rowBytes,
410 GrResourceKey* cacheKey) {
bsalomonafbf2d62014-09-30 12:18:44 -0700411 GrResourceKey resourceKey = GrTexturePriv::ComputeKey(fGpu, params, desc, cacheID);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000412
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000413 GrTexture* texture;
bsalomonafbf2d62014-09-30 12:18:44 -0700414 if (GrTexturePriv::NeedsResizing(resourceKey)) {
krajcevski9c0e6292014-06-02 07:38:14 -0700415 // We do not know how to resize compressed textures.
416 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
417
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000418 texture = this->createResizedTexture(desc, cacheID,
419 srcData, rowBytes,
bsalomonafbf2d62014-09-30 12:18:44 -0700420 GrTexturePriv::NeedsBilerp(resourceKey));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000421 } else {
krajcevski9c0e6292014-06-02 07:38:14 -0700422 texture = fGpu->createTexture(desc, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000423 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000424
bsalomon49f085d2014-09-05 13:34:00 -0700425 if (texture) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000426 fResourceCache->addResource(resourceKey, texture);
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000427
bsalomon49f085d2014-09-05 13:34:00 -0700428 if (cacheKey) {
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000429 *cacheKey = resourceKey;
430 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000431 }
432
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000433 return texture;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000434}
435
bsalomonf2703d82014-10-28 14:33:06 -0700436GrTexture* GrContext::createNewScratchTexture(const GrSurfaceDesc& desc) {
bsalomonbcf0a522014-10-08 08:40:09 -0700437 GrTexture* texture = fGpu->createTexture(desc, NULL, 0);
438 if (!texture) {
439 return NULL;
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000440 }
bsalomonbcf0a522014-10-08 08:40:09 -0700441 fResourceCache->addResource(texture->getScratchKey(), texture);
Brian Salomon9323b8b2014-10-07 15:07:38 -0400442 return texture;
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000443}
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000444
bsalomonf2703d82014-10-28 14:33:06 -0700445GrTexture* GrContext::refScratchTexture(const GrSurfaceDesc& inDesc, ScratchTexMatch match,
bsalomone3059732014-10-14 11:47:22 -0700446 bool calledDuringFlush) {
bsalomonbcf0a522014-10-08 08:40:09 -0700447 // kNoStencil has no meaning if kRT isn't set.
bsalomonf2703d82014-10-28 14:33:06 -0700448 SkASSERT((inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
449 !(inDesc.fFlags & kNoStencil_GrSurfaceFlag));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000450
bsalomonbcf0a522014-10-08 08:40:09 -0700451 // Make sure caller has checked for renderability if kRT is set.
bsalomonf2703d82014-10-28 14:33:06 -0700452 SkASSERT(!(inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
bsalomonbcf0a522014-10-08 08:40:09 -0700453 this->isConfigRenderable(inDesc.fConfig, inDesc.fSampleCnt > 0));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000454
bsalomonf2703d82014-10-28 14:33:06 -0700455 SkTCopyOnFirstWrite<GrSurfaceDesc> desc(inDesc);
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000456
bsalomonf2703d82014-10-28 14:33:06 -0700457 if (fGpu->caps()->reuseScratchTextures() || (desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
458 GrSurfaceFlags origFlags = desc->fFlags;
bsalomonbcf0a522014-10-08 08:40:09 -0700459 if (kApprox_ScratchTexMatch == match) {
460 // bin by pow2 with a reasonable min
461 static const int MIN_SIZE = 16;
bsalomonf2703d82014-10-28 14:33:06 -0700462 GrSurfaceDesc* wdesc = desc.writable();
bsalomonbcf0a522014-10-08 08:40:09 -0700463 wdesc->fWidth = SkTMax(MIN_SIZE, GrNextPow2(desc->fWidth));
464 wdesc->fHeight = SkTMax(MIN_SIZE, GrNextPow2(desc->fHeight));
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000465 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000466
bsalomonbcf0a522014-10-08 08:40:09 -0700467 do {
468 GrResourceKey key = GrTexturePriv::ComputeScratchKey(*desc);
bsalomon000f8292014-10-15 19:04:14 -0700469 uint32_t scratchFlags = 0;
470 if (calledDuringFlush) {
471 scratchFlags = GrResourceCache2::kRequireNoPendingIO_ScratchFlag;
bsalomonf2703d82014-10-28 14:33:06 -0700472 } else if (!(desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
bsalomon000f8292014-10-15 19:04:14 -0700473 // If it is not a render target then it will most likely be populated by
474 // writePixels() which will trigger a flush if the texture has pending IO.
475 scratchFlags = GrResourceCache2::kPreferNoPendingIO_ScratchFlag;
476 }
477 GrGpuResource* resource = fResourceCache2->findAndRefScratchResource(key, scratchFlags);
bsalomonbcf0a522014-10-08 08:40:09 -0700478 if (resource) {
479 fResourceCache->makeResourceMRU(resource);
bsalomon37dd3312014-11-03 08:47:23 -0800480 return static_cast<GrSurface*>(resource)->asTexture();
bsalomonbcf0a522014-10-08 08:40:09 -0700481 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000482
bsalomonbcf0a522014-10-08 08:40:09 -0700483 if (kExact_ScratchTexMatch == match) {
484 break;
485 }
486 // We had a cache miss and we are in approx mode, relax the fit of the flags.
487
488 // We no longer try to reuse textures that were previously used as render targets in
489 // situations where no RT is needed; doing otherwise can confuse the video driver and
490 // cause significant performance problems in some cases.
bsalomonf2703d82014-10-28 14:33:06 -0700491 if (desc->fFlags & kNoStencil_GrSurfaceFlag) {
492 desc.writable()->fFlags = desc->fFlags & ~kNoStencil_GrSurfaceFlag;
bsalomonbcf0a522014-10-08 08:40:09 -0700493 } else {
494 break;
495 }
496
497 } while (true);
498
499 desc.writable()->fFlags = origFlags;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000500 }
501
bsalomonbcf0a522014-10-08 08:40:09 -0700502 GrTexture* texture = this->createNewScratchTexture(*desc);
503 SkASSERT(NULL == texture ||
504 texture->getScratchKey() == GrTexturePriv::ComputeScratchKey(*desc));
505 return texture;
Brian Salomon9323b8b2014-10-07 15:07:38 -0400506}
507
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000508bool GrContext::OverbudgetCB(void* data) {
bsalomon49f085d2014-09-05 13:34:00 -0700509 SkASSERT(data);
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000510
511 GrContext* context = reinterpret_cast<GrContext*>(data);
512
513 // Flush the InOrderDrawBuffer to possibly free up some textures
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000514 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000515
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000516 return true;
517}
518
519
bsalomonf2703d82014-10-28 14:33:06 -0700520GrTexture* GrContext::createUncachedTexture(const GrSurfaceDesc& descIn,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000521 void* srcData,
522 size_t rowBytes) {
bsalomonf2703d82014-10-28 14:33:06 -0700523 GrSurfaceDesc descCopy = descIn;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000524 return fGpu->createTexture(descCopy, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000525}
526
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000527void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
528 fResourceCache->getLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000529}
530
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000531void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
532 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000533}
534
bsalomon@google.com91958362011-06-13 17:58:13 +0000535int GrContext::getMaxTextureSize() const {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000536 return SkTMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride);
bsalomon@google.com91958362011-06-13 17:58:13 +0000537}
538
539int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000540 return fGpu->caps()->maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000541}
542
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000543int GrContext::getMaxSampleCount() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000544 return fGpu->caps()->maxSampleCount();
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000545}
546
bsalomon@google.com27847de2011-02-22 20:59:41 +0000547///////////////////////////////////////////////////////////////////////////////
548
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000549GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) {
550 return fGpu->wrapBackendTexture(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000551}
552
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000553GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
554 return fGpu->wrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000555}
556
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000557///////////////////////////////////////////////////////////////////////////////
558
bsalomon@google.comb8670992012-07-25 21:27:09 +0000559bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000560 int width, int height) const {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000561 const GrDrawTargetCaps* caps = fGpu->caps();
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000562 if (!caps->isConfigTexturable(kIndex_8_GrPixelConfig)) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000563 return false;
564 }
565
tfarinaf9dae782014-06-06 06:35:28 -0700566 bool isPow2 = SkIsPow2(width) && SkIsPow2(height);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000567
568 if (!isPow2) {
bsalomon49f085d2014-09-05 13:34:00 -0700569 bool tiled = params && params->isTiled();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000570 if (tiled && !caps->npotTextureTileSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000571 return false;
572 }
573 }
574 return true;
575}
576
bsalomon@google.com27847de2011-02-22 20:59:41 +0000577
bsalomon@google.com27847de2011-02-22 20:59:41 +0000578////////////////////////////////////////////////////////////////////////////////
579
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000580void GrContext::clear(const SkIRect* rect,
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000581 const GrColor color,
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000582 bool canIgnoreRect,
bsalomon41ebbdd2014-08-04 08:31:39 -0700583 GrRenderTarget* renderTarget) {
584 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomon89c62982014-11-03 12:08:42 -0800585 SkASSERT(renderTarget);
586
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000587 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000588 AutoCheckFlush acf(this);
egdanield78a1682014-07-09 10:41:26 -0700589 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::clear", this);
joshualitt5c55fef2014-10-31 14:04:35 -0700590 GrDrawTarget* target = this->prepareToDraw(NULL, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700591 if (NULL == target) {
592 return;
593 }
594 target->clear(rect, color, canIgnoreRect, renderTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000595}
596
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000597void GrContext::drawPaint(const GrPaint& origPaint) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000598 // set rect to be big enough to fill the space, but not super-huge, so we
599 // don't overflow fixed-point implementations
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000600 SkRect r;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000601 r.setLTRB(0, 0,
bsalomon@google.com81712882012-11-01 17:12:34 +0000602 SkIntToScalar(getRenderTarget()->width()),
603 SkIntToScalar(getRenderTarget()->height()));
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000604 SkMatrix inverse;
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000605 SkTCopyOnFirstWrite<GrPaint> paint(origPaint);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000606 AutoMatrix am;
egdanield78a1682014-07-09 10:41:26 -0700607 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::drawPaint", this);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000608
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000609 // We attempt to map r by the inverse matrix and draw that. mapRect will
610 // map the four corners and bound them with a new rect. This will not
611 // produce a correct result for some perspective matrices.
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000612 if (!this->getMatrix().hasPerspective()) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000613 if (!fViewMatrix.invert(&inverse)) {
tfarina38406c82014-10-31 07:11:12 -0700614 SkDebugf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000615 return;
616 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000617 inverse.mapRect(&r);
618 } else {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000619 if (!am.setIdentity(this, paint.writable())) {
tfarina38406c82014-10-31 07:11:12 -0700620 SkDebugf("Could not invert matrix\n");
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000621 return;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000622 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000623 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000624 // by definition this fills the entire clip, no need for AA
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000625 if (paint->isAntiAlias()) {
626 paint.writable()->setAntiAlias(false);
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000627 }
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000628 this->drawRect(*paint, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000629}
630
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000631#ifdef SK_DEVELOPER
632void GrContext::dumpFontCache() const {
633 fFontCache->dump();
634}
635#endif
636
bsalomon@google.com205d4602011-04-25 12:43:45 +0000637////////////////////////////////////////////////////////////////////////////////
638
bsalomon@google.com27847de2011-02-22 20:59:41 +0000639/* create a triangle strip that strokes the specified triangle. There are 8
640 unique vertices, but we repreat the last 2 to close up. Alternatively we
641 could use an indices array, and then only send 8 verts, but not sure that
642 would be faster.
643 */
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000644static void setStrokeRectStrip(SkPoint verts[10], SkRect rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000645 SkScalar width) {
646 const SkScalar rad = SkScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000647 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000648
649 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
650 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
651 verts[2].set(rect.fRight - rad, rect.fTop + rad);
652 verts[3].set(rect.fRight + rad, rect.fTop - rad);
653 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
654 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
655 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
656 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
657 verts[8] = verts[0];
658 verts[9] = verts[1];
659}
660
bsalomonc30aaa02014-08-13 07:15:29 -0700661static inline bool is_irect(const SkRect& r) {
tfarina38406c82014-10-31 07:11:12 -0700662 return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
663 SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
bsalomonc30aaa02014-08-13 07:15:29 -0700664}
665
bsalomon@google.com205d4602011-04-25 12:43:45 +0000666static bool apply_aa_to_rect(GrDrawTarget* target,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000667 const SkRect& rect,
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000668 SkScalar strokeWidth,
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000669 const SkMatrix& combinedMatrix,
bsalomon9c0822a2014-08-11 11:07:48 -0700670 SkRect* devBoundRect) {
671 if (!target->getDrawState().canTweakAlphaForCoverage() &&
672 target->shouldDisableCoverageAAForBlend()) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000673#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700674 //SkDebugf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000675#endif
bsalomon9c0822a2014-08-11 11:07:48 -0700676 return false;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000677 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000678 const GrDrawState& drawState = target->getDrawState();
679 if (drawState.getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000680 return false;
681 }
682
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000683#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000684 if (strokeWidth >= 0) {
685#endif
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000686 if (!combinedMatrix.preservesAxisAlignment()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000687 return false;
688 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000689
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000690#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000691 } else {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000692 if (!combinedMatrix.preservesRightAngles()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000693 return false;
694 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000695 }
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000696#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000697
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000698 combinedMatrix.mapRect(devBoundRect, rect);
bsalomonc30aaa02014-08-13 07:15:29 -0700699 if (strokeWidth < 0) {
700 return !is_irect(*devBoundRect);
701 }
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000702
bsalomon9c0822a2014-08-11 11:07:48 -0700703 return true;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000704}
705
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000706static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
707 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
708 point.fY >= rect.fTop && point.fY <= rect.fBottom;
709}
710
bsalomon@google.com27847de2011-02-22 20:59:41 +0000711void GrContext::drawRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000712 const SkRect& rect,
bsalomon01c8da12014-08-04 09:21:30 -0700713 const GrStrokeInfo* strokeInfo) {
bsalomon49f085d2014-09-05 13:34:00 -0700714 if (strokeInfo && strokeInfo->isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700715 SkPath path;
716 path.addRect(rect);
717 this->drawPath(paint, path, *strokeInfo);
718 return;
719 }
720
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000721 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000722 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700723 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700724 if (NULL == target) {
725 return;
726 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000727
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000728 GR_CREATE_TRACE_MARKER("GrContext::drawRect", target);
egdanield58a0ba2014-06-11 10:30:05 -0700729 SkScalar width = NULL == strokeInfo ? -1 : strokeInfo->getStrokeRec().getWidth();
bsalomon01c8da12014-08-04 09:21:30 -0700730 SkMatrix matrix = target->drawState()->getViewMatrix();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000731
732 // Check if this is a full RT draw and can be replaced with a clear. We don't bother checking
733 // cases where the RT is fully inside a stroke.
734 if (width < 0) {
735 SkRect rtRect;
736 target->getDrawState().getRenderTarget()->getBoundsRect(&rtRect);
737 SkRect clipSpaceRTRect = rtRect;
738 bool checkClip = false;
bsalomon49f085d2014-09-05 13:34:00 -0700739 if (this->getClip()) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000740 checkClip = true;
741 clipSpaceRTRect.offset(SkIntToScalar(this->getClip()->fOrigin.fX),
742 SkIntToScalar(this->getClip()->fOrigin.fY));
743 }
744 // Does the clip contain the entire RT?
745 if (!checkClip || target->getClip()->fClipStack->quickContains(clipSpaceRTRect)) {
746 SkMatrix invM;
bsalomon01c8da12014-08-04 09:21:30 -0700747 if (!matrix.invert(&invM)) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000748 return;
749 }
750 // Does the rect bound the RT?
751 SkPoint srcSpaceRTQuad[4];
752 invM.mapRectToQuad(srcSpaceRTQuad, rtRect);
753 if (rect_contains_inclusive(rect, srcSpaceRTQuad[0]) &&
754 rect_contains_inclusive(rect, srcSpaceRTQuad[1]) &&
755 rect_contains_inclusive(rect, srcSpaceRTQuad[2]) &&
756 rect_contains_inclusive(rect, srcSpaceRTQuad[3])) {
757 // Will it blend?
758 GrColor clearColor;
759 if (paint.isOpaqueAndConstantColor(&clearColor)) {
bsalomon89c62982014-11-03 12:08:42 -0800760 target->clear(NULL, clearColor, true, fRenderTarget);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000761 return;
762 }
763 }
764 }
765 }
766
767 SkRect devBoundRect;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000768 bool needAA = paint.isAntiAlias() &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000769 !target->getDrawState().getRenderTarget()->isMultisampled();
bsalomon9c0822a2014-08-11 11:07:48 -0700770 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix, &devBoundRect);
egdanield58a0ba2014-06-11 10:30:05 -0700771
772 const SkStrokeRec& strokeRec = strokeInfo->getStrokeRec();
773
bsalomon@google.com205d4602011-04-25 12:43:45 +0000774 if (doAA) {
bsalomon@google.com137f1342013-05-29 21:27:53 +0000775 GrDrawState::AutoViewMatrixRestore avmr;
776 if (!avmr.setIdentity(target->drawState())) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000777 return;
778 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000779 if (width >= 0) {
joshualittb44293e2014-10-28 08:12:18 -0700780 fAARectRenderer->strokeAARect(target, rect,
bsalomon01c8da12014-08-04 09:21:30 -0700781 matrix, devBoundRect,
bsalomon9c0822a2014-08-11 11:07:48 -0700782 strokeRec);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000783 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000784 // filled AA rect
joshualittb44293e2014-10-28 08:12:18 -0700785 fAARectRenderer->fillAARect(target,
bsalomon9c0822a2014-08-11 11:07:48 -0700786 rect, matrix, devBoundRect);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000787 }
788 return;
789 }
790
bsalomon@google.com27847de2011-02-22 20:59:41 +0000791 if (width >= 0) {
792 // TODO: consider making static vertex buffers for these cases.
bsalomon@google.com64386952013-02-08 21:22:44 +0000793 // Hairline could be done by just adding closing vertex to
794 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000795
bsalomon@google.com27847de2011-02-22 20:59:41 +0000796 static const int worstCaseVertCount = 10;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000797 target->drawState()->setDefaultVertexAttribs();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000798 GrDrawTarget::AutoReleaseGeometry geo(target, worstCaseVertCount, 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000799
800 if (!geo.succeeded()) {
tfarina38406c82014-10-31 07:11:12 -0700801 SkDebugf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000802 return;
803 }
804
805 GrPrimitiveType primType;
806 int vertCount;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000807 SkPoint* vertex = geo.positions();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000808
809 if (width > 0) {
810 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000811 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000812 setStrokeRectStrip(vertex, rect, width);
813 } else {
814 // hairline
815 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000816 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000817 vertex[0].set(rect.fLeft, rect.fTop);
818 vertex[1].set(rect.fRight, rect.fTop);
819 vertex[2].set(rect.fRight, rect.fBottom);
820 vertex[3].set(rect.fLeft, rect.fBottom);
821 vertex[4].set(rect.fLeft, rect.fTop);
822 }
823
bsalomon@google.com27847de2011-02-22 20:59:41 +0000824 target->drawNonIndexed(primType, 0, vertCount);
825 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000826 // filled BW rect
bsalomon01c8da12014-08-04 09:21:30 -0700827 target->drawSimpleRect(rect);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000828 }
829}
830
831void GrContext::drawRectToRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000832 const SkRect& dstRect,
833 const SkRect& localRect,
bsalomon@google.comc7818882013-03-20 19:19:53 +0000834 const SkMatrix* localMatrix) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000835 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000836 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700837 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700838 if (NULL == target) {
839 return;
840 }
bsalomon@google.com64386952013-02-08 21:22:44 +0000841
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000842 GR_CREATE_TRACE_MARKER("GrContext::drawRectToRect", target);
843
bsalomon01c8da12014-08-04 09:21:30 -0700844 target->drawRect(dstRect, &localRect, localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000845}
846
robertphillips@google.com42903302013-04-20 12:26:07 +0000847namespace {
848
849extern const GrVertexAttrib gPosUVColorAttribs[] = {
850 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding },
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000851 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding },
852 {kVec4ub_GrVertexAttribType, 2*sizeof(SkPoint), kColor_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000853};
854
egdaniel7b3d5ee2014-08-28 05:41:14 -0700855static const size_t kPosUVAttribsSize = 2 * sizeof(SkPoint);
856static const size_t kPosUVColorAttribsSize = 2 * sizeof(SkPoint) + sizeof(GrColor);
857
robertphillips@google.com42903302013-04-20 12:26:07 +0000858extern const GrVertexAttrib gPosColorAttribs[] = {
859 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000860 {kVec4ub_GrVertexAttribType, sizeof(SkPoint), kColor_GrVertexAttribBinding},
robertphillips@google.com42903302013-04-20 12:26:07 +0000861};
862
egdaniel7b3d5ee2014-08-28 05:41:14 -0700863static const size_t kPosAttribsSize = sizeof(SkPoint);
864static const size_t kPosColorAttribsSize = sizeof(SkPoint) + sizeof(GrColor);
865
robertphillips@google.com42903302013-04-20 12:26:07 +0000866static void set_vertex_attributes(GrDrawState* drawState,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000867 const SkPoint* texCoords,
robertphillips@google.com42903302013-04-20 12:26:07 +0000868 const GrColor* colors,
869 int* colorOffset,
870 int* texOffset) {
871 *texOffset = -1;
872 *colorOffset = -1;
873
bsalomon49f085d2014-09-05 13:34:00 -0700874 if (texCoords && colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000875 *texOffset = sizeof(SkPoint);
876 *colorOffset = 2*sizeof(SkPoint);
egdaniel7b3d5ee2014-08-28 05:41:14 -0700877 drawState->setVertexAttribs<gPosUVColorAttribs>(3, kPosUVColorAttribsSize);
bsalomon49f085d2014-09-05 13:34:00 -0700878 } else if (texCoords) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000879 *texOffset = sizeof(SkPoint);
egdaniel7b3d5ee2014-08-28 05:41:14 -0700880 drawState->setVertexAttribs<gPosUVColorAttribs>(2, kPosUVAttribsSize);
bsalomon49f085d2014-09-05 13:34:00 -0700881 } else if (colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000882 *colorOffset = sizeof(SkPoint);
egdaniel7b3d5ee2014-08-28 05:41:14 -0700883 drawState->setVertexAttribs<gPosColorAttribs>(2, kPosColorAttribsSize);
robertphillips@google.com42903302013-04-20 12:26:07 +0000884 } else {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700885 drawState->setVertexAttribs<gPosColorAttribs>(1, kPosAttribsSize);
robertphillips@google.com42903302013-04-20 12:26:07 +0000886 }
887}
888
889};
890
bsalomon@google.com27847de2011-02-22 20:59:41 +0000891void GrContext::drawVertices(const GrPaint& paint,
892 GrPrimitiveType primitiveType,
893 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000894 const SkPoint positions[],
895 const SkPoint texCoords[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000896 const GrColor colors[],
897 const uint16_t indices[],
898 int indexCount) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000899 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000900 AutoCheckFlush acf(this);
commit-bot@chromium.org5a567932014-01-08 21:26:09 +0000901 GrDrawTarget::AutoReleaseGeometry geo; // must be inside AutoCheckFlush scope
902
joshualitt5c55fef2014-10-31 14:04:35 -0700903 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700904 if (NULL == target) {
905 return;
906 }
egdaniele61c4112014-06-12 10:24:21 -0700907 GrDrawState* drawState = target->drawState();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000908
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000909 GR_CREATE_TRACE_MARKER("GrContext::drawVertices", target);
910
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000911 int colorOffset = -1, texOffset = -1;
robertphillips@google.com42903302013-04-20 12:26:07 +0000912 set_vertex_attributes(drawState, texCoords, colors, &colorOffset, &texOffset);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000913
egdaniel7b3d5ee2014-08-28 05:41:14 -0700914 size_t VertexStride = drawState->getVertexStride();
joshualittd1aa8ff2014-11-04 07:47:55 -0800915 if (!geo.set(target, vertexCount, indexCount)) {
916 SkDebugf("Failed to get space for vertices!\n");
917 return;
918 }
919 void* curVertex = geo.vertices();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000920
joshualittd1aa8ff2014-11-04 07:47:55 -0800921 for (int i = 0; i < vertexCount; ++i) {
922 *((SkPoint*)curVertex) = positions[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000923
joshualittd1aa8ff2014-11-04 07:47:55 -0800924 if (texOffset >= 0) {
925 *(SkPoint*)((intptr_t)curVertex + texOffset) = texCoords[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000926 }
joshualittd1aa8ff2014-11-04 07:47:55 -0800927 if (colorOffset >= 0) {
928 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
929 }
930 curVertex = (void*)((intptr_t)curVertex + VertexStride);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000931 }
932
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000933 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +0000934 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon49f085d2014-09-05 13:34:00 -0700935 if (indices) {
joshualittd1aa8ff2014-11-04 07:47:55 -0800936 uint16_t* curIndex = (uint16_t*)geo.indices();
937 for (int i = 0; i < indexCount; ++i) {
938 curIndex[i] = indices[i];
939 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000940 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000941 } else {
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000942 target->drawNonIndexed(primitiveType, 0, vertexCount);
943 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000944}
945
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000946///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com93c96602012-04-27 13:05:21 +0000947
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000948void GrContext::drawRRect(const GrPaint& paint,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000949 const SkRRect& rrect,
egdanield58a0ba2014-06-11 10:30:05 -0700950 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000951 if (rrect.isEmpty()) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000952 return;
953 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000954
egdanield58a0ba2014-06-11 10:30:05 -0700955 if (strokeInfo.isDashed()) {
956 SkPath path;
957 path.addRRect(rrect);
958 this->drawPath(paint, path, strokeInfo);
959 return;
960 }
961
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000962 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000963 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700964 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700965 if (NULL == target) {
966 return;
967 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000968
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000969 GR_CREATE_TRACE_MARKER("GrContext::drawRRect", target);
970
egdanield58a0ba2014-06-11 10:30:05 -0700971 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
972
973 if (!fOvalRenderer->drawRRect(target, this, paint.isAntiAlias(), rrect, strokeRec)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000974 SkPath path;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000975 path.addRRect(rrect);
egdanield58a0ba2014-06-11 10:30:05 -0700976 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000977 }
978}
979
980///////////////////////////////////////////////////////////////////////////////
981
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000982void GrContext::drawDRRect(const GrPaint& paint,
983 const SkRRect& outer,
984 const SkRRect& inner) {
985 if (outer.isEmpty()) {
986 return;
987 }
988
989 AutoRestoreEffects are;
990 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -0700991 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000992
993 GR_CREATE_TRACE_MARKER("GrContext::drawDRRect", target);
994
995 if (!fOvalRenderer->drawDRRect(target, this, paint.isAntiAlias(), outer, inner)) {
996 SkPath path;
997 path.addRRect(inner);
998 path.addRRect(outer);
999 path.setFillType(SkPath::kEvenOdd_FillType);
1000
egdanield58a0ba2014-06-11 10:30:05 -07001001 GrStrokeInfo fillRec(SkStrokeRec::kFill_InitStyle);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001002 this->internalDrawPath(target, paint.isAntiAlias(), path, fillRec);
1003 }
1004}
1005
1006///////////////////////////////////////////////////////////////////////////////
1007
bsalomon@google.com93c96602012-04-27 13:05:21 +00001008void GrContext::drawOval(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001009 const SkRect& oval,
egdanield58a0ba2014-06-11 10:30:05 -07001010 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001011 if (oval.isEmpty()) {
1012 return;
1013 }
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001014
egdanield58a0ba2014-06-11 10:30:05 -07001015 if (strokeInfo.isDashed()) {
1016 SkPath path;
1017 path.addOval(oval);
1018 this->drawPath(paint, path, strokeInfo);
1019 return;
1020 }
1021
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001022 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001023 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001024 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001025 if (NULL == target) {
1026 return;
1027 }
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001028
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001029 GR_CREATE_TRACE_MARKER("GrContext::drawOval", target);
1030
egdanield58a0ba2014-06-11 10:30:05 -07001031 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1032
1033
1034 if (!fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), oval, strokeRec)) {
bsalomon@google.com93c96602012-04-27 13:05:21 +00001035 SkPath path;
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001036 path.addOval(oval);
egdanield58a0ba2014-06-11 10:30:05 -07001037 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
skia.committer@gmail.com98ded842013-01-23 07:06:17 +00001038 }
bsalomon@google.com150d2842012-01-12 20:19:56 +00001039}
bsalomon@google.com27847de2011-02-22 20:59:41 +00001040
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001041// Can 'path' be drawn as a pair of filled nested rectangles?
1042static bool is_nested_rects(GrDrawTarget* target,
1043 const SkPath& path,
1044 const SkStrokeRec& stroke,
bsalomon9c0822a2014-08-11 11:07:48 -07001045 SkRect rects[2]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001046 SkASSERT(stroke.isFillStyle());
1047
1048 if (path.isInverseFillType()) {
1049 return false;
1050 }
1051
1052 const GrDrawState& drawState = target->getDrawState();
1053
1054 // TODO: this restriction could be lifted if we were willing to apply
1055 // the matrix to all the points individually rather than just to the rect
1056 if (!drawState.getViewMatrix().preservesAxisAlignment()) {
1057 return false;
1058 }
1059
bsalomon9c0822a2014-08-11 11:07:48 -07001060 if (!target->getDrawState().canTweakAlphaForCoverage() &&
1061 target->shouldDisableCoverageAAForBlend()) {
1062 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001063 }
1064
1065 SkPath::Direction dirs[2];
1066 if (!path.isNestedRects(rects, dirs)) {
1067 return false;
1068 }
1069
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001070 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001071 // The two rects need to be wound opposite to each other
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001072 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001073 }
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001074
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001075 // Right now, nested rects where the margin is not the same width
1076 // all around do not render correctly
1077 const SkScalar* outer = rects[0].asScalars();
1078 const SkScalar* inner = rects[1].asScalars();
1079
robertphillips183e9852014-10-21 11:25:37 -07001080 bool allEq = true;
1081
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001082 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
robertphillips183e9852014-10-21 11:25:37 -07001083 bool allGoE1 = margin >= SK_Scalar1;
1084
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001085 for (int i = 1; i < 4; ++i) {
1086 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
robertphillips183e9852014-10-21 11:25:37 -07001087 if (temp < SK_Scalar1) {
1088 allGoE1 = false;
1089 }
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001090 if (!SkScalarNearlyEqual(margin, temp)) {
robertphillips183e9852014-10-21 11:25:37 -07001091 allEq = false;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001092 }
1093 }
1094
robertphillips183e9852014-10-21 11:25:37 -07001095 return allEq || allGoE1;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001096}
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001097
egdanield58a0ba2014-06-11 10:30:05 -07001098void GrContext::drawPath(const GrPaint& paint, const SkPath& path, const GrStrokeInfo& strokeInfo) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001099
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001100 if (path.isEmpty()) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001101 if (path.isInverseFillType()) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001102 this->drawPaint(paint);
1103 }
1104 return;
1105 }
1106
egdanield58a0ba2014-06-11 10:30:05 -07001107 if (strokeInfo.isDashed()) {
egdaniele61c4112014-06-12 10:24:21 -07001108 SkPoint pts[2];
1109 if (path.isLine(pts)) {
1110 AutoRestoreEffects are;
1111 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001112 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001113 if (NULL == target) {
1114 return;
1115 }
egdaniele61c4112014-06-12 10:24:21 -07001116 GrDrawState* drawState = target->drawState();
1117
1118 SkMatrix origViewMatrix = drawState->getViewMatrix();
1119 GrDrawState::AutoViewMatrixRestore avmr;
1120 if (avmr.setIdentity(target->drawState())) {
1121 if (GrDashingEffect::DrawDashLine(pts, paint, strokeInfo, fGpu, target,
1122 origViewMatrix)) {
1123 return;
1124 }
1125 }
1126 }
1127
1128 // Filter dashed path into new path with the dashing applied
egdanield58a0ba2014-06-11 10:30:05 -07001129 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
1130 SkTLazy<SkPath> effectPath;
1131 GrStrokeInfo newStrokeInfo(strokeInfo, false);
1132 SkStrokeRec* stroke = newStrokeInfo.getStrokeRecPtr();
1133 if (SkDashPath::FilterDashPath(effectPath.init(), path, stroke, NULL, info)) {
1134 this->drawPath(paint, *effectPath.get(), newStrokeInfo);
1135 return;
1136 }
1137
1138 this->drawPath(paint, path, newStrokeInfo);
1139 return;
1140 }
1141
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001142 // Note that internalDrawPath may sw-rasterize the path into a scratch texture.
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001143 // Scratch textures can be recycled after they are returned to the texture
1144 // cache. This presents a potential hazard for buffered drawing. However,
1145 // the writePixels that uploads to the scratch will perform a flush so we're
1146 // OK.
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001147 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001148 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001149 GrDrawTarget* target = this->prepareToDraw(&paint, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001150 if (NULL == target) {
1151 return;
1152 }
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001153 GrDrawState* drawState = target->drawState();
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001154
egdaniel93a37bc2014-07-21 13:47:57 -07001155 GR_CREATE_TRACE_MARKER1("GrContext::drawPath", target, "Is Convex", path.isConvex());
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001156
egdanield58a0ba2014-06-11 10:30:05 -07001157 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1158
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001159 bool useCoverageAA = paint.isAntiAlias() && !drawState->getRenderTarget()->isMultisampled();
1160
egdanield58a0ba2014-06-11 10:30:05 -07001161 if (useCoverageAA && strokeRec.getWidth() < 0 && !path.isConvex()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001162 // Concave AA paths are expensive - try to avoid them for special cases
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001163 SkRect rects[2];
1164
bsalomon9c0822a2014-08-11 11:07:48 -07001165 if (is_nested_rects(target, path, strokeRec, rects)) {
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001166 SkMatrix origViewMatrix = drawState->getViewMatrix();
bsalomon@google.com137f1342013-05-29 21:27:53 +00001167 GrDrawState::AutoViewMatrixRestore avmr;
1168 if (!avmr.setIdentity(target->drawState())) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001169 return;
1170 }
1171
joshualittb44293e2014-10-28 08:12:18 -07001172 fAARectRenderer->fillAANestedRects(target, rects, origViewMatrix);
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001173 return;
1174 }
1175 }
1176
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001177 SkRect ovalRect;
1178 bool isOval = path.isOval(&ovalRect);
1179
skia.committer@gmail.com7e328512013-03-23 07:01:28 +00001180 if (!isOval || path.isInverseFillType()
egdanield58a0ba2014-06-11 10:30:05 -07001181 || !fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), ovalRect, strokeRec)) {
1182 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001183 }
1184}
1185
bsalomon@google.com1b20a102013-11-08 14:42:56 +00001186void GrContext::internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
egdanield58a0ba2014-06-11 10:30:05 -07001187 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001188 SkASSERT(!path.isEmpty());
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001189
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001190 GR_CREATE_TRACE_MARKER("GrContext::internalDrawPath", target);
1191
1192
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001193 // An Assumption here is that path renderer would use some form of tweaking
1194 // the src color (either the input alpha or in the frag shader) to implement
1195 // aa. If we have some future driver-mojo path AA that can do the right
1196 // thing WRT to the blend then we'll need some query on the PR.
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001197 bool useCoverageAA = useAA &&
1198 !target->getDrawState().getRenderTarget()->isMultisampled() &&
1199 !target->shouldDisableCoverageAAForBlend();
bsalomon@google.com289533a2011-10-27 12:34:25 +00001200
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001201
1202 GrPathRendererChain::DrawType type =
1203 useCoverageAA ? GrPathRendererChain::kColorAntiAlias_DrawType :
robertphillips@google.come79f3202014-02-11 16:30:21 +00001204 GrPathRendererChain::kColor_DrawType;
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001205
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001206 const SkPath* pathPtr = &path;
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001207 SkTLazy<SkPath> tmpPath;
egdanield58a0ba2014-06-11 10:30:05 -07001208 SkTCopyOnFirstWrite<SkStrokeRec> stroke(strokeInfo.getStrokeRec());
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001209
1210 // Try a 1st time without stroking the path and without allowing the SW renderer
robertphillips@google.come79f3202014-02-11 16:30:21 +00001211 GrPathRenderer* pr = this->getPathRenderer(*pathPtr, *stroke, target, false, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001212
robertphillips@google.come79f3202014-02-11 16:30:21 +00001213 if (NULL == pr) {
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001214 if (!GrPathRenderer::IsStrokeHairlineOrEquivalent(*stroke, this->getMatrix(), NULL)) {
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001215 // It didn't work the 1st time, so try again with the stroked path
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001216 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1217 pathPtr = tmpPath.get();
1218 stroke.writable()->setFillStyle();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001219 if (pathPtr->isEmpty()) {
1220 return;
1221 }
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001222 }
1223 }
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001224
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001225 // This time, allow SW renderer
robertphillips@google.come79f3202014-02-11 16:30:21 +00001226 pr = this->getPathRenderer(*pathPtr, *stroke, target, true, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001227 }
1228
robertphillips@google.come79f3202014-02-11 16:30:21 +00001229 if (NULL == pr) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001230#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -07001231 SkDebugf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001232#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001233 return;
1234 }
1235
robertphillips@google.come79f3202014-02-11 16:30:21 +00001236 pr->drawPath(*pathPtr, *stroke, target, useCoverageAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001237}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001238
bsalomon@google.com27847de2011-02-22 20:59:41 +00001239////////////////////////////////////////////////////////////////////////////////
1240
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001241void GrContext::flush(int flagsBitfield) {
robertphillips@google.come7db8d62013-07-04 11:48:52 +00001242 if (NULL == fDrawBuffer) {
1243 return;
1244 }
1245
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001246 if (kDiscard_FlushBit & flagsBitfield) {
1247 fDrawBuffer->reset();
1248 } else {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001249 fDrawBuffer->flush();
junov@google.com53a55842011-06-08 22:55:10 +00001250 }
bsalomonbcf0a522014-10-08 08:40:09 -07001251 fResourceCache->purgeAsNeeded();
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001252 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001253}
1254
bsalomon81beccc2014-10-13 12:32:55 -07001255bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
1256 const void* inPixels, size_t outRowBytes, void* outPixels) {
1257 SkSrcPixelInfo srcPI;
1258 if (!GrPixelConfig2ColorType(srcConfig, &srcPI.fColorType)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001259 return false;
1260 }
bsalomon81beccc2014-10-13 12:32:55 -07001261 srcPI.fAlphaType = kUnpremul_SkAlphaType;
1262 srcPI.fPixels = inPixels;
1263 srcPI.fRowBytes = inRowBytes;
1264
1265 SkDstPixelInfo dstPI;
1266 dstPI.fColorType = srcPI.fColorType;
1267 dstPI.fAlphaType = kPremul_SkAlphaType;
1268 dstPI.fPixels = outPixels;
1269 dstPI.fRowBytes = outRowBytes;
1270
1271 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001272}
1273
bsalomon81beccc2014-10-13 12:32:55 -07001274bool GrContext::writeSurfacePixels(GrSurface* surface,
1275 int left, int top, int width, int height,
1276 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
1277 uint32_t pixelOpsFlags) {
1278
1279 {
1280 GrTexture* texture = NULL;
1281 if (!(kUnpremul_PixelOpsFlag & pixelOpsFlags) && (texture = surface->asTexture()) &&
1282 fGpu->canWriteTexturePixels(texture, srcConfig)) {
1283
1284 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) &&
1285 surface->surfacePriv().hasPendingIO()) {
1286 this->flush();
1287 }
1288 return fGpu->writeTexturePixels(texture, left, top, width, height,
1289 srcConfig, buffer, rowBytes);
1290 // Don't need to check kFlushWrites_PixelOp here, we just did a direct write so the
1291 // upload is already flushed.
1292 }
1293 }
1294
1295 // If we didn't do a direct texture write then we upload the pixels to a texture and draw.
1296 GrRenderTarget* renderTarget = surface->asRenderTarget();
1297 if (NULL == renderTarget) {
1298 return false;
1299 }
1300
1301 // We ignore the preferred config unless it is a R/B swap of the src config. In that case
1302 // we will upload the original src data to a scratch texture but we will spoof it as the swapped
1303 // config. This scratch will then have R and B swapped. We correct for this by swapping again
1304 // when drawing the scratch to the dst using a conversion effect.
1305 bool swapRAndB = false;
1306 GrPixelConfig writeConfig = srcConfig;
1307 if (GrPixelConfigSwapRAndB(srcConfig) ==
1308 fGpu->preferredWritePixelsConfig(srcConfig, renderTarget->config())) {
1309 writeConfig = GrPixelConfigSwapRAndB(srcConfig);
1310 swapRAndB = true;
1311 }
1312
bsalomonf2703d82014-10-28 14:33:06 -07001313 GrSurfaceDesc desc;
bsalomon81beccc2014-10-13 12:32:55 -07001314 desc.fWidth = width;
1315 desc.fHeight = height;
1316 desc.fConfig = writeConfig;
bsalomone3059732014-10-14 11:47:22 -07001317 SkAutoTUnref<GrTexture> texture(this->refScratchTexture(desc, kApprox_ScratchTexMatch));
1318 if (!texture) {
bsalomon81beccc2014-10-13 12:32:55 -07001319 return false;
1320 }
1321
1322 SkAutoTUnref<const GrFragmentProcessor> fp;
1323 SkMatrix textureMatrix;
1324 textureMatrix.setIDiv(texture->width(), texture->height());
1325
1326 // allocate a tmp buffer and sw convert the pixels to premul
1327 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1328
1329 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
1330 if (!GrPixelConfigIs8888(srcConfig)) {
1331 return false;
1332 }
1333 fp.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix));
1334 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
1335 if (NULL == fp) {
1336 size_t tmpRowBytes = 4 * width;
1337 tmpPixels.reset(width * height);
1338 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
1339 tmpPixels.get())) {
1340 return false;
1341 }
1342 rowBytes = tmpRowBytes;
1343 buffer = tmpPixels.get();
1344 }
1345 }
1346 if (NULL == fp) {
1347 fp.reset(GrConfigConversionEffect::Create(texture,
1348 swapRAndB,
1349 GrConfigConversionEffect::kNone_PMConversion,
1350 textureMatrix));
1351 }
1352
1353 // Even if the client told us not to flush, we still flush here. The client may have known that
1354 // writes to the original surface caused no data hazards, but they can't know that the scratch
1355 // we just got is safe.
1356 if (texture->surfacePriv().hasPendingIO()) {
1357 this->flush();
1358 }
1359 if (!fGpu->writeTexturePixels(texture, 0, 0, width, height,
1360 writeConfig, buffer, rowBytes)) {
1361 return false;
1362 }
1363
1364 SkMatrix matrix;
1365 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
1366
1367 // This function can be called in the midst of drawing another object (e.g., when uploading a
1368 // SW-rasterized clip while issuing a draw). So we push the current geometry state before
1369 // drawing a rect to the render target.
1370 // The bracket ensures we pop the stack if we wind up flushing below.
1371 {
joshualitt5c55fef2014-10-31 14:04:35 -07001372 GrDrawTarget* drawTarget = this->prepareToDraw(NULL, NULL, NULL);
bsalomon81beccc2014-10-13 12:32:55 -07001373 GrDrawTarget::AutoGeometryAndStatePush agasp(drawTarget, GrDrawTarget::kReset_ASRInit,
1374 &matrix);
1375 GrDrawState* drawState = drawTarget->drawState();
1376 drawState->addColorProcessor(fp);
1377 drawState->setRenderTarget(renderTarget);
1378 drawState->disableState(GrDrawState::kClip_StateBit);
1379 drawTarget->drawSimpleRect(SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)));
1380 }
1381
1382 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1383 this->flushSurfaceWrites(surface);
1384 }
1385
1386 return true;
1387}
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001388
reed@google.com7111d462014-03-25 16:20:24 +00001389// toggles between RGBA and BGRA
1390static SkColorType toggle_colortype32(SkColorType ct) {
1391 if (kRGBA_8888_SkColorType == ct) {
1392 return kBGRA_8888_SkColorType;
1393 } else {
1394 SkASSERT(kBGRA_8888_SkColorType == ct);
1395 return kRGBA_8888_SkColorType;
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001396 }
1397}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001398
bsalomon@google.com0342a852012-08-20 19:22:38 +00001399bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1400 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001401 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001402 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001403 ASSERT_OWNED_RESOURCE(target);
bsalomon89c62982014-11-03 12:08:42 -08001404 SkASSERT(target);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001405
bsalomonafbf2d62014-09-30 12:18:44 -07001406 if (!(kDontFlush_PixelOpsFlag & flags) && target->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001407 this->flush();
1408 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001409
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001410 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001411
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001412 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1413 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1414 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001415 width, height, dstConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001416 rowBytes);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001417 // We ignore the preferred config if it is different than our config unless it is an R/B swap.
1418 // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped
1419 // config. Then we will call readPixels on the scratch with the swapped config. The swaps during
1420 // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from
1421 // dstConfig.
1422 GrPixelConfig readConfig = dstConfig;
1423 bool swapRAndB = false;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001424 if (GrPixelConfigSwapRAndB(dstConfig) ==
1425 fGpu->preferredReadPixelsConfig(dstConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001426 readConfig = GrPixelConfigSwapRAndB(readConfig);
1427 swapRAndB = true;
1428 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001429
bsalomon@google.com0342a852012-08-20 19:22:38 +00001430 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001431
bsalomon@google.com9c680582013-02-06 18:17:50 +00001432 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001433 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001434 return false;
1435 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001436
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001437 // If the src is a texture and we would have to do conversions after read pixels, we instead
1438 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1439 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1440 // on the read back pixels.
1441 GrTexture* src = target->asTexture();
bsalomon49f085d2014-09-05 13:34:00 -07001442 if (src && (swapRAndB || unpremul || flipY)) {
bsalomon81beccc2014-10-13 12:32:55 -07001443 // Make the scratch a render so we can read its pixels.
bsalomonf2703d82014-10-28 14:33:06 -07001444 GrSurfaceDesc desc;
1445 desc.fFlags = kRenderTarget_GrSurfaceFlag;
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001446 desc.fWidth = width;
1447 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001448 desc.fConfig = readConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001449 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001450
bsalomon@google.com9c680582013-02-06 18:17:50 +00001451 // 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 +00001452 // match the passed rect. However, if we see many different size rectangles we will trash
1453 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1454 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001455 ScratchTexMatch match = kApprox_ScratchTexMatch;
1456 if (0 == left &&
1457 0 == top &&
1458 target->width() == width &&
1459 target->height() == height &&
1460 fGpu->fullReadPixelsIsFasterThanPartial()) {
1461 match = kExact_ScratchTexMatch;
1462 }
bsalomone3059732014-10-14 11:47:22 -07001463 SkAutoTUnref<GrTexture> texture(this->refScratchTexture(desc, match));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001464 if (texture) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001465 // compute a matrix to perform the draw
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001466 SkMatrix textureMatrix;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001467 textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001468 textureMatrix.postIDiv(src->width(), src->height());
1469
joshualittb0a8a372014-09-23 09:50:21 -07001470 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001471 if (unpremul) {
joshualittb0a8a372014-09-23 09:50:21 -07001472 fp.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix));
1473 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001474 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001475 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001476 }
1477 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1478 // there is no longer any point to using the scratch.
joshualittb0a8a372014-09-23 09:50:21 -07001479 if (fp || flipY || swapRAndB) {
1480 if (!fp) {
1481 fp.reset(GrConfigConversionEffect::Create(
1482 src, swapRAndB, GrConfigConversionEffect::kNone_PMConversion,
1483 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001484 }
1485 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001486
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001487 // We protect the existing geometry here since it may not be
1488 // clear to the caller that a draw operation (i.e., drawSimpleRect)
1489 // can be invoked in this method
joshualitt5c55fef2014-10-31 14:04:35 -07001490 {
1491 GrDrawTarget::AutoGeometryAndStatePush agasp(fDrawBuffer,
1492 GrDrawTarget::kReset_ASRInit);
1493 GrDrawState* drawState = fDrawBuffer->drawState();
1494 SkASSERT(fp);
1495 drawState->addColorProcessor(fp);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001496
joshualitt5c55fef2014-10-31 14:04:35 -07001497 drawState->setRenderTarget(texture->asRenderTarget());
1498 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
1499 fDrawBuffer->drawSimpleRect(rect);
1500 // we want to read back from the scratch's origin
1501 left = 0;
1502 top = 0;
1503 target = texture->asRenderTarget();
1504 }
1505 this->flushSurfaceWrites(target);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001506 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001507 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001508 }
joshualitt5c55fef2014-10-31 14:04:35 -07001509
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001510 if (!fGpu->readPixels(target,
1511 left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001512 readConfig, buffer, rowBytes)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001513 return false;
1514 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001515 // Perform any conversions we weren't able to perform using a scratch texture.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001516 if (unpremul || swapRAndB) {
reed@google.com7111d462014-03-25 16:20:24 +00001517 SkDstPixelInfo dstPI;
1518 if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) {
1519 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001520 }
reed@google.com7111d462014-03-25 16:20:24 +00001521 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1522 dstPI.fPixels = buffer;
1523 dstPI.fRowBytes = rowBytes;
1524
1525 SkSrcPixelInfo srcPI;
1526 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1527 srcPI.fAlphaType = kPremul_SkAlphaType;
1528 srcPI.fPixels = buffer;
1529 srcPI.fRowBytes = rowBytes;
1530
1531 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001532 }
1533 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001534}
1535
bsalomon87a94eb2014-11-03 14:28:32 -08001536void GrContext::prepareSurfaceForExternalRead(GrSurface* surface) {
1537 SkASSERT(surface);
1538 ASSERT_OWNED_RESOURCE(surface);
1539 if (surface->surfacePriv().hasPendingIO()) {
1540 this->flush();
1541 }
1542 GrRenderTarget* rt = surface->asRenderTarget();
1543 if (fGpu && rt) {
1544 fGpu->resolveRenderTarget(rt);
bsalomon41ebbdd2014-08-04 08:31:39 -07001545 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001546}
1547
bsalomon41ebbdd2014-08-04 08:31:39 -07001548void GrContext::discardRenderTarget(GrRenderTarget* renderTarget) {
1549 SkASSERT(renderTarget);
1550 ASSERT_OWNED_RESOURCE(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001551 AutoRestoreEffects are;
1552 AutoCheckFlush acf(this);
joshualitt5c55fef2014-10-31 14:04:35 -07001553 GrDrawTarget* target = this->prepareToDraw(NULL, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001554 if (NULL == target) {
1555 return;
1556 }
1557 target->discard(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001558}
1559
bsalomonf80bfed2014-10-07 05:56:02 -07001560void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
1561 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001562 if (NULL == src || NULL == dst) {
1563 return;
1564 }
bsalomone3d4bf22014-09-23 09:15:03 -07001565 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -07001566 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -04001567
bsalomonf80bfed2014-10-07 05:56:02 -07001568 // Since we're going to the draw target and not GPU, no need to check kNoFlush
1569 // here.
junov96c118e2014-09-26 13:09:47 -07001570
joshualitt5c55fef2014-10-31 14:04:35 -07001571 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, NULL);
junov96c118e2014-09-26 13:09:47 -07001572 if (NULL == target) {
1573 return;
1574 }
junov96c118e2014-09-26 13:09:47 -07001575 target->copySurface(dst, src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -07001576
1577 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1578 this->flush();
1579 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001580}
1581
bsalomonf80bfed2014-10-07 05:56:02 -07001582void GrContext::flushSurfaceWrites(GrSurface* surface) {
1583 if (surface->surfacePriv().hasPendingWrite()) {
1584 this->flush();
1585 }
1586}
1587
bsalomon@google.com27847de2011-02-22 20:59:41 +00001588////////////////////////////////////////////////////////////////////////////////
1589
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001590GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint,
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001591 AutoRestoreEffects* are,
1592 AutoCheckFlush* acf) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001593 // All users of this draw state should be freeing up all effects when they're done.
1594 // Otherwise effects that own resources may keep those resources alive indefinitely.
joshualittbd769d02014-09-04 08:56:46 -07001595 SkASSERT(0 == fDrawState->numColorStages() && 0 == fDrawState->numCoverageStages() &&
1596 !fDrawState->hasGeometryProcessor());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001597
bsalomon41ebbdd2014-08-04 08:31:39 -07001598 if (NULL == fGpu) {
1599 return NULL;
1600 }
1601
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001602 ASSERT_OWNED_RESOURCE(fRenderTarget.get());
bsalomon49f085d2014-09-05 13:34:00 -07001603 if (paint) {
1604 SkASSERT(are);
1605 SkASSERT(acf);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001606 are->set(fDrawState);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001607 fDrawState->setFromPaint(*paint, fViewMatrix, fRenderTarget.get());
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001608#if GR_DEBUG_PARTIAL_COVERAGE_CHECK
1609 if ((paint->hasMask() || 0xff != paint->fCoverage) &&
bsalomon62c447d2014-08-08 08:08:50 -07001610 !fDrawState->couldApplyCoverage(fGpu->caps())) {
tfarina38406c82014-10-31 07:11:12 -07001611 SkDebugf("Partial pixel coverage will be incorrectly blended.\n");
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001612 }
1613#endif
bsalomon9c0822a2014-08-11 11:07:48 -07001614 // Clear any vertex attributes configured for the previous use of the
1615 // GrDrawState which can effect which blend optimizations are in effect.
1616 fDrawState->setDefaultVertexAttribs();
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001617 } else {
bsalomon@google.com137f1342013-05-29 21:27:53 +00001618 fDrawState->reset(fViewMatrix);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001619 fDrawState->setRenderTarget(fRenderTarget.get());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001620 }
bsalomon49f085d2014-09-05 13:34:00 -07001621 fDrawState->setState(GrDrawState::kClip_StateBit, fClip &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001622 !fClip->fClipStack->isWideOpen());
joshualitt5c55fef2014-10-31 14:04:35 -07001623 fDrawBuffer->setClip(fClip);
1624 SkASSERT(fDrawState == fDrawBuffer->drawState());
1625 return fDrawBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001626}
1627
robertphillips@google.com72176b22012-05-23 13:19:12 +00001628/*
1629 * This method finds a path renderer that can draw the specified path on
1630 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001631 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001632 * can be individually allowed/disallowed via the "allowSW" boolean.
1633 */
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001634GrPathRenderer* GrContext::getPathRenderer(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001635 const SkStrokeRec& stroke,
bsalomon@google.comc2099d22012-03-02 21:26:50 +00001636 const GrDrawTarget* target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001637 bool allowSW,
1638 GrPathRendererChain::DrawType drawType,
1639 GrPathRendererChain::StencilSupport* stencilSupport) {
1640
bsalomon@google.com30085192011-08-19 15:42:31 +00001641 if (NULL == fPathRendererChain) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001642 fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this));
bsalomon@google.com30085192011-08-19 15:42:31 +00001643 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001644
sugoi@google.com12b4e272012-12-06 20:13:11 +00001645 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path,
1646 stroke,
robertphillips@google.com72176b22012-05-23 13:19:12 +00001647 target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001648 drawType,
1649 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +00001650
1651 if (NULL == pr && allowSW) {
1652 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001653 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001654 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001655 pr = fSoftwarePathRenderer;
1656 }
1657
1658 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001659}
1660
bsalomon@google.com27847de2011-02-22 20:59:41 +00001661////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00001662bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
1663 return fGpu->caps()->isConfigRenderable(config, withMSAA);
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001664}
1665
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +00001666int GrContext::getRecommendedSampleCount(GrPixelConfig config,
1667 SkScalar dpi) const {
1668 if (!this->isConfigRenderable(config, true)) {
1669 return 0;
1670 }
1671 int chosenSampleCount = 0;
1672 if (fGpu->caps()->pathRenderingSupport()) {
1673 if (dpi >= 250.0f) {
1674 chosenSampleCount = 4;
1675 } else {
1676 chosenSampleCount = 16;
1677 }
1678 }
1679 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
1680 chosenSampleCount : 0;
1681}
1682
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001683void GrContext::setupDrawBuffer() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001684 SkASSERT(NULL == fDrawBuffer);
1685 SkASSERT(NULL == fDrawBufferVBAllocPool);
1686 SkASSERT(NULL == fDrawBufferIBAllocPool);
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001687
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001688 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001689 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001690 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001691 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001692 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001693 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001694 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001695 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001696
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001697 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001698 fDrawBufferVBAllocPool,
1699 fDrawBufferIBAllocPool));
bsalomon@google.com3c4d0322012-04-03 18:04:51 +00001700
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001701 fDrawBuffer->setDrawState(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001702}
1703
bsalomon@google.com21c10c52013-06-13 17:44:07 +00001704GrDrawTarget* GrContext::getTextTarget() {
joshualitt5c55fef2014-10-31 14:04:35 -07001705 return this->prepareToDraw(NULL, NULL, NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001706}
1707
1708const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1709 return fGpu->getQuadIndexBuffer();
1710}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001711
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001712namespace {
1713void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1714 GrConfigConversionEffect::PMConversion pmToUPM;
1715 GrConfigConversionEffect::PMConversion upmToPM;
1716 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1717 *pmToUPMValue = pmToUPM;
1718 *upmToPMValue = upmToPM;
1719}
1720}
1721
joshualittb0a8a372014-09-23 09:50:21 -07001722const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture,
1723 bool swapRAndB,
1724 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001725 if (!fDidTestPMConversions) {
1726 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001727 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001728 }
1729 GrConfigConversionEffect::PMConversion pmToUPM =
1730 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1731 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001732 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001733 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001734 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001735 }
1736}
1737
joshualittb0a8a372014-09-23 09:50:21 -07001738const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture,
1739 bool swapRAndB,
1740 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001741 if (!fDidTestPMConversions) {
1742 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001743 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001744 }
1745 GrConfigConversionEffect::PMConversion upmToPM =
1746 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1747 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001748 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001749 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001750 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001751 }
1752}
1753
bsalomon6d3fe022014-07-25 08:35:45 -07001754void GrContext::addResourceToCache(const GrResourceKey& resourceKey, GrGpuResource* resource) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001755 fResourceCache->addResource(resourceKey, resource);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001756}
1757
bsalomon6d3fe022014-07-25 08:35:45 -07001758GrGpuResource* GrContext::findAndRefCachedResource(const GrResourceKey& resourceKey) {
1759 GrGpuResource* resource = fResourceCache->find(resourceKey);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001760 SkSafeRef(resource);
1761 return resource;
1762}
1763
egdanielbbcb38d2014-06-19 10:19:29 -07001764void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
1765 fGpu->addGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001766 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001767 fDrawBuffer->addGpuTraceMarker(marker);
1768 }
1769}
1770
1771void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
1772 fGpu->removeGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001773 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001774 fDrawBuffer->removeGpuTraceMarker(marker);
1775 }
1776}
1777
bsalomon@google.comc4364992011-11-07 15:54:49 +00001778///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001779#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001780void GrContext::printCacheStats() const {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001781 fResourceCache->printStats();
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001782}
1783#endif
robertphillips754f4e92014-09-18 13:52:08 -07001784
1785#if GR_GPU_STATS
1786const GrContext::GPUStats* GrContext::gpuStats() const {
1787 return fGpu->gpuStats();
1788}
1789#endif
1790