blob: 3b44b7e7c089ec8400c7efcbd913f413b411fcd5 [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
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com1fadb202011-12-12 16:10:08 +000010#include "GrContext.h"
11
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000012#include "effects/GrConfigConversionEffect.h"
egdaniele61c4112014-06-12 10:24:21 -070013#include "effects/GrDashingEffect.h"
14#include "effects/GrSingleTextureEffect.h"
bsalomon@google.comb505a122012-05-31 18:40:36 +000015
jvanverth@google.combfe2b9d2013-09-06 16:57:29 +000016#include "GrAARectRenderer.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000017#include "GrBufferAllocPool.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000018#include "GrGpu.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070019#include "GrDistanceFieldTextContext.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000020#include "GrDrawTargetCaps.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000021#include "GrIndexBuffer.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000022#include "GrInOrderDrawBuffer.h"
robertphillips@google.come930a072014-04-03 00:34:27 +000023#include "GrLayerCache.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000024#include "GrOvalRenderer.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000025#include "GrPathRenderer.h"
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000026#include "GrPathUtils.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000027#include "GrResourceCache.h"
bsalomonc8dc1f72014-08-21 13:02:13 -070028#include "GrResourceCache2.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000029#include "GrSoftwarePathRenderer.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000030#include "GrStencilBuffer.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070031#include "GrStencilAndCoverTextContext.h"
egdanield58a0ba2014-06-11 10:30:05 -070032#include "GrStrokeInfo.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000033#include "GrTextStrike.h"
egdanielbbcb38d2014-06-19 10:19:29 -070034#include "GrTraceMarker.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000035#include "GrTracing.h"
egdanield58a0ba2014-06-11 10:30:05 -070036#include "SkDashPathPriv.h"
reed@google.com7111d462014-03-25 16:20:24 +000037#include "SkGr.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000038#include "SkRTConf.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000039#include "SkRRect.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000040#include "SkStrokeRec.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000041#include "SkTLazy.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000042#include "SkTLS.h"
commit-bot@chromium.org933e65d2014-03-20 20:00:24 +000043#include "SkTraceEvent.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000044
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000045// It can be useful to set this to false to test whether a bug is caused by using the
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000046// InOrderDrawBuffer, to compare performance of using/not using InOrderDrawBuffer, or to make
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000047// debugging simpler.
bsalomon@google.come932c982013-09-10 19:47:01 +000048SK_CONF_DECLARE(bool, c_Defer, "gpu.deferContext", true,
jvanverth@google.com65eb4d52013-03-19 18:51:02 +000049 "Defers rendering in GrContext via GrInOrderDrawBuffer.");
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000050
51#define BUFFERED_DRAW (c_Defer ? kYes_BufferedDraw : kNo_BufferedDraw)
bsalomon@google.com27847de2011-02-22 20:59:41 +000052
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000053#ifdef SK_DEBUG
reed@google.com4b2d3f32012-05-15 18:05:50 +000054 // change this to a 1 to see notifications when partial coverage fails
55 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
56#else
57 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
58#endif
59
robertphillips@google.com4e5559a2013-10-30 17:04:16 +000060static const size_t MAX_RESOURCE_CACHE_COUNT = GR_DEFAULT_RESOURCE_CACHE_COUNT_LIMIT;
61static const size_t MAX_RESOURCE_CACHE_BYTES = GR_DEFAULT_RESOURCE_CACHE_MB_LIMIT * 1024 * 1024;
bsalomon@google.com27847de2011-02-22 20:59:41 +000062
bsalomon@google.com60361492012-03-15 17:47:06 +000063static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15;
bsalomon@google.com27847de2011-02-22 20:59:41 +000064static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4;
65
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000066static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11;
67static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4;
bsalomon@google.com27847de2011-02-22 20:59:41 +000068
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000069#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
bsalomon@google.combc4b6542011-11-19 13:56:11 +000070
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000071// Glorified typedef to avoid including GrDrawState.h in GrContext.h
72class GrContext::AutoRestoreEffects : public GrDrawState::AutoRestoreEffects {};
73
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +000074class GrContext::AutoCheckFlush {
75public:
76 AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(NULL != context); }
77
78 ~AutoCheckFlush() {
79 if (fContext->fFlushToReduceCacheSize) {
80 fContext->flush();
81 }
82 }
83
84private:
85 GrContext* fContext;
86};
87
krajcevski9c6d4d72014-08-12 07:26:25 -070088GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
89 const Options* opts) {
90 GrContext* context;
91 if (NULL == opts) {
92 context = SkNEW_ARGS(GrContext, (Options()));
93 } else {
94 context = SkNEW_ARGS(GrContext, (*opts));
95 }
96
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000097 if (context->init(backend, backendContext)) {
98 return context;
99 } else {
100 context->unref();
101 return NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000102 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000103}
104
krajcevski9c6d4d72014-08-12 07:26:25 -0700105GrContext::GrContext(const Options& opts) : fOptions(opts) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000106 fDrawState = NULL;
107 fGpu = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000108 fClip = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000109 fPathRendererChain = NULL;
110 fSoftwarePathRenderer = NULL;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000111 fResourceCache = NULL;
bsalomonc8dc1f72014-08-21 13:02:13 -0700112 fResourceCache2 = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000113 fFontCache = NULL;
114 fDrawBuffer = NULL;
115 fDrawBufferVBAllocPool = NULL;
116 fDrawBufferIBAllocPool = NULL;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000117 fFlushToReduceCacheSize = false;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000118 fAARectRenderer = NULL;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000119 fOvalRenderer = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000120 fViewMatrix.reset();
robertphillips@google.com44a91dc2013-07-25 15:32:06 +0000121 fMaxTextureSizeOverride = 1 << 20;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000122}
123
124bool GrContext::init(GrBackend backend, GrBackendContext backendContext) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000125 SkASSERT(NULL == fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000126
127 fGpu = GrGpu::Create(backend, backendContext, this);
128 if (NULL == fGpu) {
129 return false;
130 }
131
132 fDrawState = SkNEW(GrDrawState);
133 fGpu->setDrawState(fDrawState);
134
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000135 fResourceCache = SkNEW_ARGS(GrResourceCache, (MAX_RESOURCE_CACHE_COUNT,
136 MAX_RESOURCE_CACHE_BYTES));
137 fResourceCache->setOverbudgetCallback(OverbudgetCB, this);
bsalomonc8dc1f72014-08-21 13:02:13 -0700138 fResourceCache2 = SkNEW(GrResourceCache2);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000139
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000140 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
141
robertphillips4ec84da2014-06-24 13:10:43 -0700142 fLayerCache.reset(SkNEW_ARGS(GrLayerCache, (this)));
robertphillips@google.come930a072014-04-03 00:34:27 +0000143
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000144 fLastDrawWasBuffered = kNo_BufferedDraw;
145
146 fAARectRenderer = SkNEW(GrAARectRenderer);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000147 fOvalRenderer = SkNEW(GrOvalRenderer);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000148
149 fDidTestPMConversions = false;
150
151 this->setupDrawBuffer();
152
153 return true;
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000154}
155
bsalomon@google.com27847de2011-02-22 20:59:41 +0000156GrContext::~GrContext() {
bsalomon@google.com733c0622013-04-24 17:59:32 +0000157 if (NULL == fGpu) {
158 return;
159 }
160
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000161 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000162
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000163 for (int i = 0; i < fCleanUpData.count(); ++i) {
164 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
165 }
166
bsalomonc8dc1f72014-08-21 13:02:13 -0700167 delete fResourceCache2;
168 fResourceCache2 = NULL;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000169 delete fResourceCache;
170 fResourceCache = NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000171 delete fFontCache;
172 delete fDrawBuffer;
173 delete fDrawBufferVBAllocPool;
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +0000174 delete fDrawBufferIBAllocPool;
bsalomon@google.com30085192011-08-19 15:42:31 +0000175
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000176 fAARectRenderer->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000177 fOvalRenderer->unref();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000178
bsalomon@google.com205d4602011-04-25 12:43:45 +0000179 fGpu->unref();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000180 SkSafeUnref(fPathRendererChain);
181 SkSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000182 fDrawState->unref();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000183}
184
bsalomon2354f842014-07-28 13:48:36 -0700185void GrContext::abandonContext() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000186 // abandon first to so destructors
187 // don't try to free the resources in the API.
bsalomonc8dc1f72014-08-21 13:02:13 -0700188 fResourceCache2->abandonAll();
189
190 fGpu->contextAbandonded();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000191
bsalomon@google.com30085192011-08-19 15:42:31 +0000192 // a path renderer may be holding onto resources that
193 // are now unusable
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000194 SkSafeSetNull(fPathRendererChain);
195 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000196
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000197 delete fDrawBuffer;
198 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000199
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000200 delete fDrawBufferVBAllocPool;
201 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000202
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000203 delete fDrawBufferIBAllocPool;
204 fDrawBufferIBAllocPool = NULL;
205
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000206 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000207 fOvalRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000208
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000209 fResourceCache->purgeAllUnlocked();
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000210
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000211 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000212 fLayerCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000213}
214
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000215void GrContext::resetContext(uint32_t state) {
216 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000217}
218
219void GrContext::freeGpuResources() {
220 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000221
robertphillips@google.comff175842012-05-14 19:31:39 +0000222 fGpu->purgeResources();
bsalomonc8dc1f72014-08-21 13:02:13 -0700223 if (NULL != fDrawBuffer) {
224 fDrawBuffer->purgeResources();
225 }
robertphillips@google.comff175842012-05-14 19:31:39 +0000226
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000227 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000228 fOvalRenderer->reset();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000229
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000230 fResourceCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000231 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000232 fLayerCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000233 // a path renderer may be holding onto resources
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000234 SkSafeSetNull(fPathRendererChain);
235 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000236}
237
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000238void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
239 if (NULL != resourceCount) {
240 *resourceCount = fResourceCache->getCachedResourceCount();
241 }
242 if (NULL != resourceBytes) {
243 *resourceBytes = fResourceCache->getCachedResourceBytes();
244 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000245}
246
kkinnunenc6cb56f2014-06-24 00:12:27 -0700247GrTextContext* GrContext::createTextContext(GrRenderTarget* renderTarget,
248 const SkDeviceProperties&
249 leakyProperties,
250 bool enableDistanceFieldFonts) {
251 if (fGpu->caps()->pathRenderingSupport()) {
252 if (renderTarget->getStencilBuffer() && renderTarget->isMultisampled()) {
253 return SkNEW_ARGS(GrStencilAndCoverTextContext, (this, leakyProperties));
254 }
255 }
256 return SkNEW_ARGS(GrDistanceFieldTextContext, (this, leakyProperties,
257 enableDistanceFieldFonts));
258}
259
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000260////////////////////////////////////////////////////////////////////////////////
261
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000262GrTexture* GrContext::findAndRefTexture(const GrTextureDesc& desc,
263 const GrCacheID& cacheID,
264 const GrTextureParams* params) {
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000265 GrResourceKey resourceKey = GrTextureImpl::ComputeKey(fGpu, params, desc, cacheID);
bsalomon6d3fe022014-07-25 08:35:45 -0700266 GrGpuResource* resource = fResourceCache->find(resourceKey);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000267 SkSafeRef(resource);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000268 return static_cast<GrTexture*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000269}
270
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000271bool GrContext::isTextureInCache(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000272 const GrCacheID& cacheID,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000273 const GrTextureParams* params) const {
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000274 GrResourceKey resourceKey = GrTextureImpl::ComputeKey(fGpu, params, desc, cacheID);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000275 return fResourceCache->hasKey(resourceKey);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000276}
277
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000278void GrContext::addStencilBuffer(GrStencilBuffer* sb) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +0000279 ASSERT_OWNED_RESOURCE(sb);
robertphillips@google.com46a86002012-08-08 10:42:44 +0000280
281 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(),
282 sb->height(),
283 sb->numSamples());
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000284 fResourceCache->addResource(resourceKey, sb);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000285}
286
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000287GrStencilBuffer* GrContext::findStencilBuffer(int width, int height,
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000288 int sampleCnt) {
robertphillips@google.com46a86002012-08-08 10:42:44 +0000289 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width,
290 height,
291 sampleCnt);
bsalomon6d3fe022014-07-25 08:35:45 -0700292 GrGpuResource* resource = fResourceCache->find(resourceKey);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000293 return static_cast<GrStencilBuffer*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000294}
295
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000296static void stretch_image(void* dst,
297 int dstW,
298 int dstH,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000299 const void* src,
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000300 int srcW,
301 int srcH,
302 size_t bpp) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000303 SkFixed dx = (srcW << 16) / dstW;
304 SkFixed dy = (srcH << 16) / dstH;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000305
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000306 SkFixed y = dy >> 1;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000307
robertphillips@google.com8b169312013-10-15 17:47:36 +0000308 size_t dstXLimit = dstW*bpp;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000309 for (int j = 0; j < dstH; ++j) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000310 SkFixed x = dx >> 1;
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000311 const uint8_t* srcRow = reinterpret_cast<const uint8_t *>(src) + (y>>16)*srcW*bpp;
312 uint8_t* dstRow = reinterpret_cast<uint8_t *>(dst) + j*dstW*bpp;
robertphillips@google.com8b169312013-10-15 17:47:36 +0000313 for (size_t i = 0; i < dstXLimit; i += bpp) {
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000314 memcpy(dstRow + i, srcRow + (x>>16)*bpp, bpp);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000315 x += dx;
316 }
317 y += dy;
318 }
319}
320
robertphillips@google.com42903302013-04-20 12:26:07 +0000321namespace {
322
323// position + local coordinate
324extern const GrVertexAttrib gVertexAttribs[] = {
325 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000326 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000327};
328
329};
330
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000331// The desired texture is NPOT and tiled but that isn't supported by
robertphillips@google.com3319f332012-08-13 18:00:36 +0000332// the current hardware. Resize the texture to be a POT
333GrTexture* GrContext::createResizedTexture(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000334 const GrCacheID& cacheID,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000335 const void* srcData,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000336 size_t rowBytes,
humper@google.comb86add12013-07-25 18:49:07 +0000337 bool filter) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000338 SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, cacheID, NULL));
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000339 if (NULL == clampedTexture) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000340 clampedTexture.reset(this->createTexture(NULL, desc, cacheID, srcData, rowBytes));
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000341
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000342 if (NULL == clampedTexture) {
robertphillips@google.com3319f332012-08-13 18:00:36 +0000343 return NULL;
344 }
345 }
robertphillips@google.com0d25eef2012-09-11 21:25:51 +0000346
robertphillips@google.com3319f332012-08-13 18:00:36 +0000347 GrTextureDesc rtDesc = desc;
348 rtDesc.fFlags = rtDesc.fFlags |
349 kRenderTarget_GrTextureFlagBit |
350 kNoStencil_GrTextureFlagBit;
commit-bot@chromium.org5898dce2013-09-18 18:52:16 +0000351 rtDesc.fWidth = GrNextPow2(desc.fWidth);
352 rtDesc.fHeight = GrNextPow2(desc.fHeight);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000353
354 GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0);
355
356 if (NULL != texture) {
357 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
358 GrDrawState* drawState = fGpu->drawState();
359 drawState->setRenderTarget(texture->asRenderTarget());
360
361 // if filtering is not desired then we want to ensure all
362 // texels in the resampled image are copies of texels from
363 // the original.
humper@google.comb86add12013-07-25 18:49:07 +0000364 GrTextureParams params(SkShader::kClamp_TileMode, filter ? GrTextureParams::kBilerp_FilterMode :
365 GrTextureParams::kNone_FilterMode);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000366 drawState->addColorTextureEffect(clampedTexture, SkMatrix::I(), params);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000367
djsollenea81ced2014-08-27 13:07:34 -0700368 drawState->setVertexAttribs<gVertexAttribs>(SK_ARRAY_COUNT(gVertexAttribs));
jvanverth@google.com054ae992013-04-01 20:06:51 +0000369
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000370 GrDrawTarget::AutoReleaseGeometry arg(fGpu, 4, 0);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000371
372 if (arg.succeeded()) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000373 SkPoint* verts = (SkPoint*) arg.vertices();
374 verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(SkPoint));
375 verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(SkPoint));
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000376 fGpu->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000377 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000378 } else {
379 // TODO: Our CPU stretch doesn't filter. But we create separate
bsalomon@google.com08283af2012-10-26 13:01:20 +0000380 // stretched textures when the texture params is either filtered or
robertphillips@google.com3319f332012-08-13 18:00:36 +0000381 // not. Either implement filtered stretch blit on CPU or just create
382 // one when FBO case fails.
383
384 rtDesc.fFlags = kNone_GrTextureFlags;
385 // no longer need to clamp at min RT size.
386 rtDesc.fWidth = GrNextPow2(desc.fWidth);
387 rtDesc.fHeight = GrNextPow2(desc.fHeight);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000388
389 // We shouldn't be resizing a compressed texture.
390 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
391
robertphillips@google.com8b169312013-10-15 17:47:36 +0000392 size_t bpp = GrBytesPerPixel(desc.fConfig);
georgeb62508b2014-08-12 18:00:47 -0700393 GrAutoMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight);
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000394 stretch_image(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight,
395 srcData, desc.fWidth, desc.fHeight, bpp);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000396
397 size_t stretchedRowBytes = rtDesc.fWidth * bpp;
398
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000399 texture = fGpu->createTexture(rtDesc, stretchedPixels.get(), stretchedRowBytes);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000400 SkASSERT(NULL != texture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000401 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000402
403 return texture;
404}
405
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000406GrTexture* GrContext::createTexture(const GrTextureParams* params,
407 const GrTextureDesc& desc,
408 const GrCacheID& cacheID,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000409 const void* srcData,
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000410 size_t rowBytes,
411 GrResourceKey* cacheKey) {
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000412 GrResourceKey resourceKey = GrTextureImpl::ComputeKey(fGpu, params, desc, cacheID);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000413
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000414 GrTexture* texture;
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000415 if (GrTextureImpl::NeedsResizing(resourceKey)) {
krajcevski9c0e6292014-06-02 07:38:14 -0700416 // We do not know how to resize compressed textures.
417 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
418
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000419 texture = this->createResizedTexture(desc, cacheID,
420 srcData, rowBytes,
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000421 GrTextureImpl::NeedsBilerp(resourceKey));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000422 } else {
krajcevski9c0e6292014-06-02 07:38:14 -0700423 texture = fGpu->createTexture(desc, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000424 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000425
426 if (NULL != texture) {
robertphillips@google.com1622a6d2013-07-18 17:11:45 +0000427 // Adding a resource could put us overbudget. Try to free up the
428 // necessary space before adding it.
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000429 fResourceCache->purgeAsNeeded(1, texture->gpuMemorySize());
430 fResourceCache->addResource(resourceKey, texture);
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000431
432 if (NULL != cacheKey) {
433 *cacheKey = resourceKey;
434 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000435 }
436
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000437 return texture;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000438}
439
skia.committer@gmail.com1f3c7382013-07-20 07:00:58 +0000440static GrTexture* create_scratch_texture(GrGpu* gpu,
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000441 GrResourceCache* resourceCache,
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000442 const GrTextureDesc& desc) {
443 GrTexture* texture = gpu->createTexture(desc, NULL, 0);
444 if (NULL != texture) {
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000445 GrResourceKey key = GrTextureImpl::ComputeScratchKey(texture->desc());
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000446 // Adding a resource could put us overbudget. Try to free up the
447 // necessary space before adding it.
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000448 resourceCache->purgeAsNeeded(1, texture->gpuMemorySize());
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000449 // Make the resource exclusive so future 'find' calls don't return it
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000450 resourceCache->addResource(key, texture, GrResourceCache::kHide_OwnershipFlag);
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000451 }
452 return texture;
453}
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000454
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000455GrTexture* GrContext::lockAndRefScratchTexture(const GrTextureDesc& inDesc, ScratchTexMatch match) {
456
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000457 SkASSERT((inDesc.fFlags & kRenderTarget_GrTextureFlagBit) ||
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000458 !(inDesc.fFlags & kNoStencil_GrTextureFlagBit));
459
460 // Renderable A8 targets are not universally supported (e.g., not on ANGLE)
bsalomon@google.com8aaac8d2013-10-15 14:35:06 +0000461 SkASSERT(this->isConfigRenderable(kAlpha_8_GrPixelConfig, inDesc.fSampleCnt > 0) ||
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000462 !(inDesc.fFlags & kRenderTarget_GrTextureFlagBit) ||
463 (inDesc.fConfig != kAlpha_8_GrPixelConfig));
464
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000465 if (!fGpu->caps()->reuseScratchTextures() &&
466 !(inDesc.fFlags & kRenderTarget_GrTextureFlagBit)) {
467 // If we're never recycling this texture we can always make it the right size
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000468 return create_scratch_texture(fGpu, fResourceCache, inDesc);
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000469 }
470
471 GrTextureDesc desc = inDesc;
rileya@google.com2afb8ec2012-08-23 14:08:57 +0000472
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000473 if (kApprox_ScratchTexMatch == match) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000474 // bin by pow2 with a reasonable min
bsalomon@google.com40db6dc2013-03-06 16:35:49 +0000475 static const int MIN_SIZE = 16;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000476 desc.fWidth = SkTMax(MIN_SIZE, GrNextPow2(desc.fWidth));
477 desc.fHeight = SkTMax(MIN_SIZE, GrNextPow2(desc.fHeight));
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000478 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000479
bsalomon6d3fe022014-07-25 08:35:45 -0700480 GrGpuResource* resource = NULL;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000481 int origWidth = desc.fWidth;
482 int origHeight = desc.fHeight;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000483
484 do {
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000485 GrResourceKey key = GrTextureImpl::ComputeScratchKey(desc);
robertphillips@google.com209a1142012-10-31 12:25:21 +0000486 // Ensure we have exclusive access to the texture so future 'find' calls don't return it
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000487 resource = fResourceCache->find(key, GrResourceCache::kHide_OwnershipFlag);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000488 if (NULL != resource) {
489 resource->ref();
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000490 break;
491 }
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000492 if (kExact_ScratchTexMatch == match) {
493 break;
494 }
bsalomon@google.com40db6dc2013-03-06 16:35:49 +0000495 // We had a cache miss and we are in approx mode, relax the fit of the flags.
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000496
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000497 // We no longer try to reuse textures that were previously used as render targets in
rileya@google.com2afb8ec2012-08-23 14:08:57 +0000498 // situations where no RT is needed; doing otherwise can confuse the video driver and
499 // cause significant performance problems in some cases.
500 if (desc.fFlags & kNoStencil_GrTextureFlagBit) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000501 desc.fFlags = desc.fFlags & ~kNoStencil_GrTextureFlagBit;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000502 } else {
503 break;
504 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000505
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000506 } while (true);
507
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000508 if (NULL == resource) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000509 desc.fFlags = inDesc.fFlags;
510 desc.fWidth = origWidth;
511 desc.fHeight = origHeight;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000512 resource = create_scratch_texture(fGpu, fResourceCache, desc);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000513 }
514
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000515 return static_cast<GrTexture*>(resource);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000516}
517
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000518void GrContext::addExistingTextureToCache(GrTexture* texture) {
519
520 if (NULL == texture) {
521 return;
522 }
523
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000524 // This texture should already have a cache entry since it was once
525 // attached
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000526 SkASSERT(NULL != texture->getCacheEntry());
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000527
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000528 // Conceptually, the cache entry is going to assume responsibility
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000529 // for the creation ref. Assert refcnt == 1.
bsalomon944bcf02014-07-29 08:01:52 -0700530 // Except that this also gets called when the texture is prematurely
531 // abandoned. In that case the ref count may be > 1.
532 // SkASSERT(texture->unique());
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000533
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000534 if (fGpu->caps()->reuseScratchTextures() || NULL != texture->asRenderTarget()) {
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000535 // Since this texture came from an AutoScratchTexture it should
536 // still be in the exclusive pile. Recycle it.
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000537 fResourceCache->makeNonExclusive(texture->getCacheEntry());
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000538 this->purgeCache();
bsalomondcabb052014-07-21 14:24:01 -0700539 } else {
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000540 // When we aren't reusing textures we know this scratch texture
541 // will never be reused and would be just wasting time in the cache
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000542 fResourceCache->makeNonExclusive(texture->getCacheEntry());
543 fResourceCache->deleteResource(texture->getCacheEntry());
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000544 }
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000545}
546
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000547void GrContext::unlockScratchTexture(GrTexture* texture) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700548 if (texture->wasDestroyed()) {
549 if (texture->getCacheEntry()->key().isScratch()) {
550 // This texture was detached from the cache but the cache still had a ref to it but
bsalomon02e36f22014-08-22 12:01:46 -0700551 // not a pointer to it. This will unref the texture and delete its resource cache
552 // entry.
553 delete texture->getCacheEntry();
bsalomonc8dc1f72014-08-21 13:02:13 -0700554 }
555 return;
556 }
557
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000558 ASSERT_OWNED_RESOURCE(texture);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000559 SkASSERT(NULL != texture->getCacheEntry());
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000560
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000561 // If this is a scratch texture we detached it from the cache
562 // while it was locked (to avoid two callers simultaneously getting
563 // the same texture).
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000564 if (texture->getCacheEntry()->key().isScratch()) {
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000565 if (fGpu->caps()->reuseScratchTextures() || NULL != texture->asRenderTarget()) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000566 fResourceCache->makeNonExclusive(texture->getCacheEntry());
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000567 this->purgeCache();
bsalomondcabb052014-07-21 14:24:01 -0700568 } else if (texture->unique()) {
skia.committer@gmail.comb77f0f42013-10-30 07:01:56 +0000569 // Only the cache now knows about this texture. Since we're never
570 // reusing scratch textures (in this code path) it would just be
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000571 // wasting time sitting in the cache.
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000572 fResourceCache->makeNonExclusive(texture->getCacheEntry());
573 fResourceCache->deleteResource(texture->getCacheEntry());
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000574 } else {
bsalomondcabb052014-07-21 14:24:01 -0700575 // In this case (there is still a non-cache ref) but we don't really
skia.committer@gmail.comb77f0f42013-10-30 07:01:56 +0000576 // want to readd it to the cache (since it will never be reused).
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000577 // Instead, give up the cache's ref and leave the decision up to
578 // addExistingTextureToCache once its ref count reaches 0. For
579 // this to work we need to leave it in the exclusive list.
commit-bot@chromium.orge49157f2014-05-09 20:46:48 +0000580 texture->impl()->setFlag((GrTextureFlags) GrTextureImpl::kReturnToCache_FlagBit);
robertphillips@google.com9ef04262013-10-29 14:06:15 +0000581 // Give up the cache's ref to the texture
582 texture->unref();
583 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000584 }
robertphillips@google.com50a035d2012-09-07 19:44:33 +0000585}
586
587void GrContext::purgeCache() {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000588 if (NULL != fResourceCache) {
589 fResourceCache->purgeAsNeeded();
robertphillips@google.comeb9b3e12012-09-11 12:50:53 +0000590 }
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000591}
592
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000593bool GrContext::OverbudgetCB(void* data) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000594 SkASSERT(NULL != data);
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000595
596 GrContext* context = reinterpret_cast<GrContext*>(data);
597
598 // Flush the InOrderDrawBuffer to possibly free up some textures
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000599 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000600
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000601 return true;
602}
603
604
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000605GrTexture* GrContext::createUncachedTexture(const GrTextureDesc& descIn,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000606 void* srcData,
607 size_t rowBytes) {
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000608 GrTextureDesc descCopy = descIn;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000609 return fGpu->createTexture(descCopy, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000610}
611
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000612void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
613 fResourceCache->getLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000614}
615
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000616void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
617 fResourceCache->setLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000618}
619
bsalomon@google.com91958362011-06-13 17:58:13 +0000620int GrContext::getMaxTextureSize() const {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000621 return SkTMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride);
bsalomon@google.com91958362011-06-13 17:58:13 +0000622}
623
624int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000625 return fGpu->caps()->maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000626}
627
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000628int GrContext::getMaxSampleCount() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000629 return fGpu->caps()->maxSampleCount();
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000630}
631
bsalomon@google.com27847de2011-02-22 20:59:41 +0000632///////////////////////////////////////////////////////////////////////////////
633
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000634GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) {
635 return fGpu->wrapBackendTexture(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000636}
637
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000638GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
639 return fGpu->wrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000640}
641
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000642///////////////////////////////////////////////////////////////////////////////
643
bsalomon@google.comb8670992012-07-25 21:27:09 +0000644bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000645 int width, int height) const {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000646 const GrDrawTargetCaps* caps = fGpu->caps();
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000647 if (!caps->isConfigTexturable(kIndex_8_GrPixelConfig)) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000648 return false;
649 }
650
tfarinaf9dae782014-06-06 06:35:28 -0700651 bool isPow2 = SkIsPow2(width) && SkIsPow2(height);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000652
653 if (!isPow2) {
bsalomon@google.comb8670992012-07-25 21:27:09 +0000654 bool tiled = NULL != params && params->isTiled();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000655 if (tiled && !caps->npotTextureTileSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000656 return false;
657 }
658 }
659 return true;
660}
661
bsalomon@google.com27847de2011-02-22 20:59:41 +0000662
bsalomon@google.com27847de2011-02-22 20:59:41 +0000663////////////////////////////////////////////////////////////////////////////////
664
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000665void GrContext::clear(const SkIRect* rect,
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000666 const GrColor color,
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000667 bool canIgnoreRect,
bsalomon41ebbdd2014-08-04 08:31:39 -0700668 GrRenderTarget* renderTarget) {
669 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000670 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000671 AutoCheckFlush acf(this);
egdanield78a1682014-07-09 10:41:26 -0700672 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::clear", this);
bsalomon41ebbdd2014-08-04 08:31:39 -0700673 GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW, &are, &acf);
674 if (NULL == target) {
675 return;
676 }
677 target->clear(rect, color, canIgnoreRect, renderTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000678}
679
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000680void GrContext::drawPaint(const GrPaint& origPaint) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000681 // set rect to be big enough to fill the space, but not super-huge, so we
682 // don't overflow fixed-point implementations
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000683 SkRect r;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000684 r.setLTRB(0, 0,
bsalomon@google.com81712882012-11-01 17:12:34 +0000685 SkIntToScalar(getRenderTarget()->width()),
686 SkIntToScalar(getRenderTarget()->height()));
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000687 SkMatrix inverse;
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000688 SkTCopyOnFirstWrite<GrPaint> paint(origPaint);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000689 AutoMatrix am;
egdanield78a1682014-07-09 10:41:26 -0700690 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::drawPaint", this);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000691
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000692 // We attempt to map r by the inverse matrix and draw that. mapRect will
693 // map the four corners and bound them with a new rect. This will not
694 // produce a correct result for some perspective matrices.
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000695 if (!this->getMatrix().hasPerspective()) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000696 if (!fViewMatrix.invert(&inverse)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000697 GrPrintf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000698 return;
699 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000700 inverse.mapRect(&r);
701 } else {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000702 if (!am.setIdentity(this, paint.writable())) {
703 GrPrintf("Could not invert matrix\n");
704 return;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000705 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000706 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000707 // by definition this fills the entire clip, no need for AA
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000708 if (paint->isAntiAlias()) {
709 paint.writable()->setAntiAlias(false);
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000710 }
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000711 this->drawRect(*paint, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000712}
713
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000714#ifdef SK_DEVELOPER
715void GrContext::dumpFontCache() const {
716 fFontCache->dump();
717}
718#endif
719
bsalomon@google.com205d4602011-04-25 12:43:45 +0000720////////////////////////////////////////////////////////////////////////////////
721
bsalomon@google.com27847de2011-02-22 20:59:41 +0000722/* create a triangle strip that strokes the specified triangle. There are 8
723 unique vertices, but we repreat the last 2 to close up. Alternatively we
724 could use an indices array, and then only send 8 verts, but not sure that
725 would be faster.
726 */
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000727static void setStrokeRectStrip(SkPoint verts[10], SkRect rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000728 SkScalar width) {
729 const SkScalar rad = SkScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000730 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000731
732 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
733 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
734 verts[2].set(rect.fRight - rad, rect.fTop + rad);
735 verts[3].set(rect.fRight + rad, rect.fTop - rad);
736 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
737 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
738 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
739 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
740 verts[8] = verts[0];
741 verts[9] = verts[1];
742}
743
bsalomonc30aaa02014-08-13 07:15:29 -0700744static inline bool is_irect(const SkRect& r) {
745 return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
746 SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
747}
748
bsalomon@google.com205d4602011-04-25 12:43:45 +0000749static bool apply_aa_to_rect(GrDrawTarget* target,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000750 const SkRect& rect,
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000751 SkScalar strokeWidth,
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000752 const SkMatrix& combinedMatrix,
bsalomon9c0822a2014-08-11 11:07:48 -0700753 SkRect* devBoundRect) {
754 if (!target->getDrawState().canTweakAlphaForCoverage() &&
755 target->shouldDisableCoverageAAForBlend()) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000756#ifdef SK_DEBUG
bsalomon9c0822a2014-08-11 11:07:48 -0700757 //GrPrintf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000758#endif
bsalomon9c0822a2014-08-11 11:07:48 -0700759 return false;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000760 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000761 const GrDrawState& drawState = target->getDrawState();
762 if (drawState.getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000763 return false;
764 }
765
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000766#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000767 if (strokeWidth >= 0) {
768#endif
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000769 if (!combinedMatrix.preservesAxisAlignment()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000770 return false;
771 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000772
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000773#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000774 } else {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000775 if (!combinedMatrix.preservesRightAngles()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000776 return false;
777 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000778 }
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000779#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000780
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000781 combinedMatrix.mapRect(devBoundRect, rect);
bsalomonc30aaa02014-08-13 07:15:29 -0700782 if (strokeWidth < 0) {
783 return !is_irect(*devBoundRect);
784 }
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000785
bsalomon9c0822a2014-08-11 11:07:48 -0700786 return true;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000787}
788
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000789static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
790 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
791 point.fY >= rect.fTop && point.fY <= rect.fBottom;
792}
793
bsalomon@google.com27847de2011-02-22 20:59:41 +0000794void GrContext::drawRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000795 const SkRect& rect,
bsalomon01c8da12014-08-04 09:21:30 -0700796 const GrStrokeInfo* strokeInfo) {
egdanield58a0ba2014-06-11 10:30:05 -0700797 if (NULL != strokeInfo && strokeInfo->isDashed()) {
798 SkPath path;
799 path.addRect(rect);
800 this->drawPath(paint, path, *strokeInfo);
801 return;
802 }
803
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000804 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000805 AutoCheckFlush acf(this);
806 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700807 if (NULL == target) {
808 return;
809 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000810
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000811 GR_CREATE_TRACE_MARKER("GrContext::drawRect", target);
egdanield58a0ba2014-06-11 10:30:05 -0700812 SkScalar width = NULL == strokeInfo ? -1 : strokeInfo->getStrokeRec().getWidth();
bsalomon01c8da12014-08-04 09:21:30 -0700813 SkMatrix matrix = target->drawState()->getViewMatrix();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000814
815 // Check if this is a full RT draw and can be replaced with a clear. We don't bother checking
816 // cases where the RT is fully inside a stroke.
817 if (width < 0) {
818 SkRect rtRect;
819 target->getDrawState().getRenderTarget()->getBoundsRect(&rtRect);
820 SkRect clipSpaceRTRect = rtRect;
821 bool checkClip = false;
822 if (NULL != this->getClip()) {
823 checkClip = true;
824 clipSpaceRTRect.offset(SkIntToScalar(this->getClip()->fOrigin.fX),
825 SkIntToScalar(this->getClip()->fOrigin.fY));
826 }
827 // Does the clip contain the entire RT?
828 if (!checkClip || target->getClip()->fClipStack->quickContains(clipSpaceRTRect)) {
829 SkMatrix invM;
bsalomon01c8da12014-08-04 09:21:30 -0700830 if (!matrix.invert(&invM)) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000831 return;
832 }
833 // Does the rect bound the RT?
834 SkPoint srcSpaceRTQuad[4];
835 invM.mapRectToQuad(srcSpaceRTQuad, rtRect);
836 if (rect_contains_inclusive(rect, srcSpaceRTQuad[0]) &&
837 rect_contains_inclusive(rect, srcSpaceRTQuad[1]) &&
838 rect_contains_inclusive(rect, srcSpaceRTQuad[2]) &&
839 rect_contains_inclusive(rect, srcSpaceRTQuad[3])) {
840 // Will it blend?
841 GrColor clearColor;
842 if (paint.isOpaqueAndConstantColor(&clearColor)) {
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000843 target->clear(NULL, clearColor, true);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000844 return;
845 }
846 }
847 }
848 }
849
850 SkRect devBoundRect;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000851 bool needAA = paint.isAntiAlias() &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000852 !target->getDrawState().getRenderTarget()->isMultisampled();
bsalomon9c0822a2014-08-11 11:07:48 -0700853 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix, &devBoundRect);
egdanield58a0ba2014-06-11 10:30:05 -0700854
855 const SkStrokeRec& strokeRec = strokeInfo->getStrokeRec();
856
bsalomon@google.com205d4602011-04-25 12:43:45 +0000857 if (doAA) {
bsalomon@google.com137f1342013-05-29 21:27:53 +0000858 GrDrawState::AutoViewMatrixRestore avmr;
859 if (!avmr.setIdentity(target->drawState())) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000860 return;
861 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000862 if (width >= 0) {
commit-bot@chromium.org6006d0f2013-11-06 10:08:21 +0000863 fAARectRenderer->strokeAARect(this->getGpu(), target, rect,
bsalomon01c8da12014-08-04 09:21:30 -0700864 matrix, devBoundRect,
bsalomon9c0822a2014-08-11 11:07:48 -0700865 strokeRec);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000866 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000867 // filled AA rect
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000868 fAARectRenderer->fillAARect(this->getGpu(), target,
bsalomon9c0822a2014-08-11 11:07:48 -0700869 rect, matrix, devBoundRect);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000870 }
871 return;
872 }
873
bsalomon@google.com27847de2011-02-22 20:59:41 +0000874 if (width >= 0) {
875 // TODO: consider making static vertex buffers for these cases.
bsalomon@google.com64386952013-02-08 21:22:44 +0000876 // Hairline could be done by just adding closing vertex to
877 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000878
bsalomon@google.com27847de2011-02-22 20:59:41 +0000879 static const int worstCaseVertCount = 10;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000880 target->drawState()->setDefaultVertexAttribs();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000881 GrDrawTarget::AutoReleaseGeometry geo(target, worstCaseVertCount, 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000882
883 if (!geo.succeeded()) {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000884 GrPrintf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000885 return;
886 }
887
888 GrPrimitiveType primType;
889 int vertCount;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000890 SkPoint* vertex = geo.positions();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000891
892 if (width > 0) {
893 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000894 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000895 setStrokeRectStrip(vertex, rect, width);
896 } else {
897 // hairline
898 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000899 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000900 vertex[0].set(rect.fLeft, rect.fTop);
901 vertex[1].set(rect.fRight, rect.fTop);
902 vertex[2].set(rect.fRight, rect.fBottom);
903 vertex[3].set(rect.fLeft, rect.fBottom);
904 vertex[4].set(rect.fLeft, rect.fTop);
905 }
906
bsalomon@google.com27847de2011-02-22 20:59:41 +0000907 target->drawNonIndexed(primType, 0, vertCount);
908 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000909 // filled BW rect
bsalomon01c8da12014-08-04 09:21:30 -0700910 target->drawSimpleRect(rect);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000911 }
912}
913
914void GrContext::drawRectToRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000915 const SkRect& dstRect,
916 const SkRect& localRect,
bsalomon@google.comc7818882013-03-20 19:19:53 +0000917 const SkMatrix* localMatrix) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000918 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000919 AutoCheckFlush acf(this);
920 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700921 if (NULL == target) {
922 return;
923 }
bsalomon@google.com64386952013-02-08 21:22:44 +0000924
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000925 GR_CREATE_TRACE_MARKER("GrContext::drawRectToRect", target);
926
bsalomon01c8da12014-08-04 09:21:30 -0700927 target->drawRect(dstRect, &localRect, localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000928}
929
robertphillips@google.com42903302013-04-20 12:26:07 +0000930namespace {
931
932extern const GrVertexAttrib gPosUVColorAttribs[] = {
933 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding },
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000934 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding },
935 {kVec4ub_GrVertexAttribType, 2*sizeof(SkPoint), kColor_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000936};
937
938extern const GrVertexAttrib gPosColorAttribs[] = {
939 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000940 {kVec4ub_GrVertexAttribType, sizeof(SkPoint), kColor_GrVertexAttribBinding},
robertphillips@google.com42903302013-04-20 12:26:07 +0000941};
942
943static void set_vertex_attributes(GrDrawState* drawState,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000944 const SkPoint* texCoords,
robertphillips@google.com42903302013-04-20 12:26:07 +0000945 const GrColor* colors,
946 int* colorOffset,
947 int* texOffset) {
948 *texOffset = -1;
949 *colorOffset = -1;
950
951 if (NULL != texCoords && NULL != colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000952 *texOffset = sizeof(SkPoint);
953 *colorOffset = 2*sizeof(SkPoint);
djsollenea81ced2014-08-27 13:07:34 -0700954 drawState->setVertexAttribs<gPosUVColorAttribs>(3);
robertphillips@google.com42903302013-04-20 12:26:07 +0000955 } else if (NULL != texCoords) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000956 *texOffset = sizeof(SkPoint);
djsollenea81ced2014-08-27 13:07:34 -0700957 drawState->setVertexAttribs<gPosUVColorAttribs>(2);
robertphillips@google.com42903302013-04-20 12:26:07 +0000958 } else if (NULL != colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000959 *colorOffset = sizeof(SkPoint);
djsollenea81ced2014-08-27 13:07:34 -0700960 drawState->setVertexAttribs<gPosColorAttribs>(2);
robertphillips@google.com42903302013-04-20 12:26:07 +0000961 } else {
djsollenea81ced2014-08-27 13:07:34 -0700962 drawState->setVertexAttribs<gPosColorAttribs>(1);
robertphillips@google.com42903302013-04-20 12:26:07 +0000963 }
964}
965
966};
967
bsalomon@google.com27847de2011-02-22 20:59:41 +0000968void GrContext::drawVertices(const GrPaint& paint,
969 GrPrimitiveType primitiveType,
970 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000971 const SkPoint positions[],
972 const SkPoint texCoords[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000973 const GrColor colors[],
974 const uint16_t indices[],
975 int indexCount) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000976 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000977 AutoCheckFlush acf(this);
commit-bot@chromium.org5a567932014-01-08 21:26:09 +0000978 GrDrawTarget::AutoReleaseGeometry geo; // must be inside AutoCheckFlush scope
979
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000980 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700981 if (NULL == target) {
982 return;
983 }
egdaniele61c4112014-06-12 10:24:21 -0700984 GrDrawState* drawState = target->drawState();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000985
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000986 GR_CREATE_TRACE_MARKER("GrContext::drawVertices", target);
987
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000988 int colorOffset = -1, texOffset = -1;
robertphillips@google.com42903302013-04-20 12:26:07 +0000989 set_vertex_attributes(drawState, texCoords, colors, &colorOffset, &texOffset);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000990
djsollenea81ced2014-08-27 13:07:34 -0700991 size_t vertexSize = drawState->getVertexSize();
992 if (sizeof(SkPoint) != vertexSize) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000993 if (!geo.set(target, vertexCount, 0)) {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000994 GrPrintf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000995 return;
996 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000997 void* curVertex = geo.vertices();
998
999 for (int i = 0; i < vertexCount; ++i) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001000 *((SkPoint*)curVertex) = positions[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +00001001
jvanverth@google.com9b855c72013-03-01 18:21:22 +00001002 if (texOffset >= 0) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001003 *(SkPoint*)((intptr_t)curVertex + texOffset) = texCoords[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +00001004 }
jvanverth@google.com9b855c72013-03-01 18:21:22 +00001005 if (colorOffset >= 0) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001006 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
1007 }
djsollenea81ced2014-08-27 13:07:34 -07001008 curVertex = (void*)((intptr_t)curVertex + vertexSize);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001009 }
1010 } else {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +00001011 target->setVertexSourceToArray(positions, vertexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001012 }
1013
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001014 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +00001015 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon@google.coma47a48d2011-04-26 20:22:11 +00001016
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001017 if (NULL != indices) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001018 target->setIndexSourceToArray(indices, indexCount);
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001019 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com0406b9e2013-04-02 21:00:15 +00001020 target->resetIndexSource();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001021 } else {
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001022 target->drawNonIndexed(primitiveType, 0, vertexCount);
1023 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001024}
1025
bsalomon@google.com06afe7b2011-04-26 15:31:40 +00001026///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com93c96602012-04-27 13:05:21 +00001027
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001028void GrContext::drawRRect(const GrPaint& paint,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001029 const SkRRect& rrect,
egdanield58a0ba2014-06-11 10:30:05 -07001030 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001031 if (rrect.isEmpty()) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001032 return;
1033 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001034
egdanield58a0ba2014-06-11 10:30:05 -07001035 if (strokeInfo.isDashed()) {
1036 SkPath path;
1037 path.addRRect(rrect);
1038 this->drawPath(paint, path, strokeInfo);
1039 return;
1040 }
1041
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001042 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001043 AutoCheckFlush acf(this);
1044 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001045 if (NULL == target) {
1046 return;
1047 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001048
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001049 GR_CREATE_TRACE_MARKER("GrContext::drawRRect", target);
1050
egdanield58a0ba2014-06-11 10:30:05 -07001051 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1052
1053 if (!fOvalRenderer->drawRRect(target, this, paint.isAntiAlias(), rrect, strokeRec)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001054 SkPath path;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001055 path.addRRect(rrect);
egdanield58a0ba2014-06-11 10:30:05 -07001056 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001057 }
1058}
1059
1060///////////////////////////////////////////////////////////////////////////////
1061
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001062void GrContext::drawDRRect(const GrPaint& paint,
1063 const SkRRect& outer,
1064 const SkRRect& inner) {
1065 if (outer.isEmpty()) {
1066 return;
1067 }
1068
1069 AutoRestoreEffects are;
1070 AutoCheckFlush acf(this);
1071 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
1072
1073 GR_CREATE_TRACE_MARKER("GrContext::drawDRRect", target);
1074
1075 if (!fOvalRenderer->drawDRRect(target, this, paint.isAntiAlias(), outer, inner)) {
1076 SkPath path;
1077 path.addRRect(inner);
1078 path.addRRect(outer);
1079 path.setFillType(SkPath::kEvenOdd_FillType);
1080
egdanield58a0ba2014-06-11 10:30:05 -07001081 GrStrokeInfo fillRec(SkStrokeRec::kFill_InitStyle);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001082 this->internalDrawPath(target, paint.isAntiAlias(), path, fillRec);
1083 }
1084}
1085
1086///////////////////////////////////////////////////////////////////////////////
1087
bsalomon@google.com93c96602012-04-27 13:05:21 +00001088void GrContext::drawOval(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001089 const SkRect& oval,
egdanield58a0ba2014-06-11 10:30:05 -07001090 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001091 if (oval.isEmpty()) {
1092 return;
1093 }
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001094
egdanield58a0ba2014-06-11 10:30:05 -07001095 if (strokeInfo.isDashed()) {
1096 SkPath path;
1097 path.addOval(oval);
1098 this->drawPath(paint, path, strokeInfo);
1099 return;
1100 }
1101
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001102 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001103 AutoCheckFlush acf(this);
1104 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001105 if (NULL == target) {
1106 return;
1107 }
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001108
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001109 GR_CREATE_TRACE_MARKER("GrContext::drawOval", target);
1110
egdanield58a0ba2014-06-11 10:30:05 -07001111 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1112
1113
1114 if (!fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), oval, strokeRec)) {
bsalomon@google.com93c96602012-04-27 13:05:21 +00001115 SkPath path;
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001116 path.addOval(oval);
egdanield58a0ba2014-06-11 10:30:05 -07001117 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
skia.committer@gmail.com98ded842013-01-23 07:06:17 +00001118 }
bsalomon@google.com150d2842012-01-12 20:19:56 +00001119}
bsalomon@google.com27847de2011-02-22 20:59:41 +00001120
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001121// Can 'path' be drawn as a pair of filled nested rectangles?
1122static bool is_nested_rects(GrDrawTarget* target,
1123 const SkPath& path,
1124 const SkStrokeRec& stroke,
bsalomon9c0822a2014-08-11 11:07:48 -07001125 SkRect rects[2]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001126 SkASSERT(stroke.isFillStyle());
1127
1128 if (path.isInverseFillType()) {
1129 return false;
1130 }
1131
1132 const GrDrawState& drawState = target->getDrawState();
1133
1134 // TODO: this restriction could be lifted if we were willing to apply
1135 // the matrix to all the points individually rather than just to the rect
1136 if (!drawState.getViewMatrix().preservesAxisAlignment()) {
1137 return false;
1138 }
1139
bsalomon9c0822a2014-08-11 11:07:48 -07001140 if (!target->getDrawState().canTweakAlphaForCoverage() &&
1141 target->shouldDisableCoverageAAForBlend()) {
1142 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001143 }
1144
1145 SkPath::Direction dirs[2];
1146 if (!path.isNestedRects(rects, dirs)) {
1147 return false;
1148 }
1149
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001150 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001151 // The two rects need to be wound opposite to each other
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001152 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001153 }
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001154
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001155 // Right now, nested rects where the margin is not the same width
1156 // all around do not render correctly
1157 const SkScalar* outer = rects[0].asScalars();
1158 const SkScalar* inner = rects[1].asScalars();
1159
1160 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
1161 for (int i = 1; i < 4; ++i) {
1162 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
1163 if (!SkScalarNearlyEqual(margin, temp)) {
1164 return false;
1165 }
1166 }
1167
1168 return true;
1169}
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001170
egdanield58a0ba2014-06-11 10:30:05 -07001171void GrContext::drawPath(const GrPaint& paint, const SkPath& path, const GrStrokeInfo& strokeInfo) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001172
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001173 if (path.isEmpty()) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001174 if (path.isInverseFillType()) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001175 this->drawPaint(paint);
1176 }
1177 return;
1178 }
1179
egdanield58a0ba2014-06-11 10:30:05 -07001180 if (strokeInfo.isDashed()) {
egdaniele61c4112014-06-12 10:24:21 -07001181 SkPoint pts[2];
1182 if (path.isLine(pts)) {
1183 AutoRestoreEffects are;
1184 AutoCheckFlush acf(this);
1185 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001186 if (NULL == target) {
1187 return;
1188 }
egdaniele61c4112014-06-12 10:24:21 -07001189 GrDrawState* drawState = target->drawState();
1190
1191 SkMatrix origViewMatrix = drawState->getViewMatrix();
1192 GrDrawState::AutoViewMatrixRestore avmr;
1193 if (avmr.setIdentity(target->drawState())) {
1194 if (GrDashingEffect::DrawDashLine(pts, paint, strokeInfo, fGpu, target,
1195 origViewMatrix)) {
1196 return;
1197 }
1198 }
1199 }
1200
1201 // Filter dashed path into new path with the dashing applied
egdanield58a0ba2014-06-11 10:30:05 -07001202 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
1203 SkTLazy<SkPath> effectPath;
1204 GrStrokeInfo newStrokeInfo(strokeInfo, false);
1205 SkStrokeRec* stroke = newStrokeInfo.getStrokeRecPtr();
1206 if (SkDashPath::FilterDashPath(effectPath.init(), path, stroke, NULL, info)) {
1207 this->drawPath(paint, *effectPath.get(), newStrokeInfo);
1208 return;
1209 }
1210
1211 this->drawPath(paint, path, newStrokeInfo);
1212 return;
1213 }
1214
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001215 // Note that internalDrawPath may sw-rasterize the path into a scratch texture.
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001216 // Scratch textures can be recycled after they are returned to the texture
1217 // cache. This presents a potential hazard for buffered drawing. However,
1218 // the writePixels that uploads to the scratch will perform a flush so we're
1219 // OK.
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001220 AutoRestoreEffects are;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001221 AutoCheckFlush acf(this);
1222 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001223 if (NULL == target) {
1224 return;
1225 }
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001226 GrDrawState* drawState = target->drawState();
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001227
egdaniel93a37bc2014-07-21 13:47:57 -07001228 GR_CREATE_TRACE_MARKER1("GrContext::drawPath", target, "Is Convex", path.isConvex());
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001229
egdanield58a0ba2014-06-11 10:30:05 -07001230 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1231
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001232 bool useCoverageAA = paint.isAntiAlias() && !drawState->getRenderTarget()->isMultisampled();
1233
egdanield58a0ba2014-06-11 10:30:05 -07001234 if (useCoverageAA && strokeRec.getWidth() < 0 && !path.isConvex()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001235 // Concave AA paths are expensive - try to avoid them for special cases
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001236 SkRect rects[2];
1237
bsalomon9c0822a2014-08-11 11:07:48 -07001238 if (is_nested_rects(target, path, strokeRec, rects)) {
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001239 SkMatrix origViewMatrix = drawState->getViewMatrix();
bsalomon@google.com137f1342013-05-29 21:27:53 +00001240 GrDrawState::AutoViewMatrixRestore avmr;
1241 if (!avmr.setIdentity(target->drawState())) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001242 return;
1243 }
1244
bsalomon9c0822a2014-08-11 11:07:48 -07001245 fAARectRenderer->fillAANestedRects(this->getGpu(), target, rects, origViewMatrix);
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001246 return;
1247 }
1248 }
1249
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001250 SkRect ovalRect;
1251 bool isOval = path.isOval(&ovalRect);
1252
skia.committer@gmail.com7e328512013-03-23 07:01:28 +00001253 if (!isOval || path.isInverseFillType()
egdanield58a0ba2014-06-11 10:30:05 -07001254 || !fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), ovalRect, strokeRec)) {
1255 this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo);
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001256 }
1257}
1258
bsalomon@google.com1b20a102013-11-08 14:42:56 +00001259void GrContext::internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
egdanield58a0ba2014-06-11 10:30:05 -07001260 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001261 SkASSERT(!path.isEmpty());
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001262
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001263 GR_CREATE_TRACE_MARKER("GrContext::internalDrawPath", target);
1264
1265
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001266 // An Assumption here is that path renderer would use some form of tweaking
1267 // the src color (either the input alpha or in the frag shader) to implement
1268 // aa. If we have some future driver-mojo path AA that can do the right
1269 // thing WRT to the blend then we'll need some query on the PR.
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001270 bool useCoverageAA = useAA &&
1271 !target->getDrawState().getRenderTarget()->isMultisampled() &&
1272 !target->shouldDisableCoverageAAForBlend();
bsalomon@google.com289533a2011-10-27 12:34:25 +00001273
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001274
1275 GrPathRendererChain::DrawType type =
1276 useCoverageAA ? GrPathRendererChain::kColorAntiAlias_DrawType :
robertphillips@google.come79f3202014-02-11 16:30:21 +00001277 GrPathRendererChain::kColor_DrawType;
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001278
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001279 const SkPath* pathPtr = &path;
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001280 SkTLazy<SkPath> tmpPath;
egdanield58a0ba2014-06-11 10:30:05 -07001281 SkTCopyOnFirstWrite<SkStrokeRec> stroke(strokeInfo.getStrokeRec());
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001282
1283 // Try a 1st time without stroking the path and without allowing the SW renderer
robertphillips@google.come79f3202014-02-11 16:30:21 +00001284 GrPathRenderer* pr = this->getPathRenderer(*pathPtr, *stroke, target, false, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001285
robertphillips@google.come79f3202014-02-11 16:30:21 +00001286 if (NULL == pr) {
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001287 if (!GrPathRenderer::IsStrokeHairlineOrEquivalent(*stroke, this->getMatrix(), NULL)) {
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001288 // It didn't work the 1st time, so try again with the stroked path
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001289 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1290 pathPtr = tmpPath.get();
1291 stroke.writable()->setFillStyle();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001292 if (pathPtr->isEmpty()) {
1293 return;
1294 }
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001295 }
1296 }
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001297
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001298 // This time, allow SW renderer
robertphillips@google.come79f3202014-02-11 16:30:21 +00001299 pr = this->getPathRenderer(*pathPtr, *stroke, target, true, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001300 }
1301
robertphillips@google.come79f3202014-02-11 16:30:21 +00001302 if (NULL == pr) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001303#ifdef SK_DEBUG
bsalomon@google.com30085192011-08-19 15:42:31 +00001304 GrPrintf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001305#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001306 return;
1307 }
1308
robertphillips@google.come79f3202014-02-11 16:30:21 +00001309 pr->drawPath(*pathPtr, *stroke, target, useCoverageAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001310}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001311
bsalomon@google.com27847de2011-02-22 20:59:41 +00001312////////////////////////////////////////////////////////////////////////////////
1313
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001314void GrContext::flush(int flagsBitfield) {
robertphillips@google.come7db8d62013-07-04 11:48:52 +00001315 if (NULL == fDrawBuffer) {
1316 return;
1317 }
1318
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001319 if (kDiscard_FlushBit & flagsBitfield) {
1320 fDrawBuffer->reset();
1321 } else {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001322 fDrawBuffer->flush();
junov@google.com53a55842011-06-08 22:55:10 +00001323 }
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001324 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001325}
1326
bsalomon@google.com9c680582013-02-06 18:17:50 +00001327bool GrContext::writeTexturePixels(GrTexture* texture,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001328 int left, int top, int width, int height,
1329 GrPixelConfig config, const void* buffer, size_t rowBytes,
1330 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001331 ASSERT_OWNED_RESOURCE(texture);
1332
bsalomon@google.com9c680582013-02-06 18:17:50 +00001333 if ((kUnpremul_PixelOpsFlag & flags) || !fGpu->canWriteTexturePixels(texture, config)) {
1334 if (NULL != texture->asRenderTarget()) {
1335 return this->writeRenderTargetPixels(texture->asRenderTarget(),
1336 left, top, width, height,
1337 config, buffer, rowBytes, flags);
1338 } else {
1339 return false;
1340 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001341 }
bsalomon@google.com9c680582013-02-06 18:17:50 +00001342
bsalomon@google.com6f379512011-11-16 20:36:03 +00001343 if (!(kDontFlush_PixelOpsFlag & flags)) {
1344 this->flush();
1345 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001346
bsalomon@google.com9c680582013-02-06 18:17:50 +00001347 return fGpu->writeTexturePixels(texture, left, top, width, height,
1348 config, buffer, rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +00001349}
1350
bsalomon@google.com0342a852012-08-20 19:22:38 +00001351bool GrContext::readTexturePixels(GrTexture* texture,
1352 int left, int top, int width, int height,
1353 GrPixelConfig config, void* buffer, size_t rowBytes,
1354 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001355 ASSERT_OWNED_RESOURCE(texture);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001356
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001357 GrRenderTarget* target = texture->asRenderTarget();
1358 if (NULL != target) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00001359 return this->readRenderTargetPixels(target,
1360 left, top, width, height,
1361 config, buffer, rowBytes,
1362 flags);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001363 } else {
commit-bot@chromium.org3f80dd52013-10-23 15:32:39 +00001364 // TODO: make this more efficient for cases where we're reading the entire
1365 // texture, i.e., use GetTexImage() instead
1366
1367 // create scratch rendertarget and read from that
1368 GrAutoScratchTexture ast;
1369 GrTextureDesc desc;
1370 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1371 desc.fWidth = width;
1372 desc.fHeight = height;
1373 desc.fConfig = config;
1374 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
1375 ast.set(this, desc, kExact_ScratchTexMatch);
1376 GrTexture* dst = ast.texture();
1377 if (NULL != dst && NULL != (target = dst->asRenderTarget())) {
1378 this->copyTexture(texture, target, NULL);
1379 return this->readRenderTargetPixels(target,
1380 left, top, width, height,
1381 config, buffer, rowBytes,
1382 flags);
1383 }
skia.committer@gmail.com583b18a2013-10-24 07:01:59 +00001384
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001385 return false;
1386 }
1387}
1388
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001389#include "SkConfig8888.h"
1390
reed@google.com7111d462014-03-25 16:20:24 +00001391// toggles between RGBA and BGRA
1392static SkColorType toggle_colortype32(SkColorType ct) {
1393 if (kRGBA_8888_SkColorType == ct) {
1394 return kBGRA_8888_SkColorType;
1395 } else {
1396 SkASSERT(kBGRA_8888_SkColorType == ct);
1397 return kRGBA_8888_SkColorType;
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001398 }
1399}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001400
bsalomon@google.com0342a852012-08-20 19:22:38 +00001401bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1402 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001403 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001404 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001405 ASSERT_OWNED_RESOURCE(target);
1406
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001407 if (NULL == target) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001408 target = fRenderTarget.get();
bsalomon@google.comc4364992011-11-07 15:54:49 +00001409 if (NULL == target) {
1410 return false;
1411 }
1412 }
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001413
bsalomon@google.com6f379512011-11-16 20:36:03 +00001414 if (!(kDontFlush_PixelOpsFlag & flags)) {
1415 this->flush();
1416 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001417
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001418 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001419
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001420 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1421 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1422 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001423 width, height, dstConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001424 rowBytes);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001425 // We ignore the preferred config if it is different than our config unless it is an R/B swap.
1426 // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped
1427 // config. Then we will call readPixels on the scratch with the swapped config. The swaps during
1428 // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from
1429 // dstConfig.
1430 GrPixelConfig readConfig = dstConfig;
1431 bool swapRAndB = false;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001432 if (GrPixelConfigSwapRAndB(dstConfig) ==
1433 fGpu->preferredReadPixelsConfig(dstConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001434 readConfig = GrPixelConfigSwapRAndB(readConfig);
1435 swapRAndB = true;
1436 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001437
bsalomon@google.com0342a852012-08-20 19:22:38 +00001438 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001439
bsalomon@google.com9c680582013-02-06 18:17:50 +00001440 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001441 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001442 return false;
1443 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001444
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001445 // If the src is a texture and we would have to do conversions after read pixels, we instead
1446 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1447 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1448 // on the read back pixels.
1449 GrTexture* src = target->asTexture();
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001450 GrAutoScratchTexture ast;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001451 if (NULL != src && (swapRAndB || unpremul || flipY)) {
1452 // Make the scratch a render target because we don't have a robust readTexturePixels as of
1453 // yet. It calls this function.
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001454 GrTextureDesc desc;
1455 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1456 desc.fWidth = width;
1457 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001458 desc.fConfig = readConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001459 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001460
bsalomon@google.com9c680582013-02-06 18:17:50 +00001461 // 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 +00001462 // match the passed rect. However, if we see many different size rectangles we will trash
1463 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1464 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001465 ScratchTexMatch match = kApprox_ScratchTexMatch;
1466 if (0 == left &&
1467 0 == top &&
1468 target->width() == width &&
1469 target->height() == height &&
1470 fGpu->fullReadPixelsIsFasterThanPartial()) {
1471 match = kExact_ScratchTexMatch;
1472 }
1473 ast.set(this, desc, match);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001474 GrTexture* texture = ast.texture();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001475 if (texture) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001476 // compute a matrix to perform the draw
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001477 SkMatrix textureMatrix;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001478 textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001479 textureMatrix.postIDiv(src->width(), src->height());
1480
bsalomon83d081a2014-07-08 09:56:10 -07001481 SkAutoTUnref<const GrEffect> effect;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001482 if (unpremul) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001483 effect.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix));
1484 if (NULL != effect) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001485 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001486 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001487 }
1488 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1489 // there is no longer any point to using the scratch.
bsalomon@google.comadc65362013-01-28 14:26:09 +00001490 if (NULL != effect || flipY || swapRAndB) {
1491 if (!effect) {
1492 effect.reset(GrConfigConversionEffect::Create(
1493 src,
1494 swapRAndB,
1495 GrConfigConversionEffect::kNone_PMConversion,
1496 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001497 }
1498 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001499
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001500 // We protect the existing geometry here since it may not be
1501 // clear to the caller that a draw operation (i.e., drawSimpleRect)
1502 // can be invoked in this method
1503 GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001504 GrDrawState* drawState = fGpu->drawState();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001505 SkASSERT(effect);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001506 drawState->addColorEffect(effect);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001507
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001508 drawState->setRenderTarget(texture->asRenderTarget());
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001509 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
bsalomon01c8da12014-08-04 09:21:30 -07001510 fGpu->drawSimpleRect(rect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001511 // we want to read back from the scratch's origin
1512 left = 0;
1513 top = 0;
1514 target = texture->asRenderTarget();
1515 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001516 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001517 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001518 if (!fGpu->readPixels(target,
1519 left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001520 readConfig, buffer, rowBytes)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001521 return false;
1522 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001523 // Perform any conversions we weren't able to perform using a scratch texture.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001524 if (unpremul || swapRAndB) {
reed@google.com7111d462014-03-25 16:20:24 +00001525 SkDstPixelInfo dstPI;
1526 if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) {
1527 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001528 }
reed@google.com7111d462014-03-25 16:20:24 +00001529 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1530 dstPI.fPixels = buffer;
1531 dstPI.fRowBytes = rowBytes;
1532
1533 SkSrcPixelInfo srcPI;
1534 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1535 srcPI.fAlphaType = kPremul_SkAlphaType;
1536 srcPI.fPixels = buffer;
1537 srcPI.fRowBytes = rowBytes;
1538
1539 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001540 }
1541 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001542}
1543
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001544void GrContext::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001545 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001546 ASSERT_OWNED_RESOURCE(target);
1547 // In the future we may track whether there are any pending draws to this
1548 // target. We don't today so we always perform a flush. We don't promise
1549 // this to our clients, though.
1550 this->flush();
bsalomon41ebbdd2014-08-04 08:31:39 -07001551 if (NULL != fGpu) {
1552 fGpu->resolveRenderTarget(target);
1553 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001554}
1555
bsalomon41ebbdd2014-08-04 08:31:39 -07001556void GrContext::discardRenderTarget(GrRenderTarget* renderTarget) {
1557 SkASSERT(renderTarget);
1558 ASSERT_OWNED_RESOURCE(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001559 AutoRestoreEffects are;
1560 AutoCheckFlush acf(this);
bsalomon41ebbdd2014-08-04 08:31:39 -07001561 GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW, &are, &acf);
1562 if (NULL == target) {
1563 return;
1564 }
1565 target->discard(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001566}
1567
scroggo@google.coma2a31922012-12-07 19:14:45 +00001568void GrContext::copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001569 if (NULL == src || NULL == dst) {
1570 return;
1571 }
1572 ASSERT_OWNED_RESOURCE(src);
1573
twiz@google.com1ac87ff2012-04-27 19:39:33 +00001574 // Writes pending to the source texture are not tracked, so a flush
1575 // is required to ensure that the copy captures the most recent contents
bsalomon@google.comadc65362013-01-28 14:26:09 +00001576 // of the source texture. See similar behavior in
twiz@google.com1ac87ff2012-04-27 19:39:33 +00001577 // GrContext::resolveRenderTarget.
1578 this->flush();
1579
bsalomon@google.com873ea0c2012-03-30 15:55:32 +00001580 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001581 GrDrawState* drawState = fGpu->drawState();
1582 drawState->setRenderTarget(dst);
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001583 SkMatrix sampleM;
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001584 sampleM.setIDiv(src->width(), src->height());
scroggo@google.coma2a31922012-12-07 19:14:45 +00001585 SkIRect srcRect = SkIRect::MakeWH(dst->width(), dst->height());
1586 if (NULL != topLeft) {
1587 srcRect.offset(*topLeft);
1588 }
1589 SkIRect srcBounds = SkIRect::MakeWH(src->width(), src->height());
1590 if (!srcRect.intersect(srcBounds)) {
1591 return;
1592 }
1593 sampleM.preTranslate(SkIntToScalar(srcRect.fLeft), SkIntToScalar(srcRect.fTop));
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001594 drawState->addColorTextureEffect(src, sampleM);
scroggo@google.coma2a31922012-12-07 19:14:45 +00001595 SkRect dstR = SkRect::MakeWH(SkIntToScalar(srcRect.width()), SkIntToScalar(srcRect.height()));
bsalomon01c8da12014-08-04 09:21:30 -07001596 fGpu->drawSimpleRect(dstR);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001597}
1598
bsalomon@google.com9c680582013-02-06 18:17:50 +00001599bool GrContext::writeRenderTargetPixels(GrRenderTarget* target,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001600 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001601 GrPixelConfig srcConfig,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001602 const void* buffer,
1603 size_t rowBytes,
1604 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001605 ASSERT_OWNED_RESOURCE(target);
bsalomon@google.com6f379512011-11-16 20:36:03 +00001606
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001607 if (NULL == target) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001608 target = fRenderTarget.get();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001609 if (NULL == target) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001610 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +00001611 }
1612 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001613
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001614 // TODO: when underlying api has a direct way to do this we should use it (e.g. glDrawPixels on
1615 // desktop GL).
1616
1617 // We will always call some form of writeTexturePixels and we will pass our flags on to it.
1618 // Thus, we don't perform a flush here since that call will do it (if the kNoFlush flag isn't
1619 // set.)
bsalomon@google.com27847de2011-02-22 20:59:41 +00001620
bsalomon@google.com0342a852012-08-20 19:22:38 +00001621 // If the RT is also a texture and we don't have to premultiply then take the texture path.
1622 // We expect to be at least as fast or faster since it doesn't use an intermediate texture as
1623 // we do below.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001624
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001625#if !defined(SK_BUILD_FOR_MAC)
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001626 // At least some drivers on the Mac get confused when glTexImage2D is called on a texture
1627 // attached to an FBO. The FBO still sees the old image. TODO: determine what OS versions and/or
1628 // HW is affected.
bsalomon@google.com9c680582013-02-06 18:17:50 +00001629 if (NULL != target->asTexture() && !(kUnpremul_PixelOpsFlag & flags) &&
1630 fGpu->canWriteTexturePixels(target->asTexture(), srcConfig)) {
1631 return this->writeTexturePixels(target->asTexture(),
1632 left, top, width, height,
1633 srcConfig, buffer, rowBytes, flags);
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001634 }
1635#endif
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001636
bsalomon@google.com9c680582013-02-06 18:17:50 +00001637 // We ignore the preferred config unless it is a R/B swap of the src config. In that case
1638 // we will upload the original src data to a scratch texture but we will spoof it as the swapped
1639 // config. This scratch will then have R and B swapped. We correct for this by swapping again
1640 // when drawing the scratch to the dst using a conversion effect.
1641 bool swapRAndB = false;
1642 GrPixelConfig writeConfig = srcConfig;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001643 if (GrPixelConfigSwapRAndB(srcConfig) ==
1644 fGpu->preferredWritePixelsConfig(srcConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001645 writeConfig = GrPixelConfigSwapRAndB(srcConfig);
1646 swapRAndB = true;
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001647 }
1648
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001649 GrTextureDesc desc;
1650 desc.fWidth = width;
1651 desc.fHeight = height;
bsalomon@google.com9c680582013-02-06 18:17:50 +00001652 desc.fConfig = writeConfig;
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001653 GrAutoScratchTexture ast(this, desc);
1654 GrTexture* texture = ast.texture();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001655 if (NULL == texture) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001656 return false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001657 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001658
bsalomon83d081a2014-07-08 09:56:10 -07001659 SkAutoTUnref<const GrEffect> effect;
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001660 SkMatrix textureMatrix;
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001661 textureMatrix.setIDiv(texture->width(), texture->height());
1662
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001663 // allocate a tmp buffer and sw convert the pixels to premul
1664 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1665
1666 if (kUnpremul_PixelOpsFlag & flags) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001667 if (!GrPixelConfigIs8888(srcConfig)) {
1668 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001669 }
bsalomon@google.comadc65362013-01-28 14:26:09 +00001670 effect.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix));
bsalomon@google.com9c680582013-02-06 18:17:50 +00001671 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
bsalomon@google.comadc65362013-01-28 14:26:09 +00001672 if (NULL == effect) {
reed@google.com7111d462014-03-25 16:20:24 +00001673 SkSrcPixelInfo srcPI;
1674 if (!GrPixelConfig2ColorType(srcConfig, &srcPI.fColorType)) {
1675 return false;
1676 }
1677 srcPI.fAlphaType = kUnpremul_SkAlphaType;
1678 srcPI.fPixels = buffer;
1679 srcPI.fRowBytes = rowBytes;
1680
commit-bot@chromium.org231f6b82014-03-25 13:38:44 +00001681 tmpPixels.reset(width * height);
reed@google.com7111d462014-03-25 16:20:24 +00001682
1683 SkDstPixelInfo dstPI;
1684 dstPI.fColorType = srcPI.fColorType;
1685 dstPI.fAlphaType = kPremul_SkAlphaType;
1686 dstPI.fPixels = tmpPixels.get();
1687 dstPI.fRowBytes = 4 * width;
1688
1689 if (!srcPI.convertPixelsTo(&dstPI, width, height)) {
1690 return false;
1691 }
1692
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001693 buffer = tmpPixels.get();
1694 rowBytes = 4 * width;
1695 }
1696 }
bsalomon@google.comadc65362013-01-28 14:26:09 +00001697 if (NULL == effect) {
1698 effect.reset(GrConfigConversionEffect::Create(texture,
1699 swapRAndB,
1700 GrConfigConversionEffect::kNone_PMConversion,
1701 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001702 }
1703
bsalomon@google.com9c680582013-02-06 18:17:50 +00001704 if (!this->writeTexturePixels(texture,
1705 0, 0, width, height,
1706 writeConfig, buffer, rowBytes,
1707 flags & ~kUnpremul_PixelOpsFlag)) {
1708 return false;
1709 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001710
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001711 // writeRenderTargetPixels can be called in the midst of drawing another
skia.committer@gmail.com0c23faf2013-03-03 07:16:29 +00001712 // object (e.g., when uploading a SW path rendering to the gpu while
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001713 // drawing a rect) so preserve the current geometry.
bsalomon@google.com137f1342013-05-29 21:27:53 +00001714 SkMatrix matrix;
1715 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
1716 GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit, &matrix);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001717 GrDrawState* drawState = fGpu->drawState();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001718 SkASSERT(effect);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001719 drawState->addColorEffect(effect);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001720
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001721 drawState->setRenderTarget(target);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001722
bsalomon01c8da12014-08-04 09:21:30 -07001723 fGpu->drawSimpleRect(SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)));
bsalomon@google.com9c680582013-02-06 18:17:50 +00001724 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001725}
1726////////////////////////////////////////////////////////////////////////////////
1727
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001728GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint,
1729 BufferedDraw buffered,
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001730 AutoRestoreEffects* are,
1731 AutoCheckFlush* acf) {
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001732 // All users of this draw state should be freeing up all effects when they're done.
1733 // Otherwise effects that own resources may keep those resources alive indefinitely.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001734 SkASSERT(0 == fDrawState->numColorStages() && 0 == fDrawState->numCoverageStages());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001735
bsalomon41ebbdd2014-08-04 08:31:39 -07001736 if (NULL == fGpu) {
1737 return NULL;
1738 }
1739
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001740 if (kNo_BufferedDraw == buffered && kYes_BufferedDraw == fLastDrawWasBuffered) {
robertphillips@google.com1267fbd2013-07-03 18:37:27 +00001741 fDrawBuffer->flush();
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001742 fLastDrawWasBuffered = kNo_BufferedDraw;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001743 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001744 ASSERT_OWNED_RESOURCE(fRenderTarget.get());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001745 if (NULL != paint) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001746 SkASSERT(NULL != are);
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001747 SkASSERT(NULL != acf);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001748 are->set(fDrawState);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001749 fDrawState->setFromPaint(*paint, fViewMatrix, fRenderTarget.get());
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001750#if GR_DEBUG_PARTIAL_COVERAGE_CHECK
1751 if ((paint->hasMask() || 0xff != paint->fCoverage) &&
bsalomon62c447d2014-08-08 08:08:50 -07001752 !fDrawState->couldApplyCoverage(fGpu->caps())) {
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001753 GrPrintf("Partial pixel coverage will be incorrectly blended.\n");
1754 }
1755#endif
bsalomon9c0822a2014-08-11 11:07:48 -07001756 // Clear any vertex attributes configured for the previous use of the
1757 // GrDrawState which can effect which blend optimizations are in effect.
1758 fDrawState->setDefaultVertexAttribs();
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001759 } else {
bsalomon@google.com137f1342013-05-29 21:27:53 +00001760 fDrawState->reset(fViewMatrix);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001761 fDrawState->setRenderTarget(fRenderTarget.get());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001762 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001763 GrDrawTarget* target;
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001764 if (kYes_BufferedDraw == buffered) {
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001765 fLastDrawWasBuffered = kYes_BufferedDraw;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001766 target = fDrawBuffer;
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001767 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001768 SkASSERT(kNo_BufferedDraw == buffered);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001769 fLastDrawWasBuffered = kNo_BufferedDraw;
1770 target = fGpu;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001771 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001772 fDrawState->setState(GrDrawState::kClip_StateBit, NULL != fClip &&
1773 !fClip->fClipStack->isWideOpen());
1774 target->setClip(fClip);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001775 SkASSERT(fDrawState == target->drawState());
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001776 return target;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001777}
1778
robertphillips@google.com72176b22012-05-23 13:19:12 +00001779/*
1780 * This method finds a path renderer that can draw the specified path on
1781 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001782 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001783 * can be individually allowed/disallowed via the "allowSW" boolean.
1784 */
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001785GrPathRenderer* GrContext::getPathRenderer(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001786 const SkStrokeRec& stroke,
bsalomon@google.comc2099d22012-03-02 21:26:50 +00001787 const GrDrawTarget* target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001788 bool allowSW,
1789 GrPathRendererChain::DrawType drawType,
1790 GrPathRendererChain::StencilSupport* stencilSupport) {
1791
bsalomon@google.com30085192011-08-19 15:42:31 +00001792 if (NULL == fPathRendererChain) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001793 fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this));
bsalomon@google.com30085192011-08-19 15:42:31 +00001794 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001795
sugoi@google.com12b4e272012-12-06 20:13:11 +00001796 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path,
1797 stroke,
robertphillips@google.com72176b22012-05-23 13:19:12 +00001798 target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001799 drawType,
1800 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +00001801
1802 if (NULL == pr && allowSW) {
1803 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001804 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001805 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001806 pr = fSoftwarePathRenderer;
1807 }
1808
1809 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001810}
1811
bsalomon@google.com27847de2011-02-22 20:59:41 +00001812////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00001813bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
1814 return fGpu->caps()->isConfigRenderable(config, withMSAA);
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001815}
1816
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +00001817int GrContext::getRecommendedSampleCount(GrPixelConfig config,
1818 SkScalar dpi) const {
1819 if (!this->isConfigRenderable(config, true)) {
1820 return 0;
1821 }
1822 int chosenSampleCount = 0;
1823 if (fGpu->caps()->pathRenderingSupport()) {
1824 if (dpi >= 250.0f) {
1825 chosenSampleCount = 4;
1826 } else {
1827 chosenSampleCount = 16;
1828 }
1829 }
1830 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
1831 chosenSampleCount : 0;
1832}
1833
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001834void GrContext::setupDrawBuffer() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001835 SkASSERT(NULL == fDrawBuffer);
1836 SkASSERT(NULL == fDrawBufferVBAllocPool);
1837 SkASSERT(NULL == fDrawBufferIBAllocPool);
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001838
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001839 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001840 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001841 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001842 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001843 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001844 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001845 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001846 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001847
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001848 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001849 fDrawBufferVBAllocPool,
1850 fDrawBufferIBAllocPool));
bsalomon@google.com3c4d0322012-04-03 18:04:51 +00001851
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001852 fDrawBuffer->setDrawState(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001853}
1854
bsalomon@google.com21c10c52013-06-13 17:44:07 +00001855GrDrawTarget* GrContext::getTextTarget() {
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +00001856 return this->prepareToDraw(NULL, BUFFERED_DRAW, NULL, NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001857}
1858
1859const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1860 return fGpu->getQuadIndexBuffer();
1861}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001862
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001863namespace {
1864void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1865 GrConfigConversionEffect::PMConversion pmToUPM;
1866 GrConfigConversionEffect::PMConversion upmToPM;
1867 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1868 *pmToUPMValue = pmToUPM;
1869 *upmToPMValue = upmToPM;
1870}
1871}
1872
bsalomon83d081a2014-07-08 09:56:10 -07001873const GrEffect* GrContext::createPMToUPMEffect(GrTexture* texture,
1874 bool swapRAndB,
1875 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001876 if (!fDidTestPMConversions) {
1877 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001878 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001879 }
1880 GrConfigConversionEffect::PMConversion pmToUPM =
1881 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1882 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001883 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001884 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001885 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001886 }
1887}
1888
bsalomon83d081a2014-07-08 09:56:10 -07001889const GrEffect* GrContext::createUPMToPMEffect(GrTexture* texture,
1890 bool swapRAndB,
1891 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001892 if (!fDidTestPMConversions) {
1893 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001894 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001895 }
1896 GrConfigConversionEffect::PMConversion upmToPM =
1897 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1898 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001899 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001900 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001901 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001902 }
1903}
1904
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +00001905GrPath* GrContext::createPath(const SkPath& inPath, const SkStrokeRec& stroke) {
1906 SkASSERT(fGpu->caps()->pathRenderingSupport());
1907
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001908 // TODO: now we add to fResourceCache. This should change to fResourceCache.
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +00001909 GrResourceKey resourceKey = GrPath::ComputeKey(inPath, stroke);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001910 GrPath* path = static_cast<GrPath*>(fResourceCache->find(resourceKey));
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +00001911 if (NULL != path && path->isEqualTo(inPath, stroke)) {
1912 path->ref();
1913 } else {
1914 path = fGpu->createPath(inPath, stroke);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001915 fResourceCache->purgeAsNeeded(1, path->gpuMemorySize());
1916 fResourceCache->addResource(resourceKey, path);
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +00001917 }
1918 return path;
1919}
1920
bsalomon6d3fe022014-07-25 08:35:45 -07001921void GrContext::addResourceToCache(const GrResourceKey& resourceKey, GrGpuResource* resource) {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001922 fResourceCache->purgeAsNeeded(1, resource->gpuMemorySize());
1923 fResourceCache->addResource(resourceKey, resource);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001924}
1925
bsalomon6d3fe022014-07-25 08:35:45 -07001926GrGpuResource* GrContext::findAndRefCachedResource(const GrResourceKey& resourceKey) {
1927 GrGpuResource* resource = fResourceCache->find(resourceKey);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001928 SkSafeRef(resource);
1929 return resource;
1930}
1931
egdanielbbcb38d2014-06-19 10:19:29 -07001932void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
1933 fGpu->addGpuTraceMarker(marker);
1934 if (NULL != fDrawBuffer) {
1935 fDrawBuffer->addGpuTraceMarker(marker);
1936 }
1937}
1938
1939void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
1940 fGpu->removeGpuTraceMarker(marker);
1941 if (NULL != fDrawBuffer) {
1942 fDrawBuffer->removeGpuTraceMarker(marker);
1943 }
1944}
1945
bsalomon@google.comc4364992011-11-07 15:54:49 +00001946///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001947#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001948void GrContext::printCacheStats() const {
commit-bot@chromium.org95c20032014-05-09 14:29:32 +00001949 fResourceCache->printStats();
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001950}
1951#endif