blob: 6879b109cd76c0c6b64b130346a5204d3c72888c [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com27847de2011-02-22 20:59:41 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00007 */
8
bsalomon@google.com1fadb202011-12-12 16:10:08 +00009#include "GrContext.h"
10
jvanverth@google.combfe2b9d2013-09-06 16:57:29 +000011#include "GrAARectRenderer.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000012#include "GrBufferAllocPool.h"
joshualitt5478d422014-11-14 16:00:38 -080013#include "GrDefaultGeoProcFactory.h"
jvanverth787cdf92014-12-04 10:46:50 -080014#include "GrFontCache.h"
bsalomon453cf402014-11-11 14:15:57 -080015#include "GrGpuResource.h"
16#include "GrGpuResourceCacheAccess.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070017#include "GrDistanceFieldTextContext.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000018#include "GrDrawTargetCaps.h"
joshualitt5478d422014-11-14 16:00:38 -080019#include "GrGpu.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000020#include "GrIndexBuffer.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000021#include "GrInOrderDrawBuffer.h"
robertphillips@google.come930a072014-04-03 00:34:27 +000022#include "GrLayerCache.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000023#include "GrOvalRenderer.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000024#include "GrPathRenderer.h"
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000025#include "GrPathUtils.h"
bsalomonc8dc1f72014-08-21 13:02:13 -070026#include "GrResourceCache2.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000027#include "GrSoftwarePathRenderer.h"
kkinnunenc6cb56f2014-06-24 00:12:27 -070028#include "GrStencilAndCoverTextContext.h"
egdanield58a0ba2014-06-11 10:30:05 -070029#include "GrStrokeInfo.h"
bsalomonafbf2d62014-09-30 12:18:44 -070030#include "GrSurfacePriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070031#include "GrTexturePriv.h"
egdanielbbcb38d2014-06-19 10:19:29 -070032#include "GrTraceMarker.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000033#include "GrTracing.h"
egdanield58a0ba2014-06-11 10:30:05 -070034#include "SkDashPathPriv.h"
bsalomon81beccc2014-10-13 12:32:55 -070035#include "SkConfig8888.h"
reed@google.com7111d462014-03-25 16:20:24 +000036#include "SkGr.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000037#include "SkRRect.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000038#include "SkStrokeRec.h"
commit-bot@chromium.orgdcb8ef92014-03-27 11:26:10 +000039#include "SkTLazy.h"
commit-bot@chromium.org47841822014-03-27 14:19:17 +000040#include "SkTLS.h"
commit-bot@chromium.org933e65d2014-03-20 20:00:24 +000041#include "SkTraceEvent.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000042
joshualitt5478d422014-11-14 16:00:38 -080043#include "effects/GrConfigConversionEffect.h"
44#include "effects/GrDashingEffect.h"
45#include "effects/GrSingleTextureEffect.h"
46
bsalomon@google.com60361492012-03-15 17:47:06 +000047static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15;
bsalomon@google.com27847de2011-02-22 20:59:41 +000048static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4;
49
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000050static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11;
51static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4;
bsalomon@google.com27847de2011-02-22 20:59:41 +000052
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000053#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this)
bsalomon@google.combc4b6542011-11-19 13:56:11 +000054
bsalomonf21dab92014-11-13 13:33:28 -080055class GrContext::AutoCheckFlush {
56public:
57 AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(context); }
58
59 ~AutoCheckFlush() {
60 if (fContext->fFlushToReduceCacheSize) {
61 fContext->flush();
62 }
63 }
64
65private:
66 GrContext* fContext;
67};
68
krajcevski9c6d4d72014-08-12 07:26:25 -070069GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext,
70 const Options* opts) {
71 GrContext* context;
72 if (NULL == opts) {
73 context = SkNEW_ARGS(GrContext, (Options()));
74 } else {
75 context = SkNEW_ARGS(GrContext, (*opts));
76 }
77
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000078 if (context->init(backend, backendContext)) {
79 return context;
80 } else {
81 context->unref();
82 return NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +000083 }
bsalomon@google.com27847de2011-02-22 20:59:41 +000084}
85
krajcevski9c6d4d72014-08-12 07:26:25 -070086GrContext::GrContext(const Options& opts) : fOptions(opts) {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000087 fGpu = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +000088 fClip = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000089 fPathRendererChain = NULL;
90 fSoftwarePathRenderer = NULL;
bsalomonc8dc1f72014-08-21 13:02:13 -070091 fResourceCache2 = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000092 fFontCache = NULL;
93 fDrawBuffer = NULL;
94 fDrawBufferVBAllocPool = NULL;
95 fDrawBufferIBAllocPool = NULL;
bsalomonf21dab92014-11-13 13:33:28 -080096 fFlushToReduceCacheSize = false;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000097 fAARectRenderer = NULL;
commit-bot@chromium.org81312832013-03-22 18:34:09 +000098 fOvalRenderer = NULL;
robertphillips@google.com44a91dc2013-07-25 15:32:06 +000099 fMaxTextureSizeOverride = 1 << 20;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000100}
101
102bool GrContext::init(GrBackend backend, GrBackendContext backendContext) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000103 SkASSERT(NULL == fGpu);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000104
105 fGpu = GrGpu::Create(backend, backendContext, this);
106 if (NULL == fGpu) {
107 return false;
108 }
bsalomon33435572014-11-05 14:47:41 -0800109 this->initCommon();
110 return true;
111}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000112
bsalomon33435572014-11-05 14:47:41 -0800113void GrContext::initCommon() {
bsalomonc8dc1f72014-08-21 13:02:13 -0700114 fResourceCache2 = SkNEW(GrResourceCache2);
bsalomon71cb0c22014-11-14 12:10:14 -0800115 fResourceCache2->setOverBudgetCallback(OverBudgetCB, this);
commit-bot@chromium.org1836d332013-07-16 22:55:03 +0000116
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000117 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
118
robertphillips4ec84da2014-06-24 13:10:43 -0700119 fLayerCache.reset(SkNEW_ARGS(GrLayerCache, (this)));
robertphillips@google.come930a072014-04-03 00:34:27 +0000120
joshualittb44293e2014-10-28 08:12:18 -0700121 fAARectRenderer = SkNEW_ARGS(GrAARectRenderer, (fGpu));
joshualitt5531d512014-12-17 15:50:11 -0800122 fOvalRenderer = SkNEW_ARGS(GrOvalRenderer, (fGpu));
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000123
124 fDidTestPMConversions = false;
125
126 this->setupDrawBuffer();
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000127}
128
bsalomon@google.com27847de2011-02-22 20:59:41 +0000129GrContext::~GrContext() {
bsalomon@google.com733c0622013-04-24 17:59:32 +0000130 if (NULL == fGpu) {
131 return;
132 }
133
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000134 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000135
robertphillips@google.com950b1b02013-10-21 17:37:28 +0000136 for (int i = 0; i < fCleanUpData.count(); ++i) {
137 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
138 }
139
bsalomon33435572014-11-05 14:47:41 -0800140 SkDELETE(fResourceCache2);
bsalomon33435572014-11-05 14:47:41 -0800141 SkDELETE(fFontCache);
142 SkDELETE(fDrawBuffer);
143 SkDELETE(fDrawBufferVBAllocPool);
144 SkDELETE(fDrawBufferIBAllocPool);
bsalomon@google.com30085192011-08-19 15:42:31 +0000145
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000146 fAARectRenderer->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000147 fOvalRenderer->unref();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000148
bsalomon@google.com205d4602011-04-25 12:43:45 +0000149 fGpu->unref();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000150 SkSafeUnref(fPathRendererChain);
151 SkSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000152}
153
bsalomon2354f842014-07-28 13:48:36 -0700154void GrContext::abandonContext() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000155 // abandon first to so destructors
156 // don't try to free the resources in the API.
bsalomonc8dc1f72014-08-21 13:02:13 -0700157 fResourceCache2->abandonAll();
158
robertphillipse3371302014-09-17 06:01:06 -0700159 fGpu->contextAbandoned();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000160
bsalomon@google.com30085192011-08-19 15:42:31 +0000161 // a path renderer may be holding onto resources that
162 // are now unusable
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000163 SkSafeSetNull(fPathRendererChain);
164 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000165
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000166 delete fDrawBuffer;
167 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000168
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000169 delete fDrawBufferVBAllocPool;
170 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000171
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000172 delete fDrawBufferIBAllocPool;
173 fDrawBufferIBAllocPool = NULL;
174
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000175 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000176 fOvalRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000177
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000178 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000179 fLayerCache->freeAll();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000180}
181
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000182void GrContext::resetContext(uint32_t state) {
183 fGpu->markContextDirty(state);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000184}
185
186void GrContext::freeGpuResources() {
187 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000188
bsalomon49f085d2014-09-05 13:34:00 -0700189 if (fDrawBuffer) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700190 fDrawBuffer->purgeResources();
191 }
robertphillips@google.comff175842012-05-14 19:31:39 +0000192
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000193 fAARectRenderer->reset();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000194 fOvalRenderer->reset();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000195
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000196 fFontCache->freeAll();
robertphillips@google.come930a072014-04-03 00:34:27 +0000197 fLayerCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000198 // a path renderer may be holding onto resources
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000199 SkSafeSetNull(fPathRendererChain);
200 SkSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000201}
202
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000203void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const {
bsalomon71cb0c22014-11-14 12:10:14 -0800204 if (resourceCount) {
bsalomondace19e2014-11-17 07:34:06 -0800205 *resourceCount = fResourceCache2->getBudgetedResourceCount();
bsalomon71cb0c22014-11-14 12:10:14 -0800206 }
207 if (resourceBytes) {
bsalomondace19e2014-11-17 07:34:06 -0800208 *resourceBytes = fResourceCache2->getBudgetedResourceBytes();
bsalomon71cb0c22014-11-14 12:10:14 -0800209 }
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000210}
211
kkinnunenc6cb56f2014-06-24 00:12:27 -0700212GrTextContext* GrContext::createTextContext(GrRenderTarget* renderTarget,
213 const SkDeviceProperties&
214 leakyProperties,
215 bool enableDistanceFieldFonts) {
jvanverth8c27a182014-10-14 08:45:50 -0700216 if (fGpu->caps()->pathRenderingSupport() && renderTarget->getStencilBuffer() &&
217 renderTarget->isMultisampled()) {
218 return GrStencilAndCoverTextContext::Create(this, leakyProperties);
219 }
220
221 return GrDistanceFieldTextContext::Create(this, leakyProperties, enableDistanceFieldFonts);
kkinnunenc6cb56f2014-06-24 00:12:27 -0700222}
223
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000224////////////////////////////////////////////////////////////////////////////////
225
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000226static void stretch_image(void* dst,
227 int dstW,
228 int dstH,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000229 const void* src,
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000230 int srcW,
231 int srcH,
232 size_t bpp) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000233 SkFixed dx = (srcW << 16) / dstW;
234 SkFixed dy = (srcH << 16) / dstH;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000235
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000236 SkFixed y = dy >> 1;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000237
robertphillips@google.com8b169312013-10-15 17:47:36 +0000238 size_t dstXLimit = dstW*bpp;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000239 for (int j = 0; j < dstH; ++j) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000240 SkFixed x = dx >> 1;
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000241 const uint8_t* srcRow = reinterpret_cast<const uint8_t *>(src) + (y>>16)*srcW*bpp;
242 uint8_t* dstRow = reinterpret_cast<uint8_t *>(dst) + j*dstW*bpp;
robertphillips@google.com8b169312013-10-15 17:47:36 +0000243 for (size_t i = 0; i < dstXLimit; i += bpp) {
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000244 memcpy(dstRow + i, srcRow + (x>>16)*bpp, bpp);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000245 x += dx;
246 }
247 y += dy;
248 }
249}
250
bsalomon24db3b12015-01-23 04:24:04 -0800251enum ResizeFlags {
252 /**
253 * The kStretchToPOT bit is set when the texture is NPOT and is being repeated or mipped but the
254 * hardware doesn't support that feature.
255 */
256 kStretchToPOT_ResizeFlag = 0x1,
257 /**
258 * The kBilerp bit can only be set when the kStretchToPOT flag is set and indicates whether the
259 * stretched texture should be bilerped.
260 */
261 kBilerp_ResizeFlag = 0x2,
262};
263
264static uint32_t get_texture_flags(const GrGpu* gpu,
265 const GrTextureParams* params,
266 const GrSurfaceDesc& desc) {
267 uint32_t flags = 0;
268 bool tiled = params && params->isTiled();
269 if (tiled && !gpu->caps()->npotTextureTileSupport()) {
270 if (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight)) {
271 flags |= kStretchToPOT_ResizeFlag;
272 switch(params->filterMode()) {
273 case GrTextureParams::kNone_FilterMode:
274 break;
275 case GrTextureParams::kBilerp_FilterMode:
276 case GrTextureParams::kMipMap_FilterMode:
277 flags |= kBilerp_ResizeFlag;
278 break;
279 }
280 }
281 }
282 return flags;
283}
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000284// The desired texture is NPOT and tiled but that isn't supported by
robertphillips@google.com3319f332012-08-13 18:00:36 +0000285// the current hardware. Resize the texture to be a POT
bsalomonf2703d82014-10-28 14:33:06 -0700286GrTexture* GrContext::createResizedTexture(const GrSurfaceDesc& desc,
bsalomon24db3b12015-01-23 04:24:04 -0800287 const GrContentKey& origKey,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000288 const void* srcData,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000289 size_t rowBytes,
humper@google.comb86add12013-07-25 18:49:07 +0000290 bool filter) {
bsalomon24db3b12015-01-23 04:24:04 -0800291 SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, origKey, NULL));
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000292 if (NULL == clampedTexture) {
bsalomon24db3b12015-01-23 04:24:04 -0800293 clampedTexture.reset(this->createTexture(NULL, desc, origKey, srcData, rowBytes));
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000294
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000295 if (NULL == clampedTexture) {
robertphillips@google.com3319f332012-08-13 18:00:36 +0000296 return NULL;
297 }
bsalomon24db3b12015-01-23 04:24:04 -0800298 clampedTexture->cacheAccess().setContentKey(origKey);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000299 }
robertphillips@google.com0d25eef2012-09-11 21:25:51 +0000300
bsalomonf2703d82014-10-28 14:33:06 -0700301 GrSurfaceDesc rtDesc = desc;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000302 rtDesc.fFlags = rtDesc.fFlags |
bsalomonf2703d82014-10-28 14:33:06 -0700303 kRenderTarget_GrSurfaceFlag |
304 kNoStencil_GrSurfaceFlag;
commit-bot@chromium.org5898dce2013-09-18 18:52:16 +0000305 rtDesc.fWidth = GrNextPow2(desc.fWidth);
306 rtDesc.fHeight = GrNextPow2(desc.fHeight);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000307
bsalomon5236cf42015-01-14 10:42:08 -0800308 GrTexture* texture = fGpu->createTexture(rtDesc, true, NULL, 0);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000309
bsalomon49f085d2014-09-05 13:34:00 -0700310 if (texture) {
egdaniel8dd688b2015-01-22 10:16:09 -0800311 GrPipelineBuilder pipelineBuilder;
312 pipelineBuilder.setRenderTarget(texture->asRenderTarget());
robertphillips@google.com3319f332012-08-13 18:00:36 +0000313
314 // if filtering is not desired then we want to ensure all
315 // texels in the resampled image are copies of texels from
316 // the original.
joshualitt5c55fef2014-10-31 14:04:35 -0700317 GrTextureParams params(SkShader::kClamp_TileMode,
318 filter ? GrTextureParams::kBilerp_FilterMode :
319 GrTextureParams::kNone_FilterMode);
egdaniel8dd688b2015-01-22 10:16:09 -0800320 pipelineBuilder.addColorTextureProcessor(clampedTexture, SkMatrix::I(), params);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000321
joshualitt2dd1ae02014-12-03 06:24:10 -0800322 uint32_t flags = GrDefaultGeoProcFactory::kPosition_GPType |
323 GrDefaultGeoProcFactory::kLocalCoord_GPType;
joshualitt56995b52014-12-11 15:44:02 -0800324 SkAutoTUnref<const GrGeometryProcessor> gp(
joshualitt8059eb92014-12-29 15:10:07 -0800325 GrDefaultGeoProcFactory::Create(flags, GrColor_WHITE));
jvanverth@google.com054ae992013-04-01 20:06:51 +0000326
joshualitt2dd1ae02014-12-03 06:24:10 -0800327 GrDrawTarget::AutoReleaseGeometry arg(fDrawBuffer, 4, gp->getVertexStride(), 0);
328 SkASSERT(gp->getVertexStride() == 2 * sizeof(SkPoint));
robertphillips@google.com3319f332012-08-13 18:00:36 +0000329
330 if (arg.succeeded()) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000331 SkPoint* verts = (SkPoint*) arg.vertices();
332 verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(SkPoint));
333 verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(SkPoint));
egdaniel8dd688b2015-01-22 10:16:09 -0800334 fDrawBuffer->drawNonIndexed(&pipelineBuilder, gp, kTriangleFan_GrPrimitiveType, 0, 4);
bsalomon24db3b12015-01-23 04:24:04 -0800335 } else {
336 texture->unref();
337 texture = NULL;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000338 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000339 } else {
340 // TODO: Our CPU stretch doesn't filter. But we create separate
bsalomon@google.com08283af2012-10-26 13:01:20 +0000341 // stretched textures when the texture params is either filtered or
robertphillips@google.com3319f332012-08-13 18:00:36 +0000342 // not. Either implement filtered stretch blit on CPU or just create
343 // one when FBO case fails.
344
bsalomonf2703d82014-10-28 14:33:06 -0700345 rtDesc.fFlags = kNone_GrSurfaceFlags;
robertphillips@google.com3319f332012-08-13 18:00:36 +0000346 // no longer need to clamp at min RT size.
347 rtDesc.fWidth = GrNextPow2(desc.fWidth);
348 rtDesc.fHeight = GrNextPow2(desc.fHeight);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000349
350 // We shouldn't be resizing a compressed texture.
351 SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
352
robertphillips@google.com8b169312013-10-15 17:47:36 +0000353 size_t bpp = GrBytesPerPixel(desc.fConfig);
georgeb62508b2014-08-12 18:00:47 -0700354 GrAutoMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight);
commit-bot@chromium.orgb0ce4b62014-05-16 17:22:51 +0000355 stretch_image(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight,
356 srcData, desc.fWidth, desc.fHeight, bpp);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000357
358 size_t stretchedRowBytes = rtDesc.fWidth * bpp;
359
bsalomon5236cf42015-01-14 10:42:08 -0800360 texture = fGpu->createTexture(rtDesc, true, stretchedPixels.get(), stretchedRowBytes);
bsalomon49f085d2014-09-05 13:34:00 -0700361 SkASSERT(texture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000362 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000363
364 return texture;
365}
366
bsalomon24db3b12015-01-23 04:24:04 -0800367static GrContentKey::Domain ResizeDomain() {
368 static const GrContentKey::Domain kDomain = GrContentKey::GenerateDomain();
369 return kDomain;
370}
371
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000372GrTexture* GrContext::createTexture(const GrTextureParams* params,
bsalomonf2703d82014-10-28 14:33:06 -0700373 const GrSurfaceDesc& desc,
bsalomon24db3b12015-01-23 04:24:04 -0800374 const GrContentKey& origKey,
commit-bot@chromium.orgf9bd04f2014-05-29 19:26:48 +0000375 const void* srcData,
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000376 size_t rowBytes,
bsalomon24db3b12015-01-23 04:24:04 -0800377 GrContentKey* outKey) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000378 GrTexture* texture;
bsalomon24db3b12015-01-23 04:24:04 -0800379 uint32_t flags = get_texture_flags(fGpu, params, desc);
380 SkTCopyOnFirstWrite<GrContentKey> key(origKey);
381 if (flags) {
382 // We don't have a code path to resize compressed textures.
383 if (GrPixelConfigIsCompressed(desc.fConfig)) {
384 return NULL;
385 }
386 texture = this->createResizedTexture(desc, origKey, srcData, rowBytes,
387 SkToBool(flags & kBilerp_ResizeFlag));
krajcevski9c0e6292014-06-02 07:38:14 -0700388
bsalomon24db3b12015-01-23 04:24:04 -0800389 GrContentKey::Builder builder(key.writable(), origKey, ResizeDomain(), 1);
390 builder[0] = flags;
391
bsalomon@google.com27847de2011-02-22 20:59:41 +0000392 } else {
bsalomon5236cf42015-01-14 10:42:08 -0800393 texture = fGpu->createTexture(desc, true, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000394 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000395
bsalomon49f085d2014-09-05 13:34:00 -0700396 if (texture) {
bsalomon24db3b12015-01-23 04:24:04 -0800397 if (texture->cacheAccess().setContentKey(*key)) {
398 if (outKey) {
399 *outKey = *key;
bsalomon71cb0c22014-11-14 12:10:14 -0800400 }
401 } else {
402 texture->unref();
403 texture = NULL;
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000404 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000405 }
406
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000407 return texture;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000408}
409
bsalomon24db3b12015-01-23 04:24:04 -0800410GrTexture* GrContext::findAndRefTexture(const GrSurfaceDesc& desc,
411 const GrContentKey& origKey,
412 const GrTextureParams* params) {
413 uint32_t flags = get_texture_flags(fGpu, params, desc);
414 SkTCopyOnFirstWrite<GrContentKey> key(origKey);
415 if (flags) {
416 GrContentKey::Builder builder(key.writable(), origKey, ResizeDomain(), 1);
417 builder[0] = flags;
418 }
419
420 GrGpuResource* resource = this->findAndRefCachedResource(*key);
421 if (resource) {
422 SkASSERT(static_cast<GrSurface*>(resource)->asTexture());
423 return static_cast<GrSurface*>(resource)->asTexture();
424 }
425 return NULL;
426}
427
428bool GrContext::isTextureInCache(const GrSurfaceDesc& desc,
429 const GrContentKey& origKey,
430 const GrTextureParams* params) const {
431 uint32_t flags = get_texture_flags(fGpu, params, desc);
432 SkTCopyOnFirstWrite<GrContentKey> key(origKey);
433 if (flags) {
434 GrContentKey::Builder builder(key.writable(), origKey, ResizeDomain(), 1);
435 builder[0] = flags;
436 }
437
438 return fResourceCache2->hasContentKey(*key);
439}
440
bsalomonf2703d82014-10-28 14:33:06 -0700441GrTexture* GrContext::refScratchTexture(const GrSurfaceDesc& inDesc, ScratchTexMatch match,
bsalomone3059732014-10-14 11:47:22 -0700442 bool calledDuringFlush) {
bsalomonbcf0a522014-10-08 08:40:09 -0700443 // kNoStencil has no meaning if kRT isn't set.
bsalomonf2703d82014-10-28 14:33:06 -0700444 SkASSERT((inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
445 !(inDesc.fFlags & kNoStencil_GrSurfaceFlag));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000446
bsalomonbcf0a522014-10-08 08:40:09 -0700447 // Make sure caller has checked for renderability if kRT is set.
bsalomonf2703d82014-10-28 14:33:06 -0700448 SkASSERT(!(inDesc.fFlags & kRenderTarget_GrSurfaceFlag) ||
bsalomonbcf0a522014-10-08 08:40:09 -0700449 this->isConfigRenderable(inDesc.fConfig, inDesc.fSampleCnt > 0));
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000450
bsalomonf2703d82014-10-28 14:33:06 -0700451 SkTCopyOnFirstWrite<GrSurfaceDesc> desc(inDesc);
robertphillips@google.come4eaea22013-07-19 16:51:46 +0000452
bsalomonf2703d82014-10-28 14:33:06 -0700453 if (fGpu->caps()->reuseScratchTextures() || (desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
454 GrSurfaceFlags origFlags = desc->fFlags;
bsalomonbcf0a522014-10-08 08:40:09 -0700455 if (kApprox_ScratchTexMatch == match) {
456 // bin by pow2 with a reasonable min
457 static const int MIN_SIZE = 16;
bsalomonf2703d82014-10-28 14:33:06 -0700458 GrSurfaceDesc* wdesc = desc.writable();
bsalomonbcf0a522014-10-08 08:40:09 -0700459 wdesc->fWidth = SkTMax(MIN_SIZE, GrNextPow2(desc->fWidth));
460 wdesc->fHeight = SkTMax(MIN_SIZE, GrNextPow2(desc->fHeight));
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000461 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000462
bsalomonbcf0a522014-10-08 08:40:09 -0700463 do {
bsalomon7775c852014-12-30 12:50:52 -0800464 GrScratchKey key;
465 GrTexturePriv::ComputeScratchKey(*desc, &key);
bsalomon000f8292014-10-15 19:04:14 -0700466 uint32_t scratchFlags = 0;
467 if (calledDuringFlush) {
468 scratchFlags = GrResourceCache2::kRequireNoPendingIO_ScratchFlag;
bsalomonf2703d82014-10-28 14:33:06 -0700469 } else if (!(desc->fFlags & kRenderTarget_GrSurfaceFlag)) {
bsalomon000f8292014-10-15 19:04:14 -0700470 // If it is not a render target then it will most likely be populated by
471 // writePixels() which will trigger a flush if the texture has pending IO.
472 scratchFlags = GrResourceCache2::kPreferNoPendingIO_ScratchFlag;
473 }
474 GrGpuResource* resource = fResourceCache2->findAndRefScratchResource(key, scratchFlags);
bsalomonbcf0a522014-10-08 08:40:09 -0700475 if (resource) {
bsalomon66e09a82015-01-26 11:46:52 -0800476 GrSurface* surface = static_cast<GrSurface*>(resource);
477 GrRenderTarget* rt = surface->asRenderTarget();
478 if (rt && fGpu->caps()->discardRenderTargetSupport()) {
479 rt->discard();
480 }
481 return surface->asTexture();
bsalomonbcf0a522014-10-08 08:40:09 -0700482 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000483
bsalomonbcf0a522014-10-08 08:40:09 -0700484 if (kExact_ScratchTexMatch == match) {
485 break;
486 }
487 // We had a cache miss and we are in approx mode, relax the fit of the flags.
488
489 // We no longer try to reuse textures that were previously used as render targets in
490 // situations where no RT is needed; doing otherwise can confuse the video driver and
491 // cause significant performance problems in some cases.
bsalomonf2703d82014-10-28 14:33:06 -0700492 if (desc->fFlags & kNoStencil_GrSurfaceFlag) {
493 desc.writable()->fFlags = desc->fFlags & ~kNoStencil_GrSurfaceFlag;
bsalomonbcf0a522014-10-08 08:40:09 -0700494 } else {
495 break;
496 }
497
498 } while (true);
499
500 desc.writable()->fFlags = origFlags;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000501 }
502
bsalomon5236cf42015-01-14 10:42:08 -0800503 GrTexture* texture = fGpu->createTexture(*desc, true, NULL, 0);
bsalomon7775c852014-12-30 12:50:52 -0800504#ifdef SK_DEBUG
505 GrScratchKey key;
506 GrTexturePriv::ComputeScratchKey(*desc, &key);
507 SkASSERT(NULL == texture || texture->cacheAccess().getScratchKey() == key);
508#endif
bsalomonbcf0a522014-10-08 08:40:09 -0700509 return texture;
Brian Salomon9323b8b2014-10-07 15:07:38 -0400510}
511
bsalomon71cb0c22014-11-14 12:10:14 -0800512void GrContext::OverBudgetCB(void* data) {
bsalomon66a450f2014-11-13 13:19:10 -0800513 SkASSERT(data);
bsalomonf21dab92014-11-13 13:33:28 -0800514
bsalomon66a450f2014-11-13 13:19:10 -0800515 GrContext* context = reinterpret_cast<GrContext*>(data);
bsalomonf21dab92014-11-13 13:33:28 -0800516
517 // Flush the InOrderDrawBuffer to possibly free up some textures
518 context->fFlushToReduceCacheSize = true;
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000519}
520
bsalomon5236cf42015-01-14 10:42:08 -0800521GrTexture* GrContext::createUncachedTexture(const GrSurfaceDesc& desc,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000522 void* srcData,
523 size_t rowBytes) {
bsalomon5236cf42015-01-14 10:42:08 -0800524 return fGpu->createTexture(desc, false, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000525}
526
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000527void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const {
bsalomon71cb0c22014-11-14 12:10:14 -0800528 if (maxTextures) {
529 *maxTextures = fResourceCache2->getMaxResourceCount();
530 }
531 if (maxTextureBytes) {
532 *maxTextureBytes = fResourceCache2->getMaxResourceBytes();
533 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000534}
535
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000536void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) {
bsalomon71cb0c22014-11-14 12:10:14 -0800537 fResourceCache2->setLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000538}
539
bsalomon@google.com91958362011-06-13 17:58:13 +0000540int GrContext::getMaxTextureSize() const {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000541 return SkTMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride);
bsalomon@google.com91958362011-06-13 17:58:13 +0000542}
543
544int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000545 return fGpu->caps()->maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000546}
547
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000548int GrContext::getMaxSampleCount() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000549 return fGpu->caps()->maxSampleCount();
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000550}
551
bsalomon@google.com27847de2011-02-22 20:59:41 +0000552///////////////////////////////////////////////////////////////////////////////
553
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000554GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) {
555 return fGpu->wrapBackendTexture(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000556}
557
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000558GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
559 return fGpu->wrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000560}
561
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000562///////////////////////////////////////////////////////////////////////////////
563
bsalomon@google.comb8670992012-07-25 21:27:09 +0000564bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000565 int width, int height) const {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000566 const GrDrawTargetCaps* caps = fGpu->caps();
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000567 if (!caps->isConfigTexturable(kIndex_8_GrPixelConfig)) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000568 return false;
569 }
570
tfarinaf9dae782014-06-06 06:35:28 -0700571 bool isPow2 = SkIsPow2(width) && SkIsPow2(height);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000572
573 if (!isPow2) {
bsalomon49f085d2014-09-05 13:34:00 -0700574 bool tiled = params && params->isTiled();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000575 if (tiled && !caps->npotTextureTileSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000576 return false;
577 }
578 }
579 return true;
580}
581
bsalomon@google.com27847de2011-02-22 20:59:41 +0000582
bsalomon@google.com27847de2011-02-22 20:59:41 +0000583////////////////////////////////////////////////////////////////////////////////
584
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000585void GrContext::clear(const SkIRect* rect,
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000586 const GrColor color,
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000587 bool canIgnoreRect,
bsalomon41ebbdd2014-08-04 08:31:39 -0700588 GrRenderTarget* renderTarget) {
589 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomon89c62982014-11-03 12:08:42 -0800590 SkASSERT(renderTarget);
591
bsalomonf21dab92014-11-13 13:33:28 -0800592 AutoCheckFlush acf(this);
egdanield78a1682014-07-09 10:41:26 -0700593 GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::clear", this);
joshualitt8059eb92014-12-29 15:10:07 -0800594 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700595 if (NULL == target) {
596 return;
597 }
598 target->clear(rect, color, canIgnoreRect, renderTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000599}
600
joshualitt5531d512014-12-17 15:50:11 -0800601void GrContext::drawPaint(const GrPaint& origPaint, const SkMatrix& viewMatrix) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000602 // set rect to be big enough to fill the space, but not super-huge, so we
603 // don't overflow fixed-point implementations
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000604 SkRect r;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000605 r.setLTRB(0, 0,
bsalomon@google.com81712882012-11-01 17:12:34 +0000606 SkIntToScalar(getRenderTarget()->width()),
607 SkIntToScalar(getRenderTarget()->height()));
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000608 SkTCopyOnFirstWrite<GrPaint> paint(origPaint);
joshualitt8fc6c2d2014-12-22 15:27:05 -0800609
610 // by definition this fills the entire clip, no need for AA
611 if (paint->isAntiAlias()) {
612 paint.writable()->setAntiAlias(false);
613 }
614
615 bool isPerspective = viewMatrix.hasPerspective();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000616
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000617 // We attempt to map r by the inverse matrix and draw that. mapRect will
618 // map the four corners and bound them with a new rect. This will not
619 // produce a correct result for some perspective matrices.
joshualitt8fc6c2d2014-12-22 15:27:05 -0800620 if (!isPerspective) {
joshualitt5531d512014-12-17 15:50:11 -0800621 SkMatrix inverse;
622 if (!viewMatrix.invert(&inverse)) {
tfarina38406c82014-10-31 07:11:12 -0700623 SkDebugf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000624 return;
625 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000626 inverse.mapRect(&r);
joshualitt8fc6c2d2014-12-22 15:27:05 -0800627 this->drawRect(*paint, viewMatrix, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000628 } else {
joshualitt8fc6c2d2014-12-22 15:27:05 -0800629 SkMatrix localMatrix;
630 if (!viewMatrix.invert(&localMatrix)) {
tfarina38406c82014-10-31 07:11:12 -0700631 SkDebugf("Could not invert matrix\n");
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000632 return;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000633 }
joshualitt8fc6c2d2014-12-22 15:27:05 -0800634
635 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800636 GrPipelineBuilder pipelineBuilder;
637 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, paint, &acf);
joshualitt8fc6c2d2014-12-22 15:27:05 -0800638 if (NULL == target) {
639 return;
640 }
641
642 GR_CREATE_TRACE_MARKER("GrContext::drawPaintWithPerspective", target);
egdaniel8dd688b2015-01-22 10:16:09 -0800643 target->drawRect(&pipelineBuilder, paint->getColor(), SkMatrix::I(), r, NULL, &localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000644 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000645}
646
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000647#ifdef SK_DEVELOPER
648void GrContext::dumpFontCache() const {
649 fFontCache->dump();
650}
651#endif
652
bsalomon@google.com205d4602011-04-25 12:43:45 +0000653////////////////////////////////////////////////////////////////////////////////
654
bsalomon@google.com27847de2011-02-22 20:59:41 +0000655/* create a triangle strip that strokes the specified triangle. There are 8
656 unique vertices, but we repreat the last 2 to close up. Alternatively we
657 could use an indices array, and then only send 8 verts, but not sure that
658 would be faster.
659 */
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000660static void setStrokeRectStrip(SkPoint verts[10], SkRect rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000661 SkScalar width) {
662 const SkScalar rad = SkScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000663 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000664
665 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
666 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
667 verts[2].set(rect.fRight - rad, rect.fTop + rad);
668 verts[3].set(rect.fRight + rad, rect.fTop - rad);
669 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
670 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
671 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
672 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
673 verts[8] = verts[0];
674 verts[9] = verts[1];
675}
676
bsalomonc30aaa02014-08-13 07:15:29 -0700677static inline bool is_irect(const SkRect& r) {
tfarina38406c82014-10-31 07:11:12 -0700678 return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
679 SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
bsalomonc30aaa02014-08-13 07:15:29 -0700680}
681
bsalomon@google.com205d4602011-04-25 12:43:45 +0000682static bool apply_aa_to_rect(GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -0800683 GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -0800684 SkRect* devBoundRect,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000685 const SkRect& rect,
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000686 SkScalar strokeWidth,
joshualitt2e3b3e32014-12-09 13:31:14 -0800687 const SkMatrix& combinedMatrix,
688 GrColor color) {
egdaniel8dd688b2015-01-22 10:16:09 -0800689 if (!pipelineBuilder->canTweakAlphaForCoverage() &&
690 !pipelineBuilder->canUseFracCoveragePrimProc(color, *target->caps())) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000691#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700692 //SkDebugf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000693#endif
bsalomon9c0822a2014-08-11 11:07:48 -0700694 return false;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000695 }
joshualitt9853cce2014-11-17 14:22:48 -0800696
egdaniel8dd688b2015-01-22 10:16:09 -0800697 if (pipelineBuilder->getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000698 return false;
699 }
700
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000701#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000702 if (strokeWidth >= 0) {
703#endif
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000704 if (!combinedMatrix.preservesAxisAlignment()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000705 return false;
706 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000707
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000708#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000709 } else {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000710 if (!combinedMatrix.preservesRightAngles()) {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000711 return false;
712 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000713 }
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000714#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000715
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000716 combinedMatrix.mapRect(devBoundRect, rect);
derekfe638d1c2014-12-02 13:51:29 -0800717 if (!combinedMatrix.rectStaysRect()) {
718 return true;
719 }
720
bsalomonc30aaa02014-08-13 07:15:29 -0700721 if (strokeWidth < 0) {
722 return !is_irect(*devBoundRect);
723 }
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000724
bsalomon9c0822a2014-08-11 11:07:48 -0700725 return true;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000726}
727
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000728static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
729 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
730 point.fY >= rect.fTop && point.fY <= rect.fBottom;
731}
732
bsalomon@google.com27847de2011-02-22 20:59:41 +0000733void GrContext::drawRect(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800734 const SkMatrix& viewMatrix,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000735 const SkRect& rect,
bsalomon01c8da12014-08-04 09:21:30 -0700736 const GrStrokeInfo* strokeInfo) {
bsalomon49f085d2014-09-05 13:34:00 -0700737 if (strokeInfo && strokeInfo->isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700738 SkPath path;
739 path.addRect(rect);
joshualitt5531d512014-12-17 15:50:11 -0800740 this->drawPath(paint, viewMatrix, path, *strokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700741 return;
742 }
743
bsalomonf21dab92014-11-13 13:33:28 -0800744 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800745 GrPipelineBuilder pipelineBuilder;
746 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700747 if (NULL == target) {
748 return;
749 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000750
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000751 GR_CREATE_TRACE_MARKER("GrContext::drawRect", target);
egdanield58a0ba2014-06-11 10:30:05 -0700752 SkScalar width = NULL == strokeInfo ? -1 : strokeInfo->getStrokeRec().getWidth();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000753
754 // Check if this is a full RT draw and can be replaced with a clear. We don't bother checking
755 // cases where the RT is fully inside a stroke.
756 if (width < 0) {
757 SkRect rtRect;
egdaniel8dd688b2015-01-22 10:16:09 -0800758 pipelineBuilder.getRenderTarget()->getBoundsRect(&rtRect);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000759 SkRect clipSpaceRTRect = rtRect;
760 bool checkClip = false;
bsalomon49f085d2014-09-05 13:34:00 -0700761 if (this->getClip()) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000762 checkClip = true;
763 clipSpaceRTRect.offset(SkIntToScalar(this->getClip()->fOrigin.fX),
764 SkIntToScalar(this->getClip()->fOrigin.fY));
765 }
766 // Does the clip contain the entire RT?
767 if (!checkClip || target->getClip()->fClipStack->quickContains(clipSpaceRTRect)) {
768 SkMatrix invM;
joshualitt8059eb92014-12-29 15:10:07 -0800769 if (!viewMatrix.invert(&invM)) {
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000770 return;
771 }
772 // Does the rect bound the RT?
773 SkPoint srcSpaceRTQuad[4];
774 invM.mapRectToQuad(srcSpaceRTQuad, rtRect);
775 if (rect_contains_inclusive(rect, srcSpaceRTQuad[0]) &&
776 rect_contains_inclusive(rect, srcSpaceRTQuad[1]) &&
777 rect_contains_inclusive(rect, srcSpaceRTQuad[2]) &&
778 rect_contains_inclusive(rect, srcSpaceRTQuad[3])) {
779 // Will it blend?
780 GrColor clearColor;
781 if (paint.isOpaqueAndConstantColor(&clearColor)) {
bsalomon89c62982014-11-03 12:08:42 -0800782 target->clear(NULL, clearColor, true, fRenderTarget);
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000783 return;
784 }
785 }
786 }
787 }
788
joshualitt2e3b3e32014-12-09 13:31:14 -0800789 GrColor color = paint.getColor();
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000790 SkRect devBoundRect;
egdaniel8dd688b2015-01-22 10:16:09 -0800791 bool needAA = paint.isAntiAlias() && !pipelineBuilder.getRenderTarget()->isMultisampled();
792 bool doAA = needAA && apply_aa_to_rect(target, &pipelineBuilder, &devBoundRect, rect, width,
joshualitt8059eb92014-12-29 15:10:07 -0800793 viewMatrix, color);
egdanield58a0ba2014-06-11 10:30:05 -0700794
bsalomon@google.com205d4602011-04-25 12:43:45 +0000795 if (doAA) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000796 if (width >= 0) {
bsalomon395ef052014-11-12 11:35:22 -0800797 const SkStrokeRec& strokeRec = strokeInfo->getStrokeRec();
joshualitt9853cce2014-11-17 14:22:48 -0800798 fAARectRenderer->strokeAARect(target,
egdaniel8dd688b2015-01-22 10:16:09 -0800799 &pipelineBuilder,
joshualitt2e3b3e32014-12-09 13:31:14 -0800800 color,
joshualitt8059eb92014-12-29 15:10:07 -0800801 viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800802 rect,
joshualitt9853cce2014-11-17 14:22:48 -0800803 devBoundRect,
804 strokeRec);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000805 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000806 // filled AA rect
joshualitt8059eb92014-12-29 15:10:07 -0800807 fAARectRenderer->fillAARect(target,
egdaniel8dd688b2015-01-22 10:16:09 -0800808 &pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -0800809 color,
810 viewMatrix,
811 rect,
joshualittd27f73e2014-12-29 07:43:36 -0800812 devBoundRect);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000813 }
814 return;
815 }
816
bsalomon@google.com27847de2011-02-22 20:59:41 +0000817 if (width >= 0) {
818 // TODO: consider making static vertex buffers for these cases.
bsalomon@google.com64386952013-02-08 21:22:44 +0000819 // Hairline could be done by just adding closing vertex to
820 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000821
bsalomon@google.com27847de2011-02-22 20:59:41 +0000822 static const int worstCaseVertCount = 10;
joshualitt8059eb92014-12-29 15:10:07 -0800823 SkAutoTUnref<const GrGeometryProcessor> gp(
824 GrDefaultGeoProcFactory::Create(GrDefaultGeoProcFactory::kPosition_GPType,
825 color,
826 viewMatrix,
827 SkMatrix::I()));
joshualitt9853cce2014-11-17 14:22:48 -0800828 GrDrawTarget::AutoReleaseGeometry geo(target,
829 worstCaseVertCount,
joshualitt2dd1ae02014-12-03 06:24:10 -0800830 gp->getVertexStride(),
joshualitt9853cce2014-11-17 14:22:48 -0800831 0);
joshualitt2dd1ae02014-12-03 06:24:10 -0800832 SkASSERT(gp->getVertexStride() == sizeof(SkPoint));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000833
834 if (!geo.succeeded()) {
tfarina38406c82014-10-31 07:11:12 -0700835 SkDebugf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000836 return;
837 }
838
839 GrPrimitiveType primType;
840 int vertCount;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000841 SkPoint* vertex = geo.positions();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000842
843 if (width > 0) {
844 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000845 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000846 setStrokeRectStrip(vertex, rect, width);
847 } else {
848 // hairline
849 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000850 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000851 vertex[0].set(rect.fLeft, rect.fTop);
852 vertex[1].set(rect.fRight, rect.fTop);
853 vertex[2].set(rect.fRight, rect.fBottom);
854 vertex[3].set(rect.fLeft, rect.fBottom);
855 vertex[4].set(rect.fLeft, rect.fTop);
856 }
857
egdaniel8dd688b2015-01-22 10:16:09 -0800858 target->drawNonIndexed(&pipelineBuilder, gp, primType, 0, vertCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000859 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000860 // filled BW rect
egdaniel8dd688b2015-01-22 10:16:09 -0800861 target->drawSimpleRect(&pipelineBuilder, color, viewMatrix, rect);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000862 }
863}
864
joshualitt16b27892014-12-18 07:47:16 -0800865void GrContext::drawNonAARectToRect(const GrPaint& paint,
866 const SkMatrix& viewMatrix,
867 const SkRect& rectToDraw,
868 const SkRect& localRect,
869 const SkMatrix* localMatrix) {
bsalomonf21dab92014-11-13 13:33:28 -0800870 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800871 GrPipelineBuilder pipelineBuilder;
872 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700873 if (NULL == target) {
874 return;
875 }
bsalomon@google.com64386952013-02-08 21:22:44 +0000876
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000877 GR_CREATE_TRACE_MARKER("GrContext::drawRectToRect", target);
878
egdaniel8dd688b2015-01-22 10:16:09 -0800879 target->drawRect(&pipelineBuilder, paint.getColor(), viewMatrix, rectToDraw, &localRect,
880 localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000881}
882
joshualitt56995b52014-12-11 15:44:02 -0800883static const GrGeometryProcessor* set_vertex_attributes(const SkPoint* texCoords,
884 const GrColor* colors,
885 int* colorOffset,
886 int* texOffset,
joshualitt8059eb92014-12-29 15:10:07 -0800887 GrColor color,
888 const SkMatrix& viewMatrix) {
robertphillips@google.com42903302013-04-20 12:26:07 +0000889 *texOffset = -1;
890 *colorOffset = -1;
joshualitt5478d422014-11-14 16:00:38 -0800891 uint32_t flags = GrDefaultGeoProcFactory::kPosition_GPType;
bsalomon49f085d2014-09-05 13:34:00 -0700892 if (texCoords && colors) {
joshualitt5478d422014-11-14 16:00:38 -0800893 *colorOffset = sizeof(SkPoint);
894 *texOffset = sizeof(SkPoint) + sizeof(GrColor);
895 flags |= GrDefaultGeoProcFactory::kColor_GPType |
896 GrDefaultGeoProcFactory::kLocalCoord_GPType;
bsalomon49f085d2014-09-05 13:34:00 -0700897 } else if (texCoords) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000898 *texOffset = sizeof(SkPoint);
joshualitt5478d422014-11-14 16:00:38 -0800899 flags |= GrDefaultGeoProcFactory::kLocalCoord_GPType;
bsalomon49f085d2014-09-05 13:34:00 -0700900 } else if (colors) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000901 *colorOffset = sizeof(SkPoint);
joshualitt5478d422014-11-14 16:00:38 -0800902 flags |= GrDefaultGeoProcFactory::kColor_GPType;
robertphillips@google.com42903302013-04-20 12:26:07 +0000903 }
joshualitt8059eb92014-12-29 15:10:07 -0800904 return GrDefaultGeoProcFactory::Create(flags, color, viewMatrix, SkMatrix::I());
robertphillips@google.com42903302013-04-20 12:26:07 +0000905}
906
bsalomon@google.com27847de2011-02-22 20:59:41 +0000907void GrContext::drawVertices(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800908 const SkMatrix& viewMatrix,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000909 GrPrimitiveType primitiveType,
910 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000911 const SkPoint positions[],
912 const SkPoint texCoords[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000913 const GrColor colors[],
914 const uint16_t indices[],
915 int indexCount) {
bsalomonf21dab92014-11-13 13:33:28 -0800916 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800917 GrPipelineBuilder pipelineBuilder;
bsalomonf21dab92014-11-13 13:33:28 -0800918 GrDrawTarget::AutoReleaseGeometry geo; // must be inside AutoCheckFlush scope
commit-bot@chromium.org5a567932014-01-08 21:26:09 +0000919
egdaniel8dd688b2015-01-22 10:16:09 -0800920 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700921 if (NULL == target) {
922 return;
923 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000924
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000925 GR_CREATE_TRACE_MARKER("GrContext::drawVertices", target);
926
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000927 int colorOffset = -1, texOffset = -1;
joshualitt56995b52014-12-11 15:44:02 -0800928 SkAutoTUnref<const GrGeometryProcessor> gp(
joshualitt8059eb92014-12-29 15:10:07 -0800929 set_vertex_attributes(texCoords, colors, &colorOffset, &texOffset,
930 paint.getColor(), viewMatrix));
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000931
joshualitt56995b52014-12-11 15:44:02 -0800932 size_t vertexStride = gp->getVertexStride();
joshualitt2dd1ae02014-12-03 06:24:10 -0800933 SkASSERT(vertexStride == sizeof(SkPoint) + (SkToBool(texCoords) ? sizeof(SkPoint) : 0)
934 + (SkToBool(colors) ? sizeof(GrColor) : 0));
joshualitt9853cce2014-11-17 14:22:48 -0800935 if (!geo.set(target, vertexCount, vertexStride, indexCount)) {
joshualittd1aa8ff2014-11-04 07:47:55 -0800936 SkDebugf("Failed to get space for vertices!\n");
937 return;
938 }
939 void* curVertex = geo.vertices();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000940
joshualittd1aa8ff2014-11-04 07:47:55 -0800941 for (int i = 0; i < vertexCount; ++i) {
942 *((SkPoint*)curVertex) = positions[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000943
joshualittd1aa8ff2014-11-04 07:47:55 -0800944 if (texOffset >= 0) {
945 *(SkPoint*)((intptr_t)curVertex + texOffset) = texCoords[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000946 }
joshualittd1aa8ff2014-11-04 07:47:55 -0800947 if (colorOffset >= 0) {
948 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
949 }
joshualitt9853cce2014-11-17 14:22:48 -0800950 curVertex = (void*)((intptr_t)curVertex + vertexStride);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000951 }
952
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000953 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +0000954 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon49f085d2014-09-05 13:34:00 -0700955 if (indices) {
joshualittd1aa8ff2014-11-04 07:47:55 -0800956 uint16_t* curIndex = (uint16_t*)geo.indices();
957 for (int i = 0; i < indexCount; ++i) {
958 curIndex[i] = indices[i];
959 }
egdaniel8dd688b2015-01-22 10:16:09 -0800960 target->drawIndexed(&pipelineBuilder, gp, primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000961 } else {
egdaniel8dd688b2015-01-22 10:16:09 -0800962 target->drawNonIndexed(&pipelineBuilder, gp, primitiveType, 0, vertexCount);
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000963 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000964}
965
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000966///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com93c96602012-04-27 13:05:21 +0000967
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000968void GrContext::drawRRect(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -0800969 const SkMatrix& viewMatrix,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000970 const SkRRect& rrect,
egdanield58a0ba2014-06-11 10:30:05 -0700971 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000972 if (rrect.isEmpty()) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +0000973 return;
974 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000975
egdanield58a0ba2014-06-11 10:30:05 -0700976 if (strokeInfo.isDashed()) {
977 SkPath path;
978 path.addRRect(rrect);
joshualitt5531d512014-12-17 15:50:11 -0800979 this->drawPath(paint, viewMatrix, path, strokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -0700980 return;
981 }
982
bsalomonf21dab92014-11-13 13:33:28 -0800983 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -0800984 GrPipelineBuilder pipelineBuilder;
985 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -0700986 if (NULL == target) {
987 return;
988 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000989
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000990 GR_CREATE_TRACE_MARKER("GrContext::drawRRect", target);
991
egdanield58a0ba2014-06-11 10:30:05 -0700992 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
993
joshualitt2e3b3e32014-12-09 13:31:14 -0800994 GrColor color = paint.getColor();
egdaniel8dd688b2015-01-22 10:16:09 -0800995 if (!fOvalRenderer->drawRRect(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
996 rrect, strokeRec)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000997 SkPath path;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000998 path.addRRect(rrect);
egdaniel8dd688b2015-01-22 10:16:09 -0800999 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
1000 path, strokeInfo);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001001 }
1002}
1003
1004///////////////////////////////////////////////////////////////////////////////
1005
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001006void GrContext::drawDRRect(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -08001007 const SkMatrix& viewMatrix,
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001008 const SkRRect& outer,
1009 const SkRRect& inner) {
1010 if (outer.isEmpty()) {
1011 return;
1012 }
1013
bsalomonf21dab92014-11-13 13:33:28 -08001014 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -08001015 GrPipelineBuilder pipelineBuilder;
1016 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001017
1018 GR_CREATE_TRACE_MARKER("GrContext::drawDRRect", target);
1019
joshualitt2e3b3e32014-12-09 13:31:14 -08001020 GrColor color = paint.getColor();
egdaniel8dd688b2015-01-22 10:16:09 -08001021 if (!fOvalRenderer->drawDRRect(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
1022 outer, inner)) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001023 SkPath path;
1024 path.addRRect(inner);
1025 path.addRRect(outer);
1026 path.setFillType(SkPath::kEvenOdd_FillType);
1027
egdanield58a0ba2014-06-11 10:30:05 -07001028 GrStrokeInfo fillRec(SkStrokeRec::kFill_InitStyle);
egdaniel8dd688b2015-01-22 10:16:09 -08001029 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
1030 path, fillRec);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +00001031 }
1032}
1033
1034///////////////////////////////////////////////////////////////////////////////
1035
bsalomon@google.com93c96602012-04-27 13:05:21 +00001036void GrContext::drawOval(const GrPaint& paint,
joshualitt5531d512014-12-17 15:50:11 -08001037 const SkMatrix& viewMatrix,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001038 const SkRect& oval,
egdanield58a0ba2014-06-11 10:30:05 -07001039 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001040 if (oval.isEmpty()) {
1041 return;
1042 }
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001043
egdanield58a0ba2014-06-11 10:30:05 -07001044 if (strokeInfo.isDashed()) {
1045 SkPath path;
1046 path.addOval(oval);
joshualitt5531d512014-12-17 15:50:11 -08001047 this->drawPath(paint, viewMatrix, path, strokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -07001048 return;
1049 }
1050
bsalomonf21dab92014-11-13 13:33:28 -08001051 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -08001052 GrPipelineBuilder pipelineBuilder;
1053 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001054 if (NULL == target) {
1055 return;
1056 }
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001057
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001058 GR_CREATE_TRACE_MARKER("GrContext::drawOval", target);
1059
egdanield58a0ba2014-06-11 10:30:05 -07001060 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1061
joshualitt2e3b3e32014-12-09 13:31:14 -08001062 GrColor color = paint.getColor();
egdaniel8dd688b2015-01-22 10:16:09 -08001063 if (!fOvalRenderer->drawOval(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
1064 oval, strokeRec)) {
bsalomon@google.com93c96602012-04-27 13:05:21 +00001065 SkPath path;
jvanverth@google.com46d3d392013-01-22 13:34:01 +00001066 path.addOval(oval);
egdaniel8dd688b2015-01-22 10:16:09 -08001067 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
1068 path, strokeInfo);
skia.committer@gmail.com98ded842013-01-23 07:06:17 +00001069 }
bsalomon@google.com150d2842012-01-12 20:19:56 +00001070}
bsalomon@google.com27847de2011-02-22 20:59:41 +00001071
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001072// Can 'path' be drawn as a pair of filled nested rectangles?
1073static bool is_nested_rects(GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -08001074 GrPipelineBuilder* pipelineBuilder,
joshualitt2e3b3e32014-12-09 13:31:14 -08001075 GrColor color,
joshualitt8059eb92014-12-29 15:10:07 -08001076 const SkMatrix& viewMatrix,
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001077 const SkPath& path,
1078 const SkStrokeRec& stroke,
bsalomon9c0822a2014-08-11 11:07:48 -07001079 SkRect rects[2]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001080 SkASSERT(stroke.isFillStyle());
1081
1082 if (path.isInverseFillType()) {
1083 return false;
1084 }
1085
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001086 // TODO: this restriction could be lifted if we were willing to apply
1087 // the matrix to all the points individually rather than just to the rect
joshualitt8059eb92014-12-29 15:10:07 -08001088 if (!viewMatrix.preservesAxisAlignment()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001089 return false;
1090 }
1091
egdaniel8dd688b2015-01-22 10:16:09 -08001092 if (!pipelineBuilder->canTweakAlphaForCoverage() &&
1093 !pipelineBuilder->canUseFracCoveragePrimProc(color, *target->caps())) {
bsalomon9c0822a2014-08-11 11:07:48 -07001094 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001095 }
1096
1097 SkPath::Direction dirs[2];
1098 if (!path.isNestedRects(rects, dirs)) {
1099 return false;
1100 }
1101
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001102 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001103 // The two rects need to be wound opposite to each other
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001104 return false;
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001105 }
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001106
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001107 // Right now, nested rects where the margin is not the same width
1108 // all around do not render correctly
1109 const SkScalar* outer = rects[0].asScalars();
1110 const SkScalar* inner = rects[1].asScalars();
1111
robertphillips183e9852014-10-21 11:25:37 -07001112 bool allEq = true;
1113
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001114 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
robertphillips183e9852014-10-21 11:25:37 -07001115 bool allGoE1 = margin >= SK_Scalar1;
1116
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001117 for (int i = 1; i < 4; ++i) {
1118 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
robertphillips183e9852014-10-21 11:25:37 -07001119 if (temp < SK_Scalar1) {
1120 allGoE1 = false;
1121 }
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001122 if (!SkScalarNearlyEqual(margin, temp)) {
robertphillips183e9852014-10-21 11:25:37 -07001123 allEq = false;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001124 }
1125 }
1126
robertphillips183e9852014-10-21 11:25:37 -07001127 return allEq || allGoE1;
robertphillips@google.com8d3c6402013-08-20 12:11:31 +00001128}
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001129
joshualitt5531d512014-12-17 15:50:11 -08001130void GrContext::drawPath(const GrPaint& paint,
1131 const SkMatrix& viewMatrix,
1132 const SkPath& path,
1133 const GrStrokeInfo& strokeInfo) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001134
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001135 if (path.isEmpty()) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001136 if (path.isInverseFillType()) {
joshualitt5531d512014-12-17 15:50:11 -08001137 this->drawPaint(paint, viewMatrix);
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001138 }
1139 return;
1140 }
1141
joshualitt2e3b3e32014-12-09 13:31:14 -08001142 GrColor color = paint.getColor();
egdanield58a0ba2014-06-11 10:30:05 -07001143 if (strokeInfo.isDashed()) {
egdaniele61c4112014-06-12 10:24:21 -07001144 SkPoint pts[2];
1145 if (path.isLine(pts)) {
bsalomonf21dab92014-11-13 13:33:28 -08001146 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -08001147 GrPipelineBuilder pipelineBuilder;
1148 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001149 if (NULL == target) {
1150 return;
joshualittd27f73e2014-12-29 07:43:36 -08001151 }
egdaniele61c4112014-06-12 10:24:21 -07001152
egdaniel8dd688b2015-01-22 10:16:09 -08001153 if (GrDashingEffect::DrawDashLine(fGpu, target, &pipelineBuilder, color, viewMatrix,
1154 pts, paint, strokeInfo)) {
joshualittd27f73e2014-12-29 07:43:36 -08001155 return;
egdaniele61c4112014-06-12 10:24:21 -07001156 }
1157 }
1158
1159 // Filter dashed path into new path with the dashing applied
egdanield58a0ba2014-06-11 10:30:05 -07001160 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
1161 SkTLazy<SkPath> effectPath;
1162 GrStrokeInfo newStrokeInfo(strokeInfo, false);
1163 SkStrokeRec* stroke = newStrokeInfo.getStrokeRecPtr();
1164 if (SkDashPath::FilterDashPath(effectPath.init(), path, stroke, NULL, info)) {
joshualitt5531d512014-12-17 15:50:11 -08001165 this->drawPath(paint, viewMatrix, *effectPath.get(), newStrokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -07001166 return;
1167 }
1168
joshualitt5531d512014-12-17 15:50:11 -08001169 this->drawPath(paint, viewMatrix, path, newStrokeInfo);
egdanield58a0ba2014-06-11 10:30:05 -07001170 return;
1171 }
1172
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001173 // Note that internalDrawPath may sw-rasterize the path into a scratch texture.
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001174 // Scratch textures can be recycled after they are returned to the texture
1175 // cache. This presents a potential hazard for buffered drawing. However,
1176 // the writePixels that uploads to the scratch will perform a flush so we're
1177 // OK.
bsalomonf21dab92014-11-13 13:33:28 -08001178 AutoCheckFlush acf(this);
egdaniel8dd688b2015-01-22 10:16:09 -08001179 GrPipelineBuilder pipelineBuilder;
1180 GrDrawTarget* target = this->prepareToDraw(&pipelineBuilder, &paint, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001181 if (NULL == target) {
1182 return;
1183 }
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001184
egdaniel93a37bc2014-07-21 13:47:57 -07001185 GR_CREATE_TRACE_MARKER1("GrContext::drawPath", target, "Is Convex", path.isConvex());
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001186
egdanield58a0ba2014-06-11 10:30:05 -07001187 const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec();
1188
egdaniel8dd688b2015-01-22 10:16:09 -08001189 bool useCoverageAA = paint.isAntiAlias() &&
1190 !pipelineBuilder.getRenderTarget()->isMultisampled();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001191
egdanield58a0ba2014-06-11 10:30:05 -07001192 if (useCoverageAA && strokeRec.getWidth() < 0 && !path.isConvex()) {
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001193 // Concave AA paths are expensive - try to avoid them for special cases
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001194 SkRect rects[2];
1195
egdaniel8dd688b2015-01-22 10:16:09 -08001196 if (is_nested_rects(target, &pipelineBuilder, color, viewMatrix, path, strokeRec, rects)) {
1197 fAARectRenderer->fillAANestedRects(target, &pipelineBuilder, color, viewMatrix,rects);
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001198 return;
1199 }
1200 }
1201
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001202 SkRect ovalRect;
1203 bool isOval = path.isOval(&ovalRect);
1204
joshualitt8059eb92014-12-29 15:10:07 -08001205 if (!isOval || path.isInverseFillType() ||
egdaniel8dd688b2015-01-22 10:16:09 -08001206 !fOvalRenderer->drawOval(target, &pipelineBuilder, color, viewMatrix, paint.isAntiAlias(),
joshualitt8059eb92014-12-29 15:10:07 -08001207 ovalRect, strokeRec)) {
egdaniel8dd688b2015-01-22 10:16:09 -08001208 this->internalDrawPath(target, &pipelineBuilder, viewMatrix, color, paint.isAntiAlias(),
1209 path, strokeInfo);
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001210 }
1211}
1212
joshualitt9853cce2014-11-17 14:22:48 -08001213void GrContext::internalDrawPath(GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -08001214 GrPipelineBuilder* pipelineBuilder,
joshualitt5531d512014-12-17 15:50:11 -08001215 const SkMatrix& viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -08001216 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -08001217 bool useAA,
1218 const SkPath& path,
egdanield58a0ba2014-06-11 10:30:05 -07001219 const GrStrokeInfo& strokeInfo) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001220 SkASSERT(!path.isEmpty());
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001221
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00001222 GR_CREATE_TRACE_MARKER("GrContext::internalDrawPath", target);
1223
1224
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001225 // An Assumption here is that path renderer would use some form of tweaking
1226 // the src color (either the input alpha or in the frag shader) to implement
1227 // aa. If we have some future driver-mojo path AA that can do the right
1228 // thing WRT to the blend then we'll need some query on the PR.
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001229 bool useCoverageAA = useAA &&
egdaniel8dd688b2015-01-22 10:16:09 -08001230 !pipelineBuilder->getRenderTarget()->isMultisampled() &&
1231 pipelineBuilder->canUseFracCoveragePrimProc(color, *target->caps());
bsalomon@google.com289533a2011-10-27 12:34:25 +00001232
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001233
1234 GrPathRendererChain::DrawType type =
1235 useCoverageAA ? GrPathRendererChain::kColorAntiAlias_DrawType :
joshualitt9853cce2014-11-17 14:22:48 -08001236 GrPathRendererChain::kColor_DrawType;
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001237
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001238 const SkPath* pathPtr = &path;
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001239 SkTLazy<SkPath> tmpPath;
egdanield58a0ba2014-06-11 10:30:05 -07001240 SkTCopyOnFirstWrite<SkStrokeRec> stroke(strokeInfo.getStrokeRec());
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001241
1242 // Try a 1st time without stroking the path and without allowing the SW renderer
egdaniel8dd688b2015-01-22 10:16:09 -08001243 GrPathRenderer* pr = this->getPathRenderer(target, pipelineBuilder, viewMatrix, *pathPtr,
1244 *stroke, false, type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001245
robertphillips@google.come79f3202014-02-11 16:30:21 +00001246 if (NULL == pr) {
joshualitt5531d512014-12-17 15:50:11 -08001247 if (!GrPathRenderer::IsStrokeHairlineOrEquivalent(*stroke, viewMatrix, NULL)) {
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001248 // It didn't work the 1st time, so try again with the stroked path
commit-bot@chromium.orgf0c41e22014-01-14 18:42:34 +00001249 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1250 pathPtr = tmpPath.get();
1251 stroke.writable()->setFillStyle();
commit-bot@chromium.orge0a868c2013-11-22 07:02:11 +00001252 if (pathPtr->isEmpty()) {
1253 return;
1254 }
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001255 }
1256 }
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +00001257
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001258 // This time, allow SW renderer
egdaniel8dd688b2015-01-22 10:16:09 -08001259 pr = this->getPathRenderer(target, pipelineBuilder, viewMatrix, *pathPtr, *stroke, true,
1260 type);
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001261 }
1262
robertphillips@google.come79f3202014-02-11 16:30:21 +00001263 if (NULL == pr) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001264#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -07001265 SkDebugf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001266#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001267 return;
1268 }
1269
egdaniel8dd688b2015-01-22 10:16:09 -08001270 pr->drawPath(target, pipelineBuilder, color, viewMatrix, *pathPtr, *stroke, useCoverageAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001271}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001272
bsalomon@google.com27847de2011-02-22 20:59:41 +00001273////////////////////////////////////////////////////////////////////////////////
1274
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001275void GrContext::flush(int flagsBitfield) {
robertphillips@google.come7db8d62013-07-04 11:48:52 +00001276 if (NULL == fDrawBuffer) {
1277 return;
1278 }
1279
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001280 if (kDiscard_FlushBit & flagsBitfield) {
1281 fDrawBuffer->reset();
1282 } else {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001283 fDrawBuffer->flush();
junov@google.com53a55842011-06-08 22:55:10 +00001284 }
bsalomonf21dab92014-11-13 13:33:28 -08001285 fFlushToReduceCacheSize = false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001286}
1287
bsalomon81beccc2014-10-13 12:32:55 -07001288bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes,
1289 const void* inPixels, size_t outRowBytes, void* outPixels) {
1290 SkSrcPixelInfo srcPI;
jvanverthfa1e8a72014-12-22 08:31:49 -08001291 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, NULL)) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001292 return false;
1293 }
bsalomon81beccc2014-10-13 12:32:55 -07001294 srcPI.fAlphaType = kUnpremul_SkAlphaType;
1295 srcPI.fPixels = inPixels;
1296 srcPI.fRowBytes = inRowBytes;
1297
1298 SkDstPixelInfo dstPI;
1299 dstPI.fColorType = srcPI.fColorType;
1300 dstPI.fAlphaType = kPremul_SkAlphaType;
1301 dstPI.fPixels = outPixels;
1302 dstPI.fRowBytes = outRowBytes;
1303
1304 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001305}
1306
bsalomon81beccc2014-10-13 12:32:55 -07001307bool GrContext::writeSurfacePixels(GrSurface* surface,
1308 int left, int top, int width, int height,
1309 GrPixelConfig srcConfig, const void* buffer, size_t rowBytes,
1310 uint32_t pixelOpsFlags) {
1311
1312 {
1313 GrTexture* texture = NULL;
1314 if (!(kUnpremul_PixelOpsFlag & pixelOpsFlags) && (texture = surface->asTexture()) &&
1315 fGpu->canWriteTexturePixels(texture, srcConfig)) {
1316
1317 if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) &&
1318 surface->surfacePriv().hasPendingIO()) {
1319 this->flush();
1320 }
1321 return fGpu->writeTexturePixels(texture, left, top, width, height,
1322 srcConfig, buffer, rowBytes);
1323 // Don't need to check kFlushWrites_PixelOp here, we just did a direct write so the
1324 // upload is already flushed.
1325 }
1326 }
1327
1328 // If we didn't do a direct texture write then we upload the pixels to a texture and draw.
1329 GrRenderTarget* renderTarget = surface->asRenderTarget();
1330 if (NULL == renderTarget) {
1331 return false;
1332 }
1333
1334 // We ignore the preferred config unless it is a R/B swap of the src config. In that case
1335 // we will upload the original src data to a scratch texture but we will spoof it as the swapped
1336 // config. This scratch will then have R and B swapped. We correct for this by swapping again
1337 // when drawing the scratch to the dst using a conversion effect.
1338 bool swapRAndB = false;
1339 GrPixelConfig writeConfig = srcConfig;
1340 if (GrPixelConfigSwapRAndB(srcConfig) ==
1341 fGpu->preferredWritePixelsConfig(srcConfig, renderTarget->config())) {
1342 writeConfig = GrPixelConfigSwapRAndB(srcConfig);
1343 swapRAndB = true;
1344 }
1345
bsalomonf2703d82014-10-28 14:33:06 -07001346 GrSurfaceDesc desc;
bsalomon81beccc2014-10-13 12:32:55 -07001347 desc.fWidth = width;
1348 desc.fHeight = height;
1349 desc.fConfig = writeConfig;
bsalomone3059732014-10-14 11:47:22 -07001350 SkAutoTUnref<GrTexture> texture(this->refScratchTexture(desc, kApprox_ScratchTexMatch));
1351 if (!texture) {
bsalomon81beccc2014-10-13 12:32:55 -07001352 return false;
1353 }
1354
1355 SkAutoTUnref<const GrFragmentProcessor> fp;
1356 SkMatrix textureMatrix;
1357 textureMatrix.setIDiv(texture->width(), texture->height());
1358
1359 // allocate a tmp buffer and sw convert the pixels to premul
1360 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1361
1362 if (kUnpremul_PixelOpsFlag & pixelOpsFlags) {
1363 if (!GrPixelConfigIs8888(srcConfig)) {
1364 return false;
1365 }
1366 fp.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix));
1367 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
1368 if (NULL == fp) {
1369 size_t tmpRowBytes = 4 * width;
1370 tmpPixels.reset(width * height);
1371 if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes,
1372 tmpPixels.get())) {
1373 return false;
1374 }
1375 rowBytes = tmpRowBytes;
1376 buffer = tmpPixels.get();
1377 }
1378 }
1379 if (NULL == fp) {
1380 fp.reset(GrConfigConversionEffect::Create(texture,
1381 swapRAndB,
1382 GrConfigConversionEffect::kNone_PMConversion,
1383 textureMatrix));
1384 }
1385
1386 // Even if the client told us not to flush, we still flush here. The client may have known that
1387 // writes to the original surface caused no data hazards, but they can't know that the scratch
1388 // we just got is safe.
1389 if (texture->surfacePriv().hasPendingIO()) {
1390 this->flush();
1391 }
1392 if (!fGpu->writeTexturePixels(texture, 0, 0, width, height,
1393 writeConfig, buffer, rowBytes)) {
1394 return false;
1395 }
1396
1397 SkMatrix matrix;
1398 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
1399
1400 // This function can be called in the midst of drawing another object (e.g., when uploading a
1401 // SW-rasterized clip while issuing a draw). So we push the current geometry state before
1402 // drawing a rect to the render target.
1403 // The bracket ensures we pop the stack if we wind up flushing below.
1404 {
joshualitt8059eb92014-12-29 15:10:07 -08001405 GrDrawTarget* drawTarget = this->prepareToDraw(NULL, NULL, NULL);
joshualitt9853cce2014-11-17 14:22:48 -08001406 GrDrawTarget::AutoGeometryPush agp(drawTarget);
1407
egdaniel8dd688b2015-01-22 10:16:09 -08001408 GrPipelineBuilder pipelineBuilder;
1409 pipelineBuilder.addColorProcessor(fp);
1410 pipelineBuilder.setRenderTarget(renderTarget);
1411 drawTarget->drawSimpleRect(&pipelineBuilder, GrColor_WHITE, matrix,
joshualitt8059eb92014-12-29 15:10:07 -08001412 SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)));
bsalomon81beccc2014-10-13 12:32:55 -07001413 }
1414
1415 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1416 this->flushSurfaceWrites(surface);
1417 }
1418
1419 return true;
1420}
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001421
reed@google.com7111d462014-03-25 16:20:24 +00001422// toggles between RGBA and BGRA
1423static SkColorType toggle_colortype32(SkColorType ct) {
1424 if (kRGBA_8888_SkColorType == ct) {
1425 return kBGRA_8888_SkColorType;
1426 } else {
1427 SkASSERT(kBGRA_8888_SkColorType == ct);
1428 return kRGBA_8888_SkColorType;
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001429 }
1430}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001431
bsalomon@google.com0342a852012-08-20 19:22:38 +00001432bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1433 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001434 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001435 uint32_t flags) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001436 ASSERT_OWNED_RESOURCE(target);
bsalomon89c62982014-11-03 12:08:42 -08001437 SkASSERT(target);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001438
bsalomonafbf2d62014-09-30 12:18:44 -07001439 if (!(kDontFlush_PixelOpsFlag & flags) && target->surfacePriv().hasPendingWrite()) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001440 this->flush();
1441 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001442
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001443 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001444
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001445 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1446 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1447 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001448 width, height, dstConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001449 rowBytes);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001450 // We ignore the preferred config if it is different than our config unless it is an R/B swap.
1451 // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped
1452 // config. Then we will call readPixels on the scratch with the swapped config. The swaps during
1453 // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from
1454 // dstConfig.
1455 GrPixelConfig readConfig = dstConfig;
1456 bool swapRAndB = false;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001457 if (GrPixelConfigSwapRAndB(dstConfig) ==
1458 fGpu->preferredReadPixelsConfig(dstConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001459 readConfig = GrPixelConfigSwapRAndB(readConfig);
1460 swapRAndB = true;
1461 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001462
bsalomon@google.com0342a852012-08-20 19:22:38 +00001463 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001464
bsalomon@google.com9c680582013-02-06 18:17:50 +00001465 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001466 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001467 return false;
1468 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001469
bsalomon191bcc02014-11-14 11:31:13 -08001470 SkAutoTUnref<GrTexture> tempTexture;
1471
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001472 // If the src is a texture and we would have to do conversions after read pixels, we instead
1473 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1474 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1475 // on the read back pixels.
1476 GrTexture* src = target->asTexture();
bsalomon49f085d2014-09-05 13:34:00 -07001477 if (src && (swapRAndB || unpremul || flipY)) {
bsalomon81beccc2014-10-13 12:32:55 -07001478 // Make the scratch a render so we can read its pixels.
bsalomonf2703d82014-10-28 14:33:06 -07001479 GrSurfaceDesc desc;
1480 desc.fFlags = kRenderTarget_GrSurfaceFlag;
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001481 desc.fWidth = width;
1482 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001483 desc.fConfig = readConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001484 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001485
bsalomon@google.com9c680582013-02-06 18:17:50 +00001486 // 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 +00001487 // match the passed rect. However, if we see many different size rectangles we will trash
1488 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1489 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001490 ScratchTexMatch match = kApprox_ScratchTexMatch;
1491 if (0 == left &&
1492 0 == top &&
1493 target->width() == width &&
1494 target->height() == height &&
1495 fGpu->fullReadPixelsIsFasterThanPartial()) {
1496 match = kExact_ScratchTexMatch;
1497 }
bsalomon191bcc02014-11-14 11:31:13 -08001498 tempTexture.reset(this->refScratchTexture(desc, match));
1499 if (tempTexture) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001500 // compute a matrix to perform the draw
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001501 SkMatrix textureMatrix;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001502 textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001503 textureMatrix.postIDiv(src->width(), src->height());
1504
joshualittb0a8a372014-09-23 09:50:21 -07001505 SkAutoTUnref<const GrFragmentProcessor> fp;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001506 if (unpremul) {
joshualittb0a8a372014-09-23 09:50:21 -07001507 fp.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix));
1508 if (fp) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001509 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001510 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001511 }
1512 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1513 // there is no longer any point to using the scratch.
joshualittb0a8a372014-09-23 09:50:21 -07001514 if (fp || flipY || swapRAndB) {
1515 if (!fp) {
1516 fp.reset(GrConfigConversionEffect::Create(
1517 src, swapRAndB, GrConfigConversionEffect::kNone_PMConversion,
1518 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001519 }
1520 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001521
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001522 // We protect the existing geometry here since it may not be
1523 // clear to the caller that a draw operation (i.e., drawSimpleRect)
1524 // can be invoked in this method
joshualitt5c55fef2014-10-31 14:04:35 -07001525 {
joshualitt9853cce2014-11-17 14:22:48 -08001526 GrDrawTarget::AutoGeometryPush agp(fDrawBuffer);
egdaniel8dd688b2015-01-22 10:16:09 -08001527 GrPipelineBuilder pipelineBuilder;
joshualitt5c55fef2014-10-31 14:04:35 -07001528 SkASSERT(fp);
egdaniel8dd688b2015-01-22 10:16:09 -08001529 pipelineBuilder.addColorProcessor(fp);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001530
egdaniel8dd688b2015-01-22 10:16:09 -08001531 pipelineBuilder.setRenderTarget(tempTexture->asRenderTarget());
joshualitt5c55fef2014-10-31 14:04:35 -07001532 SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
egdaniel8dd688b2015-01-22 10:16:09 -08001533 fDrawBuffer->drawSimpleRect(&pipelineBuilder, GrColor_WHITE, SkMatrix::I(),
1534 rect);
joshualitt5c55fef2014-10-31 14:04:35 -07001535 // we want to read back from the scratch's origin
1536 left = 0;
1537 top = 0;
bsalomon191bcc02014-11-14 11:31:13 -08001538 target = tempTexture->asRenderTarget();
joshualitt5c55fef2014-10-31 14:04:35 -07001539 }
1540 this->flushSurfaceWrites(target);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001541 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001542 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001543 }
joshualitt5c55fef2014-10-31 14:04:35 -07001544
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001545 if (!fGpu->readPixels(target,
1546 left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001547 readConfig, buffer, rowBytes)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001548 return false;
1549 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001550 // Perform any conversions we weren't able to perform using a scratch texture.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001551 if (unpremul || swapRAndB) {
reed@google.com7111d462014-03-25 16:20:24 +00001552 SkDstPixelInfo dstPI;
jvanverthfa1e8a72014-12-22 08:31:49 -08001553 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, NULL)) {
reed@google.com7111d462014-03-25 16:20:24 +00001554 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001555 }
reed@google.com7111d462014-03-25 16:20:24 +00001556 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1557 dstPI.fPixels = buffer;
1558 dstPI.fRowBytes = rowBytes;
1559
1560 SkSrcPixelInfo srcPI;
1561 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1562 srcPI.fAlphaType = kPremul_SkAlphaType;
1563 srcPI.fPixels = buffer;
1564 srcPI.fRowBytes = rowBytes;
1565
1566 return srcPI.convertPixelsTo(&dstPI, width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001567 }
1568 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001569}
1570
bsalomon87a94eb2014-11-03 14:28:32 -08001571void GrContext::prepareSurfaceForExternalRead(GrSurface* surface) {
1572 SkASSERT(surface);
1573 ASSERT_OWNED_RESOURCE(surface);
1574 if (surface->surfacePriv().hasPendingIO()) {
1575 this->flush();
1576 }
1577 GrRenderTarget* rt = surface->asRenderTarget();
1578 if (fGpu && rt) {
1579 fGpu->resolveRenderTarget(rt);
bsalomon41ebbdd2014-08-04 08:31:39 -07001580 }
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001581}
1582
bsalomon41ebbdd2014-08-04 08:31:39 -07001583void GrContext::discardRenderTarget(GrRenderTarget* renderTarget) {
1584 SkASSERT(renderTarget);
1585 ASSERT_OWNED_RESOURCE(renderTarget);
bsalomonf21dab92014-11-13 13:33:28 -08001586 AutoCheckFlush acf(this);
joshualitt8059eb92014-12-29 15:10:07 -08001587 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, &acf);
bsalomon41ebbdd2014-08-04 08:31:39 -07001588 if (NULL == target) {
1589 return;
1590 }
1591 target->discard(renderTarget);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001592}
1593
bsalomonf80bfed2014-10-07 05:56:02 -07001594void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
1595 const SkIPoint& dstPoint, uint32_t pixelOpsFlags) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001596 if (NULL == src || NULL == dst) {
1597 return;
1598 }
bsalomone3d4bf22014-09-23 09:15:03 -07001599 ASSERT_OWNED_RESOURCE(src);
junov2bb52102014-09-29 10:18:59 -07001600 ASSERT_OWNED_RESOURCE(dst);
Brian Salomon34a98952014-09-24 11:41:24 -04001601
bsalomonf80bfed2014-10-07 05:56:02 -07001602 // Since we're going to the draw target and not GPU, no need to check kNoFlush
1603 // here.
junov96c118e2014-09-26 13:09:47 -07001604
joshualitt8059eb92014-12-29 15:10:07 -08001605 GrDrawTarget* target = this->prepareToDraw(NULL, NULL, NULL);
junov96c118e2014-09-26 13:09:47 -07001606 if (NULL == target) {
1607 return;
1608 }
junov96c118e2014-09-26 13:09:47 -07001609 target->copySurface(dst, src, srcRect, dstPoint);
bsalomonf80bfed2014-10-07 05:56:02 -07001610
1611 if (kFlushWrites_PixelOp & pixelOpsFlags) {
1612 this->flush();
1613 }
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001614}
1615
bsalomonf80bfed2014-10-07 05:56:02 -07001616void GrContext::flushSurfaceWrites(GrSurface* surface) {
1617 if (surface->surfacePriv().hasPendingWrite()) {
1618 this->flush();
1619 }
1620}
1621
egdaniel8dd688b2015-01-22 10:16:09 -08001622GrDrawTarget* GrContext::prepareToDraw(GrPipelineBuilder* pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -08001623 const GrPaint* paint,
1624 const AutoCheckFlush* acf) {
bsalomon41ebbdd2014-08-04 08:31:39 -07001625 if (NULL == fGpu) {
1626 return NULL;
1627 }
1628
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001629 ASSERT_OWNED_RESOURCE(fRenderTarget.get());
egdaniel8dd688b2015-01-22 10:16:09 -08001630 if (pipelineBuilder) {
joshualitt2fdeda02015-01-22 07:11:44 -08001631 SkASSERT(paint && acf);
egdaniel8dd688b2015-01-22 10:16:09 -08001632 pipelineBuilder->setFromPaint(*paint, fRenderTarget.get());
1633 pipelineBuilder->setState(GrPipelineBuilder::kClip_StateBit,
1634 fClip && !fClip->fClipStack->isWideOpen());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001635 }
joshualitt5c55fef2014-10-31 14:04:35 -07001636 fDrawBuffer->setClip(fClip);
joshualitt5c55fef2014-10-31 14:04:35 -07001637 return fDrawBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001638}
1639
robertphillips@google.com72176b22012-05-23 13:19:12 +00001640/*
1641 * This method finds a path renderer that can draw the specified path on
1642 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001643 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001644 * can be individually allowed/disallowed via the "allowSW" boolean.
1645 */
joshualitt9853cce2014-11-17 14:22:48 -08001646GrPathRenderer* GrContext::getPathRenderer(const GrDrawTarget* target,
egdaniel8dd688b2015-01-22 10:16:09 -08001647 const GrPipelineBuilder* pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -08001648 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -08001649 const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001650 const SkStrokeRec& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001651 bool allowSW,
1652 GrPathRendererChain::DrawType drawType,
1653 GrPathRendererChain::StencilSupport* stencilSupport) {
1654
bsalomon@google.com30085192011-08-19 15:42:31 +00001655 if (NULL == fPathRendererChain) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001656 fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this));
bsalomon@google.com30085192011-08-19 15:42:31 +00001657 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001658
joshualitt9853cce2014-11-17 14:22:48 -08001659 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(target,
egdaniel8dd688b2015-01-22 10:16:09 -08001660 pipelineBuilder,
joshualitt8059eb92014-12-29 15:10:07 -08001661 viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -08001662 path,
sugoi@google.com12b4e272012-12-06 20:13:11 +00001663 stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001664 drawType,
1665 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +00001666
1667 if (NULL == pr && allowSW) {
1668 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001669 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001670 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001671 pr = fSoftwarePathRenderer;
1672 }
1673
1674 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001675}
1676
bsalomon@google.com27847de2011-02-22 20:59:41 +00001677////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00001678bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
1679 return fGpu->caps()->isConfigRenderable(config, withMSAA);
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001680}
1681
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +00001682int GrContext::getRecommendedSampleCount(GrPixelConfig config,
1683 SkScalar dpi) const {
1684 if (!this->isConfigRenderable(config, true)) {
1685 return 0;
1686 }
1687 int chosenSampleCount = 0;
1688 if (fGpu->caps()->pathRenderingSupport()) {
1689 if (dpi >= 250.0f) {
1690 chosenSampleCount = 4;
1691 } else {
1692 chosenSampleCount = 16;
1693 }
1694 }
1695 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ?
1696 chosenSampleCount : 0;
1697}
1698
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001699void GrContext::setupDrawBuffer() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001700 SkASSERT(NULL == fDrawBuffer);
1701 SkASSERT(NULL == fDrawBufferVBAllocPool);
1702 SkASSERT(NULL == fDrawBufferIBAllocPool);
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001703
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001704 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001705 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001706 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001707 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001708 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001709 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001710 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001711 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001712
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001713 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001714 fDrawBufferVBAllocPool,
1715 fDrawBufferIBAllocPool));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001716}
1717
bsalomon@google.com21c10c52013-06-13 17:44:07 +00001718GrDrawTarget* GrContext::getTextTarget() {
joshualitt8059eb92014-12-29 15:10:07 -08001719 return this->prepareToDraw(NULL, NULL, NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001720}
1721
1722const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1723 return fGpu->getQuadIndexBuffer();
1724}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001725
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001726namespace {
1727void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1728 GrConfigConversionEffect::PMConversion pmToUPM;
1729 GrConfigConversionEffect::PMConversion upmToPM;
1730 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1731 *pmToUPMValue = pmToUPM;
1732 *upmToPMValue = upmToPM;
1733}
1734}
1735
joshualittb0a8a372014-09-23 09:50:21 -07001736const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture,
1737 bool swapRAndB,
1738 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001739 if (!fDidTestPMConversions) {
1740 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001741 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001742 }
1743 GrConfigConversionEffect::PMConversion pmToUPM =
1744 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1745 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001746 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001747 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001748 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001749 }
1750}
1751
joshualittb0a8a372014-09-23 09:50:21 -07001752const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture,
1753 bool swapRAndB,
1754 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001755 if (!fDidTestPMConversions) {
1756 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001757 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001758 }
1759 GrConfigConversionEffect::PMConversion upmToPM =
1760 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1761 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001762 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001763 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001764 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001765 }
1766}
1767
bsalomon24db3b12015-01-23 04:24:04 -08001768void GrContext::addResourceToCache(const GrContentKey& key, GrGpuResource* resource) {
1769 resource->cacheAccess().setContentKey(key);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001770}
1771
bsalomon24db3b12015-01-23 04:24:04 -08001772GrGpuResource* GrContext::findAndRefCachedResource(const GrContentKey& key) {
1773 return fResourceCache2->findAndRefContentResource(key);
commit-bot@chromium.org95a2b0e2014-05-05 19:21:16 +00001774}
1775
egdanielbbcb38d2014-06-19 10:19:29 -07001776void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
1777 fGpu->addGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001778 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001779 fDrawBuffer->addGpuTraceMarker(marker);
1780 }
1781}
1782
1783void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
1784 fGpu->removeGpuTraceMarker(marker);
bsalomon49f085d2014-09-05 13:34:00 -07001785 if (fDrawBuffer) {
egdanielbbcb38d2014-06-19 10:19:29 -07001786 fDrawBuffer->removeGpuTraceMarker(marker);
1787 }
1788}
1789
bsalomon@google.comc4364992011-11-07 15:54:49 +00001790///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001791#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001792void GrContext::printCacheStats() const {
bsalomon71cb0c22014-11-14 12:10:14 -08001793 fResourceCache2->printStats();
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001794}
1795#endif
robertphillips754f4e92014-09-18 13:52:08 -07001796
1797#if GR_GPU_STATS
1798const GrContext::GPUStats* GrContext::gpuStats() const {
1799 return fGpu->gpuStats();
1800}
1801#endif
1802