blob: 5f255a661f2671bb32300f870cc2137c6af55413 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com27847de2011-02-22 20:59:41 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com1fadb202011-12-12 16:10:08 +000010#include "GrContext.h"
11
bsalomon@google.comb505a122012-05-31 18:40:36 +000012#include "effects/GrConvolutionEffect.h"
tomhudson@google.comaa72eab2012-07-19 18:01:07 +000013#include "effects/GrSingleTextureEffect.h"
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000014#include "effects/GrConfigConversionEffect.h"
bsalomon@google.comb505a122012-05-31 18:40:36 +000015
tomhudson@google.com278cbb42011-06-30 19:37:01 +000016#include "GrBufferAllocPool.h"
bsalomon@google.com05ef5102011-05-02 21:14:59 +000017#include "GrGpu.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000018#include "GrDrawTargetCaps.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000019#include "GrIndexBuffer.h"
20#include "GrInOrderDrawBuffer.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000021#include "GrOvalRenderer.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000022#include "GrPathRenderer.h"
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000023#include "GrPathUtils.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000024#include "GrResourceCache.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000025#include "GrSoftwarePathRenderer.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000026#include "GrStencilBuffer.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000027#include "GrTextStrike.h"
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000028#include "SkRTConf.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000029#include "SkStrokeRec.h"
bsalomon@google.com8c2fe992011-09-13 15:27:18 +000030#include "SkTLazy.h"
bsalomon@google.comc0af3172012-06-15 14:10:09 +000031#include "SkTLS.h"
tomhudson@google.com0c8d93a2011-07-01 17:08:26 +000032#include "SkTrace.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000033
reed@google.comfa35e3d2012-06-26 20:16:17 +000034SK_DEFINE_INST_COUNT(GrContext)
35SK_DEFINE_INST_COUNT(GrDrawState)
36
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000037// It can be useful to set this to false to test whether a bug is caused by using the
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000038// InOrderDrawBuffer, to compare performance of using/not using InOrderDrawBuffer, or to make
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000039// debugging simpler.
jvanverth@google.com65eb4d52013-03-19 18:51:02 +000040SK_CONF_DECLARE(bool, c_Defer, "gpu.deferContext", true,
41 "Defers rendering in GrContext via GrInOrderDrawBuffer.");
bsalomon@google.com82b0ec62013-02-07 21:02:36 +000042
43#define BUFFERED_DRAW (c_Defer ? kYes_BufferedDraw : kNo_BufferedDraw)
bsalomon@google.com27847de2011-02-22 20:59:41 +000044
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +000045#define MAX_BLUR_SIGMA 4.0f
46
bsalomon@google.comd46e2422011-09-23 17:40:07 +000047// When we're using coverage AA but the blend is incompatible (given gpu
48// limitations) should we disable AA or draw wrong?
bsalomon@google.com950d7a82011-09-28 15:05:33 +000049#define DISABLE_COVERAGE_AA_FOR_BLEND 1
bsalomon@google.comd46e2422011-09-23 17:40:07 +000050
reed@google.com4b2d3f32012-05-15 18:05:50 +000051#if GR_DEBUG
52 // change this to a 1 to see notifications when partial coverage fails
53 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
54#else
55 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
56#endif
57
robertphillips@google.com1947ba62012-10-17 13:35:24 +000058static const size_t MAX_TEXTURE_CACHE_COUNT = 2048;
djsollen@google.com42041e62012-10-29 19:24:45 +000059static const size_t MAX_TEXTURE_CACHE_BYTES = GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT * 1024 * 1024;
bsalomon@google.com27847de2011-02-22 20:59:41 +000060
bsalomon@google.com60361492012-03-15 17:47:06 +000061static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15;
bsalomon@google.com27847de2011-02-22 20:59:41 +000062static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4;
63
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000064static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11;
65static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4;
bsalomon@google.com27847de2011-02-22 20:59:41 +000066
bsalomon@google.combc4b6542011-11-19 13:56:11 +000067#define ASSERT_OWNED_RESOURCE(R) GrAssert(!(R) || (R)->getContext() == this)
68
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000069GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) {
70 GrContext* context = SkNEW(GrContext);
71 if (context->init(backend, backendContext)) {
72 return context;
73 } else {
74 context->unref();
75 return NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +000076 }
bsalomon@google.com27847de2011-02-22 20:59:41 +000077}
78
bsalomon@google.comc0af3172012-06-15 14:10:09 +000079namespace {
80void* CreateThreadInstanceCount() {
tomhudson@google.comc377baf2012-07-09 20:17:56 +000081 return SkNEW_ARGS(int, (0));
bsalomon@google.comc0af3172012-06-15 14:10:09 +000082}
83void DeleteThreadInstanceCount(void* v) {
84 delete reinterpret_cast<int*>(v);
85}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000086#define THREAD_INSTANCE_COUNT \
87 (*reinterpret_cast<int*>(SkTLS::Get(CreateThreadInstanceCount, DeleteThreadInstanceCount)))
88}
bsalomon@google.comc0af3172012-06-15 14:10:09 +000089
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000090GrContext::GrContext() {
91 ++THREAD_INSTANCE_COUNT;
92 fDrawState = NULL;
93 fGpu = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +000094 fClip = NULL;
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000095 fPathRendererChain = NULL;
96 fSoftwarePathRenderer = NULL;
97 fTextureCache = NULL;
98 fFontCache = NULL;
99 fDrawBuffer = NULL;
100 fDrawBufferVBAllocPool = NULL;
101 fDrawBufferIBAllocPool = NULL;
102 fAARectRenderer = NULL;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000103 fOvalRenderer = NULL;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000104 fViewMatrix.reset();
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000105}
106
107bool GrContext::init(GrBackend backend, GrBackendContext backendContext) {
108 GrAssert(NULL == fGpu);
109
110 fGpu = GrGpu::Create(backend, backendContext, this);
111 if (NULL == fGpu) {
112 return false;
113 }
114
115 fDrawState = SkNEW(GrDrawState);
116 fGpu->setDrawState(fDrawState);
117
118
119 fTextureCache = SkNEW_ARGS(GrResourceCache,
120 (MAX_TEXTURE_CACHE_COUNT,
121 MAX_TEXTURE_CACHE_BYTES));
122 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
123
124 fLastDrawWasBuffered = kNo_BufferedDraw;
125
126 fAARectRenderer = SkNEW(GrAARectRenderer);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000127 fOvalRenderer = SkNEW(GrOvalRenderer);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000128
129 fDidTestPMConversions = false;
130
131 this->setupDrawBuffer();
132
133 return true;
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000134}
135
136int GrContext::GetThreadInstanceCount() {
137 return THREAD_INSTANCE_COUNT;
138}
139
bsalomon@google.com27847de2011-02-22 20:59:41 +0000140GrContext::~GrContext() {
robertphillips@google.comcdb426d2012-09-24 19:33:59 +0000141 for (int i = 0; i < fCleanUpData.count(); ++i) {
142 (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo);
143 }
144
bsalomon@google.com733c0622013-04-24 17:59:32 +0000145 if (NULL == fGpu) {
146 return;
147 }
148
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000149 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000150
151 // Since the gpu can hold scratch textures, give it a chance to let go
152 // of them before freeing the texture cache
153 fGpu->purgeResources();
154
bsalomon@google.com27847de2011-02-22 20:59:41 +0000155 delete fTextureCache;
robertphillips@google.comeb9b3e12012-09-11 12:50:53 +0000156 fTextureCache = NULL;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000157 delete fFontCache;
158 delete fDrawBuffer;
159 delete fDrawBufferVBAllocPool;
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +0000160 delete fDrawBufferIBAllocPool;
bsalomon@google.com30085192011-08-19 15:42:31 +0000161
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000162 fAARectRenderer->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000163 fOvalRenderer->unref();
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000164
bsalomon@google.com205d4602011-04-25 12:43:45 +0000165 fGpu->unref();
bsalomon@google.com30085192011-08-19 15:42:31 +0000166 GrSafeUnref(fPathRendererChain);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000167 GrSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000168 fDrawState->unref();
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000169
170 --THREAD_INSTANCE_COUNT;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000171}
172
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000173void GrContext::contextLost() {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000174 this->contextDestroyed();
junov@google.com53a55842011-06-08 22:55:10 +0000175 this->setupDrawBuffer();
176}
177
178void GrContext::contextDestroyed() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000179 // abandon first to so destructors
180 // don't try to free the resources in the API.
181 fGpu->abandonResources();
182
bsalomon@google.com30085192011-08-19 15:42:31 +0000183 // a path renderer may be holding onto resources that
184 // are now unusable
185 GrSafeSetNull(fPathRendererChain);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000186 GrSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000187
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000188 delete fDrawBuffer;
189 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000190
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000191 delete fDrawBufferVBAllocPool;
192 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000193
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000194 delete fDrawBufferIBAllocPool;
195 fDrawBufferIBAllocPool = NULL;
196
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000197 fAARectRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000198
bsalomon@google.coma2921122012-08-28 12:34:17 +0000199 fTextureCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000200 fFontCache->freeAll();
201 fGpu->markContextDirty();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000202}
203
204void GrContext::resetContext() {
205 fGpu->markContextDirty();
206}
207
208void GrContext::freeGpuResources() {
209 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000210
robertphillips@google.comff175842012-05-14 19:31:39 +0000211 fGpu->purgeResources();
212
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000213 fAARectRenderer->reset();
214
bsalomon@google.coma2921122012-08-28 12:34:17 +0000215 fTextureCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000216 fFontCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000217 // a path renderer may be holding onto resources
218 GrSafeSetNull(fPathRendererChain);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000219 GrSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000220}
221
twiz@google.com05e70242012-01-27 19:12:00 +0000222size_t GrContext::getGpuTextureCacheBytes() const {
223 return fTextureCache->getCachedResourceBytes();
224}
225
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000226////////////////////////////////////////////////////////////////////////////////
227
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000228namespace {
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000229
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000230void scale_rect(SkRect* rect, float xScale, float yScale) {
robertphillips@google.com5af56062012-04-27 15:39:52 +0000231 rect->fLeft = SkScalarMul(rect->fLeft, SkFloatToScalar(xScale));
232 rect->fTop = SkScalarMul(rect->fTop, SkFloatToScalar(yScale));
233 rect->fRight = SkScalarMul(rect->fRight, SkFloatToScalar(xScale));
234 rect->fBottom = SkScalarMul(rect->fBottom, SkFloatToScalar(yScale));
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000235}
236
bsalomon@google.comb505a122012-05-31 18:40:36 +0000237float adjust_sigma(float sigma, int *scaleFactor, int *radius) {
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000238 *scaleFactor = 1;
239 while (sigma > MAX_BLUR_SIGMA) {
240 *scaleFactor *= 2;
241 sigma *= 0.5f;
242 }
bsalomon@google.comb505a122012-05-31 18:40:36 +0000243 *radius = static_cast<int>(ceilf(sigma * 3.0f));
244 GrAssert(*radius <= GrConvolutionEffect::kMaxKernelRadius);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000245 return sigma;
246}
247
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000248void convolve_gaussian(GrDrawTarget* target,
bsalomon@google.comb505a122012-05-31 18:40:36 +0000249 GrTexture* texture,
250 const SkRect& rect,
251 float sigma,
252 int radius,
253 Gr1DKernelEffect::Direction direction) {
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000254 GrRenderTarget* rt = target->drawState()->getRenderTarget();
255 GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kReset_ASRInit);
256 GrDrawState* drawState = target->drawState();
257 drawState->setRenderTarget(rt);
bsalomon@google.comc5fae9e2013-01-24 19:00:02 +0000258 SkAutoTUnref<GrEffectRef> conv(GrConvolutionEffect::CreateGaussian(texture,
bsalomon@google.com6340a412013-01-22 19:55:59 +0000259 direction,
260 radius,
261 sigma));
bsalomon@google.comadc65362013-01-28 14:26:09 +0000262 drawState->setEffect(0, conv);
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000263 target->drawSimpleRect(rect, NULL);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000264}
265
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000266}
267
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000268////////////////////////////////////////////////////////////////////////////////
269
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000270GrTexture* GrContext::findAndRefTexture(const GrTextureDesc& desc,
271 const GrCacheID& cacheID,
272 const GrTextureParams* params) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000273 GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheID);
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000274 GrResource* resource = fTextureCache->find(resourceKey);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000275 SkSafeRef(resource);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000276 return static_cast<GrTexture*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000277}
278
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000279bool GrContext::isTextureInCache(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000280 const GrCacheID& cacheID,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000281 const GrTextureParams* params) const {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000282 GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheID);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000283 return fTextureCache->hasKey(resourceKey);
284}
285
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000286void GrContext::addStencilBuffer(GrStencilBuffer* sb) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +0000287 ASSERT_OWNED_RESOURCE(sb);
robertphillips@google.com46a86002012-08-08 10:42:44 +0000288
289 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(),
290 sb->height(),
291 sb->numSamples());
robertphillips@google.com209a1142012-10-31 12:25:21 +0000292 fTextureCache->addResource(resourceKey, sb);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000293}
294
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000295GrStencilBuffer* GrContext::findStencilBuffer(int width, int height,
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000296 int sampleCnt) {
robertphillips@google.com46a86002012-08-08 10:42:44 +0000297 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width,
298 height,
299 sampleCnt);
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000300 GrResource* resource = fTextureCache->find(resourceKey);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000301 return static_cast<GrStencilBuffer*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000302}
303
bsalomon@google.com27847de2011-02-22 20:59:41 +0000304static void stretchImage(void* dst,
305 int dstW,
306 int dstH,
307 void* src,
308 int srcW,
309 int srcH,
310 int bpp) {
311 GrFixed dx = (srcW << 16) / dstW;
312 GrFixed dy = (srcH << 16) / dstH;
313
314 GrFixed y = dy >> 1;
315
316 int dstXLimit = dstW*bpp;
317 for (int j = 0; j < dstH; ++j) {
318 GrFixed x = dx >> 1;
319 void* srcRow = (uint8_t*)src + (y>>16)*srcW*bpp;
320 void* dstRow = (uint8_t*)dst + j*dstW*bpp;
321 for (int i = 0; i < dstXLimit; i += bpp) {
322 memcpy((uint8_t*) dstRow + i,
323 (uint8_t*) srcRow + (x>>16)*bpp,
324 bpp);
325 x += dx;
326 }
327 y += dy;
328 }
329}
330
robertphillips@google.com42903302013-04-20 12:26:07 +0000331namespace {
332
333// position + local coordinate
334extern const GrVertexAttrib gVertexAttribs[] = {
335 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
336 {kVec2f_GrVertexAttribType, sizeof(GrPoint), kLocalCoord_GrVertexAttribBinding}
337};
338
339};
340
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000341// The desired texture is NPOT and tiled but that isn't supported by
robertphillips@google.com3319f332012-08-13 18:00:36 +0000342// the current hardware. Resize the texture to be a POT
343GrTexture* GrContext::createResizedTexture(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000344 const GrCacheID& cacheID,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000345 void* srcData,
346 size_t rowBytes,
347 bool needsFiltering) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000348 SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, cacheID, NULL));
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000349 if (NULL == clampedTexture) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000350 clampedTexture.reset(this->createTexture(NULL, desc, cacheID, srcData, rowBytes));
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000351
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000352 if (NULL == clampedTexture) {
robertphillips@google.com3319f332012-08-13 18:00:36 +0000353 return NULL;
354 }
355 }
robertphillips@google.com0d25eef2012-09-11 21:25:51 +0000356
robertphillips@google.com3319f332012-08-13 18:00:36 +0000357 GrTextureDesc rtDesc = desc;
358 rtDesc.fFlags = rtDesc.fFlags |
359 kRenderTarget_GrTextureFlagBit |
360 kNoStencil_GrTextureFlagBit;
361 rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64));
362 rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64));
363
364 GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0);
365
366 if (NULL != texture) {
367 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
368 GrDrawState* drawState = fGpu->drawState();
369 drawState->setRenderTarget(texture->asRenderTarget());
370
371 // if filtering is not desired then we want to ensure all
372 // texels in the resampled image are copies of texels from
373 // the original.
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000374 GrTextureParams params(SkShader::kClamp_TileMode, needsFiltering);
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000375 drawState->createTextureEffect(0, clampedTexture, SkMatrix::I(), params);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000376
robertphillips@google.com42903302013-04-20 12:26:07 +0000377 drawState->setVertexAttribs<gVertexAttribs>(SK_ARRAY_COUNT(gVertexAttribs));
jvanverth@google.com054ae992013-04-01 20:06:51 +0000378
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000379 GrDrawTarget::AutoReleaseGeometry arg(fGpu, 4, 0);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000380
381 if (arg.succeeded()) {
382 GrPoint* verts = (GrPoint*) arg.vertices();
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000383 verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(GrPoint));
384 verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(GrPoint));
385 fGpu->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000386 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000387 } else {
388 // TODO: Our CPU stretch doesn't filter. But we create separate
bsalomon@google.com08283af2012-10-26 13:01:20 +0000389 // stretched textures when the texture params is either filtered or
robertphillips@google.com3319f332012-08-13 18:00:36 +0000390 // not. Either implement filtered stretch blit on CPU or just create
391 // one when FBO case fails.
392
393 rtDesc.fFlags = kNone_GrTextureFlags;
394 // no longer need to clamp at min RT size.
395 rtDesc.fWidth = GrNextPow2(desc.fWidth);
396 rtDesc.fHeight = GrNextPow2(desc.fHeight);
397 int bpp = GrBytesPerPixel(desc.fConfig);
bsalomon@google.com08283af2012-10-26 13:01:20 +0000398 SkAutoSMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000399 stretchImage(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight,
bsalomon@google.com08283af2012-10-26 13:01:20 +0000400 srcData, desc.fWidth, desc.fHeight, bpp);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000401
402 size_t stretchedRowBytes = rtDesc.fWidth * bpp;
403
jvanverth@google.com65eb4d52013-03-19 18:51:02 +0000404 SkDEBUGCODE(GrTexture* texture = )fGpu->createTexture(rtDesc, stretchedPixels.get(),
405 stretchedRowBytes);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000406 GrAssert(NULL != texture);
407 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000408
409 return texture;
410}
411
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000412GrTexture* GrContext::createTexture(const GrTextureParams* params,
413 const GrTextureDesc& desc,
414 const GrCacheID& cacheID,
415 void* srcData,
416 size_t rowBytes) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000417 SK_TRACE_EVENT0("GrContext::createTexture");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000418
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000419 GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheID);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000420
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000421 GrTexture* texture;
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000422 if (GrTexture::NeedsResizing(resourceKey)) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000423 texture = this->createResizedTexture(desc, cacheID,
424 srcData, rowBytes,
425 GrTexture::NeedsFiltering(resourceKey));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000426 } else {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000427 texture= fGpu->createTexture(desc, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000428 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000429
430 if (NULL != texture) {
robertphillips@google.com209a1142012-10-31 12:25:21 +0000431 fTextureCache->addResource(resourceKey, texture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000432 }
433
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000434 return texture;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000435}
436
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000437GrTexture* GrContext::lockAndRefScratchTexture(const GrTextureDesc& inDesc, ScratchTexMatch match) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000438 GrTextureDesc desc = inDesc;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000439
rileya@google.com2afb8ec2012-08-23 14:08:57 +0000440 GrAssert((desc.fFlags & kRenderTarget_GrTextureFlagBit) ||
441 !(desc.fFlags & kNoStencil_GrTextureFlagBit));
442
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000443 if (kApprox_ScratchTexMatch == match) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000444 // bin by pow2 with a reasonable min
bsalomon@google.com40db6dc2013-03-06 16:35:49 +0000445 static const int MIN_SIZE = 16;
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000446 desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth));
447 desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight));
448 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000449
robertphillips@google.com13f181f2013-03-02 12:02:08 +0000450 // Renderable A8 targets are not universally supported (e.g., not on ANGLE)
451 GrAssert(this->isConfigRenderable(kAlpha_8_GrPixelConfig) ||
452 !(desc.fFlags & kRenderTarget_GrTextureFlagBit) ||
453 (desc.fConfig != kAlpha_8_GrPixelConfig));
454
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000455 GrResource* resource = NULL;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000456 int origWidth = desc.fWidth;
457 int origHeight = desc.fHeight;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000458
459 do {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000460 GrResourceKey key = GrTexture::ComputeScratchKey(desc);
robertphillips@google.com209a1142012-10-31 12:25:21 +0000461 // Ensure we have exclusive access to the texture so future 'find' calls don't return it
462 resource = fTextureCache->find(key, GrResourceCache::kHide_OwnershipFlag);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000463 if (NULL != resource) {
464 resource->ref();
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000465 break;
466 }
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000467 if (kExact_ScratchTexMatch == match) {
468 break;
469 }
bsalomon@google.com40db6dc2013-03-06 16:35:49 +0000470 // We had a cache miss and we are in approx mode, relax the fit of the flags.
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000471
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000472 // We no longer try to reuse textures that were previously used as render targets in
rileya@google.com2afb8ec2012-08-23 14:08:57 +0000473 // situations where no RT is needed; doing otherwise can confuse the video driver and
474 // cause significant performance problems in some cases.
475 if (desc.fFlags & kNoStencil_GrTextureFlagBit) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000476 desc.fFlags = desc.fFlags & ~kNoStencil_GrTextureFlagBit;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000477 } else {
478 break;
479 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000480
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000481 } while (true);
482
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000483 if (NULL == resource) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000484 desc.fFlags = inDesc.fFlags;
485 desc.fWidth = origWidth;
486 desc.fHeight = origHeight;
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000487 GrTexture* texture = fGpu->createTexture(desc, NULL, 0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000488 if (NULL != texture) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000489 GrResourceKey key = GrTexture::ComputeScratchKey(texture->desc());
robertphillips@google.com209a1142012-10-31 12:25:21 +0000490 // Make the resource exclusive so future 'find' calls don't return it
491 fTextureCache->addResource(key, texture, GrResourceCache::kHide_OwnershipFlag);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000492 resource = texture;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000493 }
494 }
495
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000496 return static_cast<GrTexture*>(resource);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000497}
498
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000499void GrContext::addExistingTextureToCache(GrTexture* texture) {
500
501 if (NULL == texture) {
502 return;
503 }
504
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000505 // This texture should already have a cache entry since it was once
506 // attached
507 GrAssert(NULL != texture->getCacheEntry());
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000508
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000509 // Conceptually, the cache entry is going to assume responsibility
510 // for the creation ref.
511 GrAssert(1 == texture->getRefCnt());
512
513 // Since this texture came from an AutoScratchTexture it should
514 // still be in the exclusive pile
515 fTextureCache->makeNonExclusive(texture->getCacheEntry());
516
robertphillips@google.com50a035d2012-09-07 19:44:33 +0000517 this->purgeCache();
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000518}
519
robertphillips@google.coma9b06232012-08-30 11:06:31 +0000520
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000521void GrContext::unlockScratchTexture(GrTexture* texture) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000522 ASSERT_OWNED_RESOURCE(texture);
523 GrAssert(NULL != texture->getCacheEntry());
524
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000525 // If this is a scratch texture we detached it from the cache
526 // while it was locked (to avoid two callers simultaneously getting
527 // the same texture).
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000528 if (texture->getCacheEntry()->key().isScratch()) {
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000529 fTextureCache->makeNonExclusive(texture->getCacheEntry());
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000530 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000531
robertphillips@google.com50a035d2012-09-07 19:44:33 +0000532 this->purgeCache();
533}
534
535void GrContext::purgeCache() {
robertphillips@google.comeb9b3e12012-09-11 12:50:53 +0000536 if (NULL != fTextureCache) {
537 fTextureCache->purgeAsNeeded();
538 }
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000539}
540
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000541GrTexture* GrContext::createUncachedTexture(const GrTextureDesc& descIn,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000542 void* srcData,
543 size_t rowBytes) {
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000544 GrTextureDesc descCopy = descIn;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000545 return fGpu->createTexture(descCopy, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000546}
547
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000548void GrContext::getTextureCacheLimits(int* maxTextures,
549 size_t* maxTextureBytes) const {
550 fTextureCache->getLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000551}
552
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000553void GrContext::setTextureCacheLimits(int maxTextures, size_t maxTextureBytes) {
554 fTextureCache->setLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000555}
556
bsalomon@google.com91958362011-06-13 17:58:13 +0000557int GrContext::getMaxTextureSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000558 return fGpu->caps()->maxTextureSize();
bsalomon@google.com91958362011-06-13 17:58:13 +0000559}
560
561int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000562 return fGpu->caps()->maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000563}
564
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000565int GrContext::getMaxSampleCount() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000566 return fGpu->caps()->maxSampleCount();
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000567}
568
bsalomon@google.com27847de2011-02-22 20:59:41 +0000569///////////////////////////////////////////////////////////////////////////////
570
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000571GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) {
572 return fGpu->wrapBackendTexture(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000573}
574
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000575GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
576 return fGpu->wrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000577}
578
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000579///////////////////////////////////////////////////////////////////////////////
580
bsalomon@google.comb8670992012-07-25 21:27:09 +0000581bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000582 int width, int height) const {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000583 const GrDrawTargetCaps* caps = fGpu->caps();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000584 if (!caps->eightBitPaletteSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000585 return false;
586 }
587
bsalomon@google.com27847de2011-02-22 20:59:41 +0000588 bool isPow2 = GrIsPow2(width) && GrIsPow2(height);
589
590 if (!isPow2) {
bsalomon@google.comb8670992012-07-25 21:27:09 +0000591 bool tiled = NULL != params && params->isTiled();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000592 if (tiled && !caps->npotTextureTileSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000593 return false;
594 }
595 }
596 return true;
597}
598
bsalomon@google.com27847de2011-02-22 20:59:41 +0000599
bsalomon@google.com27847de2011-02-22 20:59:41 +0000600////////////////////////////////////////////////////////////////////////////////
601
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000602void GrContext::clear(const GrIRect* rect,
603 const GrColor color,
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000604 GrRenderTarget* target) {
bsalomon@google.com82b0ec62013-02-07 21:02:36 +0000605 this->prepareToDraw(NULL, BUFFERED_DRAW)->clear(rect, color, target);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000606}
607
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000608void GrContext::drawPaint(const GrPaint& origPaint) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000609 // set rect to be big enough to fill the space, but not super-huge, so we
610 // don't overflow fixed-point implementations
bsalomon@google.comd302f142011-03-03 13:54:13 +0000611 GrRect r;
612 r.setLTRB(0, 0,
bsalomon@google.com81712882012-11-01 17:12:34 +0000613 SkIntToScalar(getRenderTarget()->width()),
614 SkIntToScalar(getRenderTarget()->height()));
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000615 SkMatrix inverse;
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000616 SkTCopyOnFirstWrite<GrPaint> paint(origPaint);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000617 AutoMatrix am;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000618
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000619 // We attempt to map r by the inverse matrix and draw that. mapRect will
620 // map the four corners and bound them with a new rect. This will not
621 // produce a correct result for some perspective matrices.
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000622 if (!this->getMatrix().hasPerspective()) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000623 if (!fViewMatrix.invert(&inverse)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000624 GrPrintf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000625 return;
626 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000627 inverse.mapRect(&r);
628 } else {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000629 if (!am.setIdentity(this, paint.writable())) {
630 GrPrintf("Could not invert matrix\n");
631 return;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000632 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000633 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000634 // by definition this fills the entire clip, no need for AA
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000635 if (paint->isAntiAlias()) {
636 paint.writable()->setAntiAlias(false);
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000637 }
bsalomon@google.com5dc26b92012-10-11 19:32:32 +0000638 this->drawRect(*paint, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000639}
640
bsalomon@google.com205d4602011-04-25 12:43:45 +0000641////////////////////////////////////////////////////////////////////////////////
642
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000643namespace {
644inline bool disable_coverage_aa_for_blend(GrDrawTarget* target) {
645 return DISABLE_COVERAGE_AA_FOR_BLEND && !target->canApplyCoverage();
646}
647}
648
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000649////////////////////////////////////////////////////////////////////////////////
650
bsalomon@google.com27847de2011-02-22 20:59:41 +0000651/* create a triangle strip that strokes the specified triangle. There are 8
652 unique vertices, but we repreat the last 2 to close up. Alternatively we
653 could use an indices array, and then only send 8 verts, but not sure that
654 would be faster.
655 */
bsalomon@google.com205d4602011-04-25 12:43:45 +0000656static void setStrokeRectStrip(GrPoint verts[10], GrRect rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000657 SkScalar width) {
658 const SkScalar rad = SkScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000659 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000660
661 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
662 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
663 verts[2].set(rect.fRight - rad, rect.fTop + rad);
664 verts[3].set(rect.fRight + rad, rect.fTop - rad);
665 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
666 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
667 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
668 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
669 verts[8] = verts[0];
670 verts[9] = verts[1];
671}
672
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000673static bool isIRect(const GrRect& r) {
skia.committer@gmail.comeafdf122013-05-15 07:01:09 +0000674 return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
675 SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000676}
677
bsalomon@google.com205d4602011-04-25 12:43:45 +0000678static bool apply_aa_to_rect(GrDrawTarget* target,
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000679 const GrRect& rect,
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000680 SkScalar strokeWidth,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000681 const SkMatrix* matrix,
682 SkMatrix* combinedMatrix,
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000683 GrRect* devRect,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000684 bool* useVertexCoverage) {
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000685 // we use a simple coverage ramp to do aa on axis-aligned rects
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000686 // we check if the rect will be axis-aligned, and the rect won't land on
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000687 // integer coords.
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000688
bsalomon@google.coma3108262011-10-10 14:08:47 +0000689 // we are keeping around the "tweak the alpha" trick because
690 // it is our only hope for the fixed-pipe implementation.
691 // In a shader implementation we can give a separate coverage input
bsalomon@google.com289533a2011-10-27 12:34:25 +0000692 // TODO: remove this ugliness when we drop the fixed-pipe impl
bsalomon@google.coma3108262011-10-10 14:08:47 +0000693 *useVertexCoverage = false;
bsalomon@google.com2b446732013-02-12 16:47:41 +0000694 if (!target->getDrawState().canTweakAlphaForCoverage()) {
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000695 if (disable_coverage_aa_for_blend(target)) {
bsalomon@google.com1983f392011-10-10 15:17:58 +0000696#if GR_DEBUG
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000697 //GrPrintf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000698#endif
bsalomon@google.coma3108262011-10-10 14:08:47 +0000699 return false;
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000700 } else {
701 *useVertexCoverage = true;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000702 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000703 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000704 const GrDrawState& drawState = target->getDrawState();
705 if (drawState.getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000706 return false;
707 }
708
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000709 if (0 == strokeWidth && target->willUseHWAALines()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000710 return false;
711 }
712
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000713#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000714 if (strokeWidth >= 0) {
715#endif
716 if (!drawState.getViewMatrix().preservesAxisAlignment()) {
717 return false;
718 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000719
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000720 if (NULL != matrix && !matrix->preservesAxisAlignment()) {
721 return false;
722 }
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000723#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000724 } else {
725 if (!drawState.getViewMatrix().preservesAxisAlignment() &&
726 !drawState.getViewMatrix().preservesRightAngles()) {
727 return false;
728 }
729
730 if (NULL != matrix && !matrix->preservesRightAngles()) {
731 return false;
732 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000733 }
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000734#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000735
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000736 *combinedMatrix = drawState.getViewMatrix();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000737 if (NULL != matrix) {
738 combinedMatrix->preConcat(*matrix);
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000739
740#if GR_DEBUG
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000741#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000742 if (strokeWidth >= 0) {
743#endif
744 GrAssert(combinedMatrix->preservesAxisAlignment());
robertphillips@google.com4b140b52013-05-02 17:13:13 +0000745#if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT)
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000746 } else {
747 GrAssert(combinedMatrix->preservesRightAngles());
748 }
749#endif
750#endif
bsalomon@google.com205d4602011-04-25 12:43:45 +0000751 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000752
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000753 combinedMatrix->mapRect(devRect, rect);
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000754
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000755 if (strokeWidth < 0) {
756 return !isIRect(*devRect);
757 } else {
758 return true;
759 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000760}
761
bsalomon@google.com27847de2011-02-22 20:59:41 +0000762void GrContext::drawRect(const GrPaint& paint,
763 const GrRect& rect,
bsalomon@google.com81712882012-11-01 17:12:34 +0000764 SkScalar width,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000765 const SkMatrix* matrix) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000766 SK_TRACE_EVENT0("GrContext::drawRect");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000767
bsalomon@google.com82b0ec62013-02-07 21:02:36 +0000768 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW);
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +0000769 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000770
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000771 GrRect devRect;
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000772 SkMatrix combinedMatrix;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000773 bool useVertexCoverage;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000774 bool needAA = paint.isAntiAlias() &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000775 !target->getDrawState().getRenderTarget()->isMultisampled();
robertphillips@google.com28ac96e2013-05-13 13:38:35 +0000776 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix,
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000777 &combinedMatrix, &devRect,
bsalomon@google.com289533a2011-10-27 12:34:25 +0000778 &useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000779 if (doAA) {
bsalomon@google.com5b3e8902012-10-05 20:13:28 +0000780 GrDrawState::AutoDeviceCoordDraw adcd(target->drawState());
bsalomon@google.come3d32162012-07-20 13:37:06 +0000781 if (!adcd.succeeded()) {
782 return;
783 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000784 if (width >= 0) {
robertphillips@google.com18136d12013-05-10 11:05:58 +0000785 fAARectRenderer->strokeAARect(this->getGpu(), target,
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000786 rect, combinedMatrix, devRect,
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000787 width, useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000788 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000789 // filled AA rect
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000790 fAARectRenderer->fillAARect(this->getGpu(), target,
robertphillips@google.comafd1cba2013-05-14 19:47:47 +0000791 rect, combinedMatrix, devRect,
robertphillips@google.comb19cb7f2013-05-02 15:37:20 +0000792 useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000793 }
794 return;
795 }
796
bsalomon@google.com27847de2011-02-22 20:59:41 +0000797 if (width >= 0) {
798 // TODO: consider making static vertex buffers for these cases.
bsalomon@google.com64386952013-02-08 21:22:44 +0000799 // Hairline could be done by just adding closing vertex to
800 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000801
bsalomon@google.com27847de2011-02-22 20:59:41 +0000802 static const int worstCaseVertCount = 10;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000803 target->drawState()->setDefaultVertexAttribs();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000804 GrDrawTarget::AutoReleaseGeometry geo(target, worstCaseVertCount, 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000805
806 if (!geo.succeeded()) {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000807 GrPrintf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000808 return;
809 }
810
811 GrPrimitiveType primType;
812 int vertCount;
813 GrPoint* vertex = geo.positions();
814
815 if (width > 0) {
816 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000817 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000818 setStrokeRectStrip(vertex, rect, width);
819 } else {
820 // hairline
821 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000822 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000823 vertex[0].set(rect.fLeft, rect.fTop);
824 vertex[1].set(rect.fRight, rect.fTop);
825 vertex[2].set(rect.fRight, rect.fBottom);
826 vertex[3].set(rect.fLeft, rect.fBottom);
827 vertex[4].set(rect.fLeft, rect.fTop);
828 }
829
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000830 GrDrawState::AutoViewMatrixRestore avmr;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000831 if (NULL != matrix) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000832 GrDrawState* drawState = target->drawState();
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000833 avmr.set(drawState, *matrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000834 }
835
836 target->drawNonIndexed(primType, 0, vertCount);
837 } else {
robertphillips@google.comdf3695e2013-04-09 14:01:44 +0000838 // filled BW rect
robertphillips@google.com235ef3d2013-04-20 12:10:26 +0000839 target->drawSimpleRect(rect, matrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000840 }
841}
842
843void GrContext::drawRectToRect(const GrPaint& paint,
844 const GrRect& dstRect,
bsalomon@google.comc7818882013-03-20 19:19:53 +0000845 const GrRect& localRect,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000846 const SkMatrix* dstMatrix,
bsalomon@google.comc7818882013-03-20 19:19:53 +0000847 const SkMatrix* localMatrix) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000848 SK_TRACE_EVENT0("GrContext::drawRectToRect");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000849
bsalomon@google.com82b0ec62013-02-07 21:02:36 +0000850 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW);
bsalomon@google.comc7818882013-03-20 19:19:53 +0000851 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com64386952013-02-08 21:22:44 +0000852
bsalomon@google.comc7818882013-03-20 19:19:53 +0000853 target->drawRect(dstRect, dstMatrix, &localRect, localMatrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000854}
855
robertphillips@google.com42903302013-04-20 12:26:07 +0000856namespace {
857
858extern const GrVertexAttrib gPosUVColorAttribs[] = {
859 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding },
860 {kVec2f_GrVertexAttribType, sizeof(GrPoint), kLocalCoord_GrVertexAttribBinding },
rmistry@google.comc9f3b382013-04-22 12:45:30 +0000861 {kVec4ub_GrVertexAttribType, 2*sizeof(GrPoint), kColor_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000862};
863
864extern const GrVertexAttrib gPosColorAttribs[] = {
865 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
866 {kVec4ub_GrVertexAttribType, sizeof(GrPoint), kColor_GrVertexAttribBinding},
867};
868
869static void set_vertex_attributes(GrDrawState* drawState,
870 const GrPoint* texCoords,
871 const GrColor* colors,
872 int* colorOffset,
873 int* texOffset) {
874 *texOffset = -1;
875 *colorOffset = -1;
876
877 if (NULL != texCoords && NULL != colors) {
878 *texOffset = sizeof(GrPoint);
879 *colorOffset = 2*sizeof(GrPoint);
880 drawState->setVertexAttribs<gPosUVColorAttribs>(3);
881 } else if (NULL != texCoords) {
882 *texOffset = sizeof(GrPoint);
883 drawState->setVertexAttribs<gPosUVColorAttribs>(2);
884 } else if (NULL != colors) {
885 *colorOffset = sizeof(GrPoint);
886 drawState->setVertexAttribs<gPosColorAttribs>(2);
887 } else {
888 drawState->setVertexAttribs<gPosColorAttribs>(1);
889 }
890}
891
892};
893
bsalomon@google.com27847de2011-02-22 20:59:41 +0000894void GrContext::drawVertices(const GrPaint& paint,
895 GrPrimitiveType primitiveType,
896 int vertexCount,
897 const GrPoint positions[],
898 const GrPoint texCoords[],
899 const GrColor colors[],
900 const uint16_t indices[],
901 int indexCount) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000902 SK_TRACE_EVENT0("GrContext::drawVertices");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000903
904 GrDrawTarget::AutoReleaseGeometry geo;
905
bsalomon@google.com82b0ec62013-02-07 21:02:36 +0000906 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW);
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +0000907 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000908
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000909 GrDrawState* drawState = target->drawState();
jvanverth@google.comb8b705b2013-02-28 16:28:34 +0000910
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000911 int colorOffset = -1, texOffset = -1;
robertphillips@google.com42903302013-04-20 12:26:07 +0000912 set_vertex_attributes(drawState, texCoords, colors, &colorOffset, &texOffset);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000913
914 size_t vertexSize = drawState->getVertexSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000915 if (sizeof(GrPoint) != vertexSize) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000916 if (!geo.set(target, vertexCount, 0)) {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000917 GrPrintf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000918 return;
919 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000920 void* curVertex = geo.vertices();
921
922 for (int i = 0; i < vertexCount; ++i) {
923 *((GrPoint*)curVertex) = positions[i];
924
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000925 if (texOffset >= 0) {
jvanverth@google.com39768252013-02-14 15:25:44 +0000926 *(GrPoint*)((intptr_t)curVertex + texOffset) = texCoords[i];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000927 }
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000928 if (colorOffset >= 0) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000929 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
930 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000931 curVertex = (void*)((intptr_t)curVertex + vertexSize);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000932 }
933 } else {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000934 target->setVertexSourceToArray(positions, vertexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000935 }
936
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000937 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +0000938 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon@google.coma47a48d2011-04-26 20:22:11 +0000939
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000940 if (NULL != indices) {
bsalomon@google.com91958362011-06-13 17:58:13 +0000941 target->setIndexSourceToArray(indices, indexCount);
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000942 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000943 target->resetIndexSource();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000944 } else {
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000945 target->drawNonIndexed(primitiveType, 0, vertexCount);
946 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000947}
948
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000949///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com93c96602012-04-27 13:05:21 +0000950
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000951void GrContext::drawRRect(const GrPaint& paint,
952 const SkRRect& rect,
953 const SkStrokeRec& stroke) {
954
955 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW);
956 GrDrawState::AutoStageDisable atr(fDrawState);
957
bsalomon@google.comd09ab842013-05-15 17:30:26 +0000958 bool useAA = paint.isAntiAlias() &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000959 !target->getDrawState().getRenderTarget()->isMultisampled() &&
bsalomon@google.comd09ab842013-05-15 17:30:26 +0000960 !disable_coverage_aa_for_blend(target);
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000961
bsalomon@google.comd09ab842013-05-15 17:30:26 +0000962 if (!fOvalRenderer->drawSimpleRRect(target, this, useAA, rect, stroke)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000963 SkPath path;
964 path.addRRect(rect);
bsalomon@google.comd09ab842013-05-15 17:30:26 +0000965 this->internalDrawPath(target, useAA, path, stroke);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000966 }
967}
968
969///////////////////////////////////////////////////////////////////////////////
970
bsalomon@google.com93c96602012-04-27 13:05:21 +0000971void GrContext::drawOval(const GrPaint& paint,
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000972 const GrRect& oval,
973 const SkStrokeRec& stroke) {
974
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000975 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW);
976 GrDrawState::AutoStageDisable atr(fDrawState);
977
bsalomon@google.comd09ab842013-05-15 17:30:26 +0000978 bool useAA = paint.isAntiAlias() &&
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000979 !target->getDrawState().getRenderTarget()->isMultisampled() &&
bsalomon@google.comd09ab842013-05-15 17:30:26 +0000980 !disable_coverage_aa_for_blend(target);
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000981
982 if (!fOvalRenderer->drawOval(target, this, useAA, oval, stroke)) {
bsalomon@google.com93c96602012-04-27 13:05:21 +0000983 SkPath path;
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000984 path.addOval(oval);
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000985 this->internalDrawPath(target, useAA, path, stroke);
skia.committer@gmail.com98ded842013-01-23 07:06:17 +0000986 }
bsalomon@google.com150d2842012-01-12 20:19:56 +0000987}
bsalomon@google.com27847de2011-02-22 20:59:41 +0000988
robertphillips@google.com83d1a682013-05-17 12:50:27 +0000989namespace {
990
991// Can 'path' be drawn as a pair of filled nested rectangles?
992static bool is_nested_rects(GrDrawTarget* target,
993 const SkPath& path,
994 const SkStrokeRec& stroke,
995 SkRect rects[2],
996 bool* useVertexCoverage) {
997 SkASSERT(stroke.isFillStyle());
998
999 if (path.isInverseFillType()) {
1000 return false;
1001 }
1002
1003 const GrDrawState& drawState = target->getDrawState();
1004
1005 // TODO: this restriction could be lifted if we were willing to apply
1006 // the matrix to all the points individually rather than just to the rect
1007 if (!drawState.getViewMatrix().preservesAxisAlignment()) {
1008 return false;
1009 }
1010
1011 *useVertexCoverage = false;
1012 if (!target->getDrawState().canTweakAlphaForCoverage()) {
1013 if (disable_coverage_aa_for_blend(target)) {
1014 return false;
1015 } else {
1016 *useVertexCoverage = true;
1017 }
1018 }
1019
1020 SkPath::Direction dirs[2];
1021 if (!path.isNestedRects(rects, dirs)) {
1022 return false;
1023 }
1024
1025 if (SkPath::kWinding_FillType == path.getFillType()) {
1026 // The two rects need to be wound opposite to each other
1027 return dirs[0] != dirs[1];
1028 } else {
1029 return true;
1030 }
1031}
1032
1033};
1034
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001035void GrContext::drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001036
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001037 if (path.isEmpty()) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001038 if (path.isInverseFillType()) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001039 this->drawPaint(paint);
1040 }
1041 return;
1042 }
1043
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001044 // Note that internalDrawPath may sw-rasterize the path into a scratch texture.
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001045 // Scratch textures can be recycled after they are returned to the texture
1046 // cache. This presents a potential hazard for buffered drawing. However,
1047 // the writePixels that uploads to the scratch will perform a flush so we're
1048 // OK.
bsalomon@google.com82b0ec62013-02-07 21:02:36 +00001049 GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW);
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +00001050 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001051
robertphillips@google.com83d1a682013-05-17 12:50:27 +00001052 bool useAA = paint.isAntiAlias() && !this->getRenderTarget()->isMultisampled();
1053 if (useAA && stroke.getWidth() < 0 && !path.isConvex()) {
1054 // Concave AA paths are expensive - try to avoid them for special cases
1055 bool useVertexCoverage;
1056 SkRect rects[2];
1057
1058 if (is_nested_rects(target, path, stroke, rects, &useVertexCoverage)) {
1059 GrDrawState::AutoDeviceCoordDraw adcd(target->drawState());
1060 if (!adcd.succeeded()) {
1061 return;
1062 }
1063
1064 fAARectRenderer->fillAANestedRects(this->getGpu(), target,
1065 rects,
1066 adcd.getOriginalMatrix(),
1067 useVertexCoverage);
1068 return;
1069 }
1070 }
1071
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001072 SkRect ovalRect;
1073 bool isOval = path.isOval(&ovalRect);
1074
skia.committer@gmail.com7e328512013-03-23 07:01:28 +00001075 if (!isOval || path.isInverseFillType()
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +00001076 || !fOvalRenderer->drawOval(target, this, useAA, ovalRect, stroke)) {
1077 this->internalDrawPath(target, useAA, path, stroke);
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001078 }
1079}
1080
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +00001081void GrContext::internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
commit-bot@chromium.org81312832013-03-22 18:34:09 +00001082 const SkStrokeRec& stroke) {
1083
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001084 // An Assumption here is that path renderer would use some form of tweaking
1085 // the src color (either the input alpha or in the frag shader) to implement
1086 // aa. If we have some future driver-mojo path AA that can do the right
1087 // thing WRT to the blend then we'll need some query on the PR.
1088 if (disable_coverage_aa_for_blend(target)) {
bsalomon@google.com1983f392011-10-10 15:17:58 +00001089#if GR_DEBUG
bsalomon@google.com979432b2011-11-05 21:38:22 +00001090 //GrPrintf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001091#endif
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +00001092 useAA = false;
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001093 }
bsalomon@google.com289533a2011-10-27 12:34:25 +00001094
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +00001095 GrPathRendererChain::DrawType type = useAA ? GrPathRendererChain::kColorAntiAlias_DrawType :
1096 GrPathRendererChain::kColor_DrawType;
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001097
robertphillips@google.comeb928ea2013-01-08 13:45:09 +00001098 const SkPath* pathPtr = &path;
1099 SkPath tmpPath;
1100 SkStrokeRec strokeRec(stroke);
1101
1102 // Try a 1st time without stroking the path and without allowing the SW renderer
1103 GrPathRenderer* pr = this->getPathRenderer(*pathPtr, strokeRec, target, false, type);
1104
1105 if (NULL == pr) {
1106 if (!strokeRec.isHairlineStyle()) {
1107 // It didn't work the 1st time, so try again with the stroked path
1108 if (strokeRec.applyToPath(&tmpPath, *pathPtr)) {
1109 pathPtr = &tmpPath;
1110 strokeRec.setFillStyle();
1111 }
1112 }
1113 // This time, allow SW renderer
1114 pr = this->getPathRenderer(*pathPtr, strokeRec, target, true, type);
1115 }
1116
bsalomon@google.com30085192011-08-19 15:42:31 +00001117 if (NULL == pr) {
bsalomon@google.com1983f392011-10-10 15:17:58 +00001118#if GR_DEBUG
bsalomon@google.com30085192011-08-19 15:42:31 +00001119 GrPrintf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001120#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001121 return;
1122 }
1123
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +00001124 pr->drawPath(*pathPtr, strokeRec, target, useAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001125}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001126
bsalomon@google.com27847de2011-02-22 20:59:41 +00001127////////////////////////////////////////////////////////////////////////////////
1128
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001129void GrContext::flush(int flagsBitfield) {
1130 if (kDiscard_FlushBit & flagsBitfield) {
1131 fDrawBuffer->reset();
1132 } else {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001133 this->flushDrawBuffer();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001134 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001135 // TODO: Remove this flag
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001136 if (kForceCurrentRenderTarget_FlushBit & flagsBitfield) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001137 fGpu->drawState()->setRenderTarget(this->getRenderTarget());
bsalomon@google.com27847de2011-02-22 20:59:41 +00001138 fGpu->forceRenderTargetFlush();
1139 }
1140}
1141
bsalomon@google.com27847de2011-02-22 20:59:41 +00001142void GrContext::flushDrawBuffer() {
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001143 if (NULL != fDrawBuffer && !fDrawBuffer->isFlushing()) {
1144 fDrawBuffer->flush();
junov@google.com53a55842011-06-08 22:55:10 +00001145 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001146}
1147
bsalomon@google.com9c680582013-02-06 18:17:50 +00001148bool GrContext::writeTexturePixels(GrTexture* texture,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001149 int left, int top, int width, int height,
1150 GrPixelConfig config, const void* buffer, size_t rowBytes,
1151 uint32_t flags) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001152 SK_TRACE_EVENT0("GrContext::writeTexturePixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001153 ASSERT_OWNED_RESOURCE(texture);
1154
bsalomon@google.com9c680582013-02-06 18:17:50 +00001155 if ((kUnpremul_PixelOpsFlag & flags) || !fGpu->canWriteTexturePixels(texture, config)) {
1156 if (NULL != texture->asRenderTarget()) {
1157 return this->writeRenderTargetPixels(texture->asRenderTarget(),
1158 left, top, width, height,
1159 config, buffer, rowBytes, flags);
1160 } else {
1161 return false;
1162 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001163 }
bsalomon@google.com9c680582013-02-06 18:17:50 +00001164
bsalomon@google.com6f379512011-11-16 20:36:03 +00001165 if (!(kDontFlush_PixelOpsFlag & flags)) {
1166 this->flush();
1167 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001168
bsalomon@google.com9c680582013-02-06 18:17:50 +00001169 return fGpu->writeTexturePixels(texture, left, top, width, height,
1170 config, buffer, rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +00001171}
1172
bsalomon@google.com0342a852012-08-20 19:22:38 +00001173bool GrContext::readTexturePixels(GrTexture* texture,
1174 int left, int top, int width, int height,
1175 GrPixelConfig config, void* buffer, size_t rowBytes,
1176 uint32_t flags) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +00001177 SK_TRACE_EVENT0("GrContext::readTexturePixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001178 ASSERT_OWNED_RESOURCE(texture);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001179
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001180 // TODO: code read pixels for textures that aren't also rendertargets
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001181 GrRenderTarget* target = texture->asRenderTarget();
1182 if (NULL != target) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00001183 return this->readRenderTargetPixels(target,
1184 left, top, width, height,
1185 config, buffer, rowBytes,
1186 flags);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001187 } else {
1188 return false;
1189 }
1190}
1191
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001192#include "SkConfig8888.h"
1193
1194namespace {
1195/**
1196 * Converts a GrPixelConfig to a SkCanvas::Config8888. Only byte-per-channel
1197 * formats are representable as Config8888 and so the function returns false
1198 * if the GrPixelConfig has no equivalent Config8888.
1199 */
1200bool grconfig_to_config8888(GrPixelConfig config,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001201 bool unpremul,
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001202 SkCanvas::Config8888* config8888) {
1203 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00001204 case kRGBA_8888_GrPixelConfig:
1205 if (unpremul) {
1206 *config8888 = SkCanvas::kRGBA_Unpremul_Config8888;
1207 } else {
1208 *config8888 = SkCanvas::kRGBA_Premul_Config8888;
1209 }
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001210 return true;
bsalomon@google.com0342a852012-08-20 19:22:38 +00001211 case kBGRA_8888_GrPixelConfig:
1212 if (unpremul) {
1213 *config8888 = SkCanvas::kBGRA_Unpremul_Config8888;
1214 } else {
1215 *config8888 = SkCanvas::kBGRA_Premul_Config8888;
1216 }
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001217 return true;
1218 default:
1219 return false;
1220 }
1221}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001222
1223// It returns a configuration with where the byte position of the R & B components are swapped in
1224// relation to the input config. This should only be called with the result of
1225// grconfig_to_config8888 as it will fail for other configs.
1226SkCanvas::Config8888 swap_config8888_red_and_blue(SkCanvas::Config8888 config8888) {
1227 switch (config8888) {
1228 case SkCanvas::kBGRA_Premul_Config8888:
1229 return SkCanvas::kRGBA_Premul_Config8888;
1230 case SkCanvas::kBGRA_Unpremul_Config8888:
1231 return SkCanvas::kRGBA_Unpremul_Config8888;
1232 case SkCanvas::kRGBA_Premul_Config8888:
1233 return SkCanvas::kBGRA_Premul_Config8888;
1234 case SkCanvas::kRGBA_Unpremul_Config8888:
1235 return SkCanvas::kBGRA_Unpremul_Config8888;
1236 default:
1237 GrCrash("Unexpected input");
1238 return SkCanvas::kBGRA_Unpremul_Config8888;;
1239 }
1240}
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001241}
1242
bsalomon@google.com0342a852012-08-20 19:22:38 +00001243bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1244 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001245 GrPixelConfig dstConfig, void* buffer, size_t rowBytes,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001246 uint32_t flags) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +00001247 SK_TRACE_EVENT0("GrContext::readRenderTargetPixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001248 ASSERT_OWNED_RESOURCE(target);
1249
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001250 if (NULL == target) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001251 target = fRenderTarget.get();
bsalomon@google.comc4364992011-11-07 15:54:49 +00001252 if (NULL == target) {
1253 return false;
1254 }
1255 }
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001256
bsalomon@google.com6f379512011-11-16 20:36:03 +00001257 if (!(kDontFlush_PixelOpsFlag & flags)) {
1258 this->flush();
1259 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001260
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001261 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001262
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001263 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1264 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1265 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001266 width, height, dstConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001267 rowBytes);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001268 // We ignore the preferred config if it is different than our config unless it is an R/B swap.
1269 // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped
1270 // config. Then we will call readPixels on the scratch with the swapped config. The swaps during
1271 // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from
1272 // dstConfig.
1273 GrPixelConfig readConfig = dstConfig;
1274 bool swapRAndB = false;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001275 if (GrPixelConfigSwapRAndB(dstConfig) ==
1276 fGpu->preferredReadPixelsConfig(dstConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001277 readConfig = GrPixelConfigSwapRAndB(readConfig);
1278 swapRAndB = true;
1279 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001280
bsalomon@google.com0342a852012-08-20 19:22:38 +00001281 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001282
bsalomon@google.com9c680582013-02-06 18:17:50 +00001283 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001284 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001285 return false;
1286 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001287
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001288 // If the src is a texture and we would have to do conversions after read pixels, we instead
1289 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1290 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1291 // on the read back pixels.
1292 GrTexture* src = target->asTexture();
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001293 GrAutoScratchTexture ast;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001294 if (NULL != src && (swapRAndB || unpremul || flipY)) {
1295 // Make the scratch a render target because we don't have a robust readTexturePixels as of
1296 // yet. It calls this function.
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001297 GrTextureDesc desc;
1298 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1299 desc.fWidth = width;
1300 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001301 desc.fConfig = readConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001302 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001303
bsalomon@google.com9c680582013-02-06 18:17:50 +00001304 // 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 +00001305 // match the passed rect. However, if we see many different size rectangles we will trash
1306 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1307 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001308 ScratchTexMatch match = kApprox_ScratchTexMatch;
1309 if (0 == left &&
1310 0 == top &&
1311 target->width() == width &&
1312 target->height() == height &&
1313 fGpu->fullReadPixelsIsFasterThanPartial()) {
1314 match = kExact_ScratchTexMatch;
1315 }
1316 ast.set(this, desc, match);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001317 GrTexture* texture = ast.texture();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001318 if (texture) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001319 // compute a matrix to perform the draw
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001320 SkMatrix textureMatrix;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001321 textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001322 textureMatrix.postIDiv(src->width(), src->height());
1323
bsalomon@google.comadc65362013-01-28 14:26:09 +00001324 SkAutoTUnref<const GrEffectRef> effect;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001325 if (unpremul) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001326 effect.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix));
1327 if (NULL != effect) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001328 unpremul = false; // we no longer need to do this on CPU after the read back.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001329 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001330 }
1331 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1332 // there is no longer any point to using the scratch.
bsalomon@google.comadc65362013-01-28 14:26:09 +00001333 if (NULL != effect || flipY || swapRAndB) {
1334 if (!effect) {
1335 effect.reset(GrConfigConversionEffect::Create(
1336 src,
1337 swapRAndB,
1338 GrConfigConversionEffect::kNone_PMConversion,
1339 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001340 }
1341 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001342
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001343 // We protect the existing geometry here since it may not be
1344 // clear to the caller that a draw operation (i.e., drawSimpleRect)
1345 // can be invoked in this method
1346 GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001347 GrDrawState* drawState = fGpu->drawState();
bsalomon@google.comadc65362013-01-28 14:26:09 +00001348 GrAssert(effect);
bsalomon@google.com9e040ae2013-01-28 14:31:19 +00001349 drawState->setEffect(0, effect);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001350
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001351 drawState->setRenderTarget(texture->asRenderTarget());
bsalomon@google.com81712882012-11-01 17:12:34 +00001352 GrRect rect = GrRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001353 fGpu->drawSimpleRect(rect, NULL);
1354 // we want to read back from the scratch's origin
1355 left = 0;
1356 top = 0;
1357 target = texture->asRenderTarget();
1358 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001359 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001360 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001361 if (!fGpu->readPixels(target,
1362 left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001363 readConfig, buffer, rowBytes)) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001364 return false;
1365 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001366 // Perform any conversions we weren't able to perform using a scratch texture.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001367 if (unpremul || swapRAndB) {
bsalomon@google.comccaa0022012-09-25 19:55:07 +00001368 // These are initialized to suppress a warning
1369 SkCanvas::Config8888 srcC8888 = SkCanvas::kNative_Premul_Config8888;
1370 SkCanvas::Config8888 dstC8888 = SkCanvas::kNative_Premul_Config8888;
1371
bsalomon@google.com9c680582013-02-06 18:17:50 +00001372 SkDEBUGCODE(bool c8888IsValid =) grconfig_to_config8888(dstConfig, false, &srcC8888);
1373 grconfig_to_config8888(dstConfig, unpremul, &dstC8888);
bsalomon@google.comccaa0022012-09-25 19:55:07 +00001374
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001375 if (swapRAndB) {
1376 GrAssert(c8888IsValid); // we should only do r/b swap on 8888 configs
1377 srcC8888 = swap_config8888_red_and_blue(srcC8888);
1378 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001379 GrAssert(c8888IsValid);
1380 uint32_t* b32 = reinterpret_cast<uint32_t*>(buffer);
1381 SkConvertConfig8888Pixels(b32, rowBytes, dstC8888,
1382 b32, rowBytes, srcC8888,
1383 width, height);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001384 }
1385 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001386}
1387
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001388void GrContext::resolveRenderTarget(GrRenderTarget* target) {
1389 GrAssert(target);
1390 ASSERT_OWNED_RESOURCE(target);
1391 // In the future we may track whether there are any pending draws to this
1392 // target. We don't today so we always perform a flush. We don't promise
1393 // this to our clients, though.
1394 this->flush();
1395 fGpu->resolveRenderTarget(target);
1396}
1397
scroggo@google.coma2a31922012-12-07 19:14:45 +00001398void GrContext::copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001399 if (NULL == src || NULL == dst) {
1400 return;
1401 }
1402 ASSERT_OWNED_RESOURCE(src);
1403
twiz@google.com1ac87ff2012-04-27 19:39:33 +00001404 // Writes pending to the source texture are not tracked, so a flush
1405 // is required to ensure that the copy captures the most recent contents
bsalomon@google.comadc65362013-01-28 14:26:09 +00001406 // of the source texture. See similar behavior in
twiz@google.com1ac87ff2012-04-27 19:39:33 +00001407 // GrContext::resolveRenderTarget.
1408 this->flush();
1409
bsalomon@google.com873ea0c2012-03-30 15:55:32 +00001410 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001411 GrDrawState* drawState = fGpu->drawState();
1412 drawState->setRenderTarget(dst);
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001413 SkMatrix sampleM;
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001414 sampleM.setIDiv(src->width(), src->height());
scroggo@google.coma2a31922012-12-07 19:14:45 +00001415 SkIRect srcRect = SkIRect::MakeWH(dst->width(), dst->height());
1416 if (NULL != topLeft) {
1417 srcRect.offset(*topLeft);
1418 }
1419 SkIRect srcBounds = SkIRect::MakeWH(src->width(), src->height());
1420 if (!srcRect.intersect(srcBounds)) {
1421 return;
1422 }
1423 sampleM.preTranslate(SkIntToScalar(srcRect.fLeft), SkIntToScalar(srcRect.fTop));
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +00001424 drawState->createTextureEffect(0, src, sampleM);
scroggo@google.coma2a31922012-12-07 19:14:45 +00001425 SkRect dstR = SkRect::MakeWH(SkIntToScalar(srcRect.width()), SkIntToScalar(srcRect.height()));
1426 fGpu->drawSimpleRect(dstR, NULL);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001427}
1428
bsalomon@google.com9c680582013-02-06 18:17:50 +00001429bool GrContext::writeRenderTargetPixels(GrRenderTarget* target,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001430 int left, int top, int width, int height,
bsalomon@google.com9c680582013-02-06 18:17:50 +00001431 GrPixelConfig srcConfig,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001432 const void* buffer,
1433 size_t rowBytes,
1434 uint32_t flags) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001435 SK_TRACE_EVENT0("GrContext::writeRenderTargetPixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001436 ASSERT_OWNED_RESOURCE(target);
bsalomon@google.com6f379512011-11-16 20:36:03 +00001437
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001438 if (NULL == target) {
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001439 target = fRenderTarget.get();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001440 if (NULL == target) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001441 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +00001442 }
1443 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001444
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001445 // TODO: when underlying api has a direct way to do this we should use it (e.g. glDrawPixels on
1446 // desktop GL).
1447
1448 // We will always call some form of writeTexturePixels and we will pass our flags on to it.
1449 // Thus, we don't perform a flush here since that call will do it (if the kNoFlush flag isn't
1450 // set.)
bsalomon@google.com27847de2011-02-22 20:59:41 +00001451
bsalomon@google.com0342a852012-08-20 19:22:38 +00001452 // If the RT is also a texture and we don't have to premultiply then take the texture path.
1453 // We expect to be at least as fast or faster since it doesn't use an intermediate texture as
1454 // we do below.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001455
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001456#if !GR_MAC_BUILD
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001457 // At least some drivers on the Mac get confused when glTexImage2D is called on a texture
1458 // attached to an FBO. The FBO still sees the old image. TODO: determine what OS versions and/or
1459 // HW is affected.
bsalomon@google.com9c680582013-02-06 18:17:50 +00001460 if (NULL != target->asTexture() && !(kUnpremul_PixelOpsFlag & flags) &&
1461 fGpu->canWriteTexturePixels(target->asTexture(), srcConfig)) {
1462 return this->writeTexturePixels(target->asTexture(),
1463 left, top, width, height,
1464 srcConfig, buffer, rowBytes, flags);
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001465 }
1466#endif
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001467
bsalomon@google.com9c680582013-02-06 18:17:50 +00001468 // We ignore the preferred config unless it is a R/B swap of the src config. In that case
1469 // we will upload the original src data to a scratch texture but we will spoof it as the swapped
1470 // config. This scratch will then have R and B swapped. We correct for this by swapping again
1471 // when drawing the scratch to the dst using a conversion effect.
1472 bool swapRAndB = false;
1473 GrPixelConfig writeConfig = srcConfig;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +00001474 if (GrPixelConfigSwapRAndB(srcConfig) ==
1475 fGpu->preferredWritePixelsConfig(srcConfig, target->config())) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001476 writeConfig = GrPixelConfigSwapRAndB(srcConfig);
1477 swapRAndB = true;
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001478 }
1479
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001480 GrTextureDesc desc;
1481 desc.fWidth = width;
1482 desc.fHeight = height;
bsalomon@google.com9c680582013-02-06 18:17:50 +00001483 desc.fConfig = writeConfig;
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001484 GrAutoScratchTexture ast(this, desc);
1485 GrTexture* texture = ast.texture();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001486 if (NULL == texture) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001487 return false;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001488 }
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001489
bsalomon@google.comadc65362013-01-28 14:26:09 +00001490 SkAutoTUnref<const GrEffectRef> effect;
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001491 SkMatrix textureMatrix;
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +00001492 textureMatrix.setIDiv(texture->width(), texture->height());
1493
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001494 // allocate a tmp buffer and sw convert the pixels to premul
1495 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1496
1497 if (kUnpremul_PixelOpsFlag & flags) {
bsalomon@google.com9c680582013-02-06 18:17:50 +00001498 if (!GrPixelConfigIs8888(srcConfig)) {
1499 return false;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001500 }
bsalomon@google.comadc65362013-01-28 14:26:09 +00001501 effect.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix));
bsalomon@google.com9c680582013-02-06 18:17:50 +00001502 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
bsalomon@google.comadc65362013-01-28 14:26:09 +00001503 if (NULL == effect) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001504 SkCanvas::Config8888 srcConfig8888, dstConfig8888;
1505 GR_DEBUGCODE(bool success = )
bsalomon@google.com9c680582013-02-06 18:17:50 +00001506 grconfig_to_config8888(srcConfig, true, &srcConfig8888);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001507 GrAssert(success);
1508 GR_DEBUGCODE(success = )
bsalomon@google.com9c680582013-02-06 18:17:50 +00001509 grconfig_to_config8888(srcConfig, false, &dstConfig8888);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001510 GrAssert(success);
1511 const uint32_t* src = reinterpret_cast<const uint32_t*>(buffer);
1512 tmpPixels.reset(width * height);
1513 SkConvertConfig8888Pixels(tmpPixels.get(), 4 * width, dstConfig8888,
1514 src, rowBytes, srcConfig8888,
1515 width, height);
1516 buffer = tmpPixels.get();
1517 rowBytes = 4 * width;
1518 }
1519 }
bsalomon@google.comadc65362013-01-28 14:26:09 +00001520 if (NULL == effect) {
1521 effect.reset(GrConfigConversionEffect::Create(texture,
1522 swapRAndB,
1523 GrConfigConversionEffect::kNone_PMConversion,
1524 textureMatrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001525 }
1526
bsalomon@google.com9c680582013-02-06 18:17:50 +00001527 if (!this->writeTexturePixels(texture,
1528 0, 0, width, height,
1529 writeConfig, buffer, rowBytes,
1530 flags & ~kUnpremul_PixelOpsFlag)) {
1531 return false;
1532 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001533
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001534 // writeRenderTargetPixels can be called in the midst of drawing another
skia.committer@gmail.com0c23faf2013-03-03 07:16:29 +00001535 // object (e.g., when uploading a SW path rendering to the gpu while
robertphillips@google.com13f181f2013-03-02 12:02:08 +00001536 // drawing a rect) so preserve the current geometry.
1537 GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001538 GrDrawState* drawState = fGpu->drawState();
bsalomon@google.comadc65362013-01-28 14:26:09 +00001539 GrAssert(effect);
bsalomon@google.com9e040ae2013-01-28 14:31:19 +00001540 drawState->setEffect(0, effect);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001541
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001542 SkMatrix matrix;
bsalomon@google.com81712882012-11-01 17:12:34 +00001543 matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top));
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001544 drawState->setViewMatrix(matrix);
1545 drawState->setRenderTarget(target);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001546
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001547 fGpu->drawSimpleRect(GrRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)), NULL);
bsalomon@google.com9c680582013-02-06 18:17:50 +00001548 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001549}
1550////////////////////////////////////////////////////////////////////////////////
1551
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001552GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint, BufferedDraw buffered) {
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001553 if (kNo_BufferedDraw == buffered && kYes_BufferedDraw == fLastDrawWasBuffered) {
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001554 this->flushDrawBuffer();
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001555 fLastDrawWasBuffered = kNo_BufferedDraw;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001556 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001557 ASSERT_OWNED_RESOURCE(fRenderTarget.get());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001558 if (NULL != paint) {
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001559 GrAssert(fDrawState->stagesDisabled());
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001560 fDrawState->setFromPaint(*paint, fViewMatrix, fRenderTarget.get());
bsalomon@google.comaf84e742012-10-05 13:23:24 +00001561#if GR_DEBUG_PARTIAL_COVERAGE_CHECK
1562 if ((paint->hasMask() || 0xff != paint->fCoverage) &&
1563 !fGpu->canApplyCoverage()) {
1564 GrPrintf("Partial pixel coverage will be incorrectly blended.\n");
1565 }
1566#endif
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001567 } else {
1568 fDrawState->reset();
1569 *fDrawState->viewMatrix() = fViewMatrix;
1570 fDrawState->setRenderTarget(fRenderTarget.get());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001571 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001572 GrDrawTarget* target;
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001573 if (kYes_BufferedDraw == buffered) {
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001574 fLastDrawWasBuffered = kYes_BufferedDraw;
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001575 target = fDrawBuffer;
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001576 } else {
1577 GrAssert(kNo_BufferedDraw == buffered);
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001578 fLastDrawWasBuffered = kNo_BufferedDraw;
1579 target = fGpu;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001580 }
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +00001581 fDrawState->setState(GrDrawState::kClip_StateBit, NULL != fClip &&
1582 !fClip->fClipStack->isWideOpen());
1583 target->setClip(fClip);
1584 GrAssert(fDrawState == target->drawState());
1585 return target;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001586}
1587
robertphillips@google.com72176b22012-05-23 13:19:12 +00001588/*
1589 * This method finds a path renderer that can draw the specified path on
1590 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001591 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001592 * can be individually allowed/disallowed via the "allowSW" boolean.
1593 */
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001594GrPathRenderer* GrContext::getPathRenderer(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001595 const SkStrokeRec& stroke,
bsalomon@google.comc2099d22012-03-02 21:26:50 +00001596 const GrDrawTarget* target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001597 bool allowSW,
1598 GrPathRendererChain::DrawType drawType,
1599 GrPathRendererChain::StencilSupport* stencilSupport) {
1600
bsalomon@google.com30085192011-08-19 15:42:31 +00001601 if (NULL == fPathRendererChain) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001602 fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this));
bsalomon@google.com30085192011-08-19 15:42:31 +00001603 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001604
sugoi@google.com12b4e272012-12-06 20:13:11 +00001605 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path,
1606 stroke,
robertphillips@google.com72176b22012-05-23 13:19:12 +00001607 target,
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001608 drawType,
1609 stencilSupport);
robertphillips@google.com72176b22012-05-23 13:19:12 +00001610
1611 if (NULL == pr && allowSW) {
1612 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001613 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001614 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001615 pr = fSoftwarePathRenderer;
1616 }
1617
1618 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001619}
1620
bsalomon@google.com27847de2011-02-22 20:59:41 +00001621////////////////////////////////////////////////////////////////////////////////
1622
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001623bool GrContext::isConfigRenderable(GrPixelConfig config) const {
1624 return fGpu->isConfigRenderable(config);
1625}
1626
bsalomon@google.com27847de2011-02-22 20:59:41 +00001627static inline intptr_t setOrClear(intptr_t bits, int shift, intptr_t pred) {
1628 intptr_t mask = 1 << shift;
1629 if (pred) {
1630 bits |= mask;
1631 } else {
1632 bits &= ~mask;
1633 }
1634 return bits;
1635}
1636
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001637void GrContext::setupDrawBuffer() {
1638
1639 GrAssert(NULL == fDrawBuffer);
1640 GrAssert(NULL == fDrawBufferVBAllocPool);
1641 GrAssert(NULL == fDrawBufferIBAllocPool);
1642
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001643 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001644 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001645 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001646 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001647 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001648 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001649 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001650 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001651
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001652 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001653 fDrawBufferVBAllocPool,
1654 fDrawBufferIBAllocPool));
bsalomon@google.com3c4d0322012-04-03 18:04:51 +00001655
bsalomon@google.com6e4e6502013-02-25 20:12:45 +00001656 fDrawBuffer->setDrawState(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001657}
1658
bsalomon@google.com27847de2011-02-22 20:59:41 +00001659GrDrawTarget* GrContext::getTextTarget(const GrPaint& paint) {
bsalomon@google.com82b0ec62013-02-07 21:02:36 +00001660 return this->prepareToDraw(&paint, BUFFERED_DRAW);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001661}
1662
1663const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1664 return fGpu->getQuadIndexBuffer();
1665}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001666
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001667namespace {
1668void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1669 GrConfigConversionEffect::PMConversion pmToUPM;
1670 GrConfigConversionEffect::PMConversion upmToPM;
1671 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1672 *pmToUPMValue = pmToUPM;
1673 *upmToPMValue = upmToPM;
1674}
1675}
1676
bsalomon@google.comadc65362013-01-28 14:26:09 +00001677const GrEffectRef* GrContext::createPMToUPMEffect(GrTexture* texture,
1678 bool swapRAndB,
1679 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001680 if (!fDidTestPMConversions) {
1681 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001682 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001683 }
1684 GrConfigConversionEffect::PMConversion pmToUPM =
1685 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1686 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001687 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001688 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001689 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001690 }
1691}
1692
bsalomon@google.comadc65362013-01-28 14:26:09 +00001693const GrEffectRef* GrContext::createUPMToPMEffect(GrTexture* texture,
1694 bool swapRAndB,
1695 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001696 if (!fDidTestPMConversions) {
1697 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001698 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001699 }
1700 GrConfigConversionEffect::PMConversion upmToPM =
1701 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1702 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001703 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001704 } else {
bsalomon@google.comadc65362013-01-28 14:26:09 +00001705 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001706 }
1707}
1708
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001709GrTexture* GrContext::gaussianBlur(GrTexture* srcTexture,
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001710 bool canClobberSrc,
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001711 const SkRect& rect,
1712 float sigmaX, float sigmaY) {
senorblanco@chromium.orgceb44142012-03-05 20:53:36 +00001713 ASSERT_OWNED_RESOURCE(srcTexture);
robertphillips@google.comccb39502012-10-01 18:25:13 +00001714
1715 AutoRenderTarget art(this);
1716
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001717 AutoMatrix am;
1718 am.setIdentity(this);
1719
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001720 SkIRect clearRect;
bsalomon@google.comb505a122012-05-31 18:40:36 +00001721 int scaleFactorX, radiusX;
1722 int scaleFactorY, radiusY;
1723 sigmaX = adjust_sigma(sigmaX, &scaleFactorX, &radiusX);
1724 sigmaY = adjust_sigma(sigmaY, &scaleFactorY, &radiusY);
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001725
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001726 SkRect srcRect(rect);
1727 scale_rect(&srcRect, 1.0f / scaleFactorX, 1.0f / scaleFactorY);
1728 srcRect.roundOut();
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001729 scale_rect(&srcRect, static_cast<float>(scaleFactorX),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001730 static_cast<float>(scaleFactorY));
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +00001731
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001732 AutoClip acs(this, srcRect);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001733
bsalomon@google.com0342a852012-08-20 19:22:38 +00001734 GrAssert(kBGRA_8888_GrPixelConfig == srcTexture->config() ||
1735 kRGBA_8888_GrPixelConfig == srcTexture->config() ||
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001736 kAlpha_8_GrPixelConfig == srcTexture->config());
1737
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001738 GrTextureDesc desc;
1739 desc.fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit;
1740 desc.fWidth = SkScalarFloorToInt(srcRect.width());
1741 desc.fHeight = SkScalarFloorToInt(srcRect.height());
1742 desc.fConfig = srcTexture->config();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001743
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001744 GrAutoScratchTexture temp1, temp2;
1745 GrTexture* dstTexture = temp1.set(this, desc);
1746 GrTexture* tempTexture = canClobberSrc ? srcTexture : temp2.set(this, desc);
robertphillips@google.com7d126752012-10-19 12:56:26 +00001747 if (NULL == dstTexture || NULL == tempTexture) {
1748 return NULL;
1749 }
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001750
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001751 GrPaint paint;
1752 paint.reset();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001753
1754 for (int i = 1; i < scaleFactorX || i < scaleFactorY; i *= 2) {
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001755 SkMatrix matrix;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +00001756 matrix.setIDiv(srcTexture->width(), srcTexture->height());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001757 this->setRenderTarget(dstTexture->asRenderTarget());
1758 SkRect dstRect(srcRect);
1759 scale_rect(&dstRect, i < scaleFactorX ? 0.5f : 1.0f,
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +00001760 i < scaleFactorY ? 0.5f : 1.0f);
1761
bsalomon@google.com68b58c92013-01-17 16:50:08 +00001762 paint.colorStage(0)->setEffect(GrSimpleTextureEffect::Create(srcTexture,
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001763 matrix,
1764 true))->unref();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001765 this->drawRectToRect(paint, dstRect, srcRect);
1766 srcRect = dstRect;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001767 srcTexture = dstTexture;
1768 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001769 }
1770
robertphillips@google.com7a396332012-05-10 15:11:27 +00001771 SkIRect srcIRect;
1772 srcRect.roundOut(&srcIRect);
1773
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001774 if (sigmaX > 0.0f) {
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001775 if (scaleFactorX > 1) {
bsalomon@google.comb505a122012-05-31 18:40:36 +00001776 // Clear out a radius to the right of the srcRect to prevent the
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001777 // X convolution from reading garbage.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001778 clearRect = SkIRect::MakeXYWH(srcIRect.fRight, srcIRect.fTop,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001779 radiusX, srcIRect.height());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001780 this->clear(&clearRect, 0x0);
1781 }
1782
1783 this->setRenderTarget(dstTexture->asRenderTarget());
bsalomon@google.com82b0ec62013-02-07 21:02:36 +00001784 GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW);
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001785 convolve_gaussian(target, srcTexture, srcRect, sigmaX, radiusX,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001786 Gr1DKernelEffect::kX_Direction);
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001787 srcTexture = dstTexture;
1788 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001789 }
1790
1791 if (sigmaY > 0.0f) {
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001792 if (scaleFactorY > 1 || sigmaX > 0.0f) {
bsalomon@google.comb505a122012-05-31 18:40:36 +00001793 // Clear out a radius below the srcRect to prevent the Y
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001794 // convolution from reading garbage.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001795 clearRect = SkIRect::MakeXYWH(srcIRect.fLeft, srcIRect.fBottom,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001796 srcIRect.width(), radiusY);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001797 this->clear(&clearRect, 0x0);
1798 }
1799
1800 this->setRenderTarget(dstTexture->asRenderTarget());
bsalomon@google.com82b0ec62013-02-07 21:02:36 +00001801 GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW);
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001802 convolve_gaussian(target, srcTexture, srcRect, sigmaY, radiusY,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001803 Gr1DKernelEffect::kY_Direction);
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001804 srcTexture = dstTexture;
1805 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001806 }
1807
1808 if (scaleFactorX > 1 || scaleFactorY > 1) {
1809 // Clear one pixel to the right and below, to accommodate bilinear
1810 // upsampling.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001811 clearRect = SkIRect::MakeXYWH(srcIRect.fLeft, srcIRect.fBottom,
robertphillips@google.com7a396332012-05-10 15:11:27 +00001812 srcIRect.width() + 1, 1);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001813 this->clear(&clearRect, 0x0);
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001814 clearRect = SkIRect::MakeXYWH(srcIRect.fRight, srcIRect.fTop,
robertphillips@google.com7a396332012-05-10 15:11:27 +00001815 1, srcIRect.height());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001816 this->clear(&clearRect, 0x0);
bsalomon@google.comb9086a02012-11-01 18:02:54 +00001817 SkMatrix matrix;
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001818 // FIXME: This should be mitchell, not bilinear.
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +00001819 matrix.setIDiv(srcTexture->width(), srcTexture->height());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001820 this->setRenderTarget(dstTexture->asRenderTarget());
bsalomon@google.com68b58c92013-01-17 16:50:08 +00001821 paint.colorStage(0)->setEffect(GrSimpleTextureEffect::Create(srcTexture,
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001822 matrix,
1823 true))->unref();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001824 SkRect dstRect(srcRect);
robertphillips@google.com7a396332012-05-10 15:11:27 +00001825 scale_rect(&dstRect, (float) scaleFactorX, (float) scaleFactorY);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001826 this->drawRectToRect(paint, dstRect, srcRect);
1827 srcRect = dstRect;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001828 srcTexture = dstTexture;
1829 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001830 }
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001831 if (srcTexture == temp1.texture()) {
1832 return temp1.detach();
1833 } else if (srcTexture == temp2.texture()) {
1834 return temp2.detach();
1835 } else {
1836 srcTexture->ref();
1837 return srcTexture;
1838 }
senorblanco@chromium.org05054f12012-03-02 21:05:45 +00001839}
bsalomon@google.com1e266f82011-12-12 16:11:33 +00001840
bsalomon@google.comc4364992011-11-07 15:54:49 +00001841///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001842#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001843void GrContext::printCacheStats() const {
1844 fTextureCache->printStats();
1845}
1846#endif