blob: edf45b8f51b39a66fdb9edc6ad818d851f6e1390 [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.com27847de2011-02-22 20:59:41 +000018#include "GrIndexBuffer.h"
19#include "GrInOrderDrawBuffer.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000020#include "GrPathRenderer.h"
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000021#include "GrPathUtils.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000022#include "GrResourceCache.h"
robertphillips@google.com72176b22012-05-23 13:19:12 +000023#include "GrSoftwarePathRenderer.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000024#include "GrStencilBuffer.h"
tomhudson@google.com278cbb42011-06-30 19:37:01 +000025#include "GrTextStrike.h"
bsalomon@google.com8c2fe992011-09-13 15:27:18 +000026#include "SkTLazy.h"
bsalomon@google.comc0af3172012-06-15 14:10:09 +000027#include "SkTLS.h"
tomhudson@google.com0c8d93a2011-07-01 17:08:26 +000028#include "SkTrace.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000029
reed@google.comfa35e3d2012-06-26 20:16:17 +000030SK_DEFINE_INST_COUNT(GrContext)
31SK_DEFINE_INST_COUNT(GrDrawState)
32
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000033// It can be useful to set this to kNo_BufferedDraw to test whether a bug is caused by using the
34// InOrderDrawBuffer, to compare performance of using/not using InOrderDrawBuffer, or to make
35// debugging easier.
36#define DEFAULT_BUFFERING (GR_DISABLE_DRAW_BUFFERING ? kNo_BufferedDraw : kYes_BufferedDraw)
bsalomon@google.com27847de2011-02-22 20:59:41 +000037
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +000038#define MAX_BLUR_SIGMA 4.0f
39
bsalomon@google.comd46e2422011-09-23 17:40:07 +000040// When we're using coverage AA but the blend is incompatible (given gpu
41// limitations) should we disable AA or draw wrong?
bsalomon@google.com950d7a82011-09-28 15:05:33 +000042#define DISABLE_COVERAGE_AA_FOR_BLEND 1
bsalomon@google.comd46e2422011-09-23 17:40:07 +000043
reed@google.com4b2d3f32012-05-15 18:05:50 +000044#if GR_DEBUG
45 // change this to a 1 to see notifications when partial coverage fails
46 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
47#else
48 #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0
49#endif
50
bsalomon@google.com07fc0d12012-06-22 15:15:59 +000051static const size_t MAX_TEXTURE_CACHE_COUNT = 256;
52static const size_t MAX_TEXTURE_CACHE_BYTES = 16 * 1024 * 1024;
bsalomon@google.com27847de2011-02-22 20:59:41 +000053
bsalomon@google.com60361492012-03-15 17:47:06 +000054static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15;
bsalomon@google.com27847de2011-02-22 20:59:41 +000055static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4;
56
bsalomon@google.com1d4edd32012-08-16 18:36:06 +000057static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11;
58static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4;
bsalomon@google.com27847de2011-02-22 20:59:41 +000059
bsalomon@google.combc4b6542011-11-19 13:56:11 +000060#define ASSERT_OWNED_RESOURCE(R) GrAssert(!(R) || (R)->getContext() == this)
61
bsalomon@google.com05ef5102011-05-02 21:14:59 +000062GrContext* GrContext::Create(GrEngine engine,
63 GrPlatform3DContext context3D) {
bsalomon@google.com27847de2011-02-22 20:59:41 +000064 GrContext* ctx = NULL;
65 GrGpu* fGpu = GrGpu::Create(engine, context3D);
66 if (NULL != fGpu) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +000067 ctx = SkNEW_ARGS(GrContext, (fGpu));
bsalomon@google.com27847de2011-02-22 20:59:41 +000068 fGpu->unref();
69 }
70 return ctx;
71}
72
bsalomon@google.comc0af3172012-06-15 14:10:09 +000073namespace {
74void* CreateThreadInstanceCount() {
tomhudson@google.comc377baf2012-07-09 20:17:56 +000075 return SkNEW_ARGS(int, (0));
bsalomon@google.comc0af3172012-06-15 14:10:09 +000076}
77void DeleteThreadInstanceCount(void* v) {
78 delete reinterpret_cast<int*>(v);
79}
80#define THREAD_INSTANCE_COUNT \
81 (*reinterpret_cast<int*>(SkTLS::Get(CreateThreadInstanceCount, \
82 DeleteThreadInstanceCount)))
83
84}
85
86int GrContext::GetThreadInstanceCount() {
87 return THREAD_INSTANCE_COUNT;
88}
89
bsalomon@google.com27847de2011-02-22 20:59:41 +000090GrContext::~GrContext() {
bsalomon@google.com8fe72472011-03-30 21:26:44 +000091 this->flush();
robertphillips@google.com5acc0e32012-05-17 12:01:02 +000092
93 // Since the gpu can hold scratch textures, give it a chance to let go
94 // of them before freeing the texture cache
95 fGpu->purgeResources();
96
bsalomon@google.com27847de2011-02-22 20:59:41 +000097 delete fTextureCache;
98 delete fFontCache;
99 delete fDrawBuffer;
100 delete fDrawBufferVBAllocPool;
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +0000101 delete fDrawBufferIBAllocPool;
bsalomon@google.com30085192011-08-19 15:42:31 +0000102
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000103 fAARectRenderer->unref();
104
bsalomon@google.com205d4602011-04-25 12:43:45 +0000105 fGpu->unref();
bsalomon@google.com30085192011-08-19 15:42:31 +0000106 GrSafeUnref(fPathRendererChain);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000107 GrSafeUnref(fSoftwarePathRenderer);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000108 fDrawState->unref();
bsalomon@google.comc0af3172012-06-15 14:10:09 +0000109
110 --THREAD_INSTANCE_COUNT;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000111}
112
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000113void GrContext::contextLost() {
junov@google.com53a55842011-06-08 22:55:10 +0000114 contextDestroyed();
115 this->setupDrawBuffer();
116}
117
118void GrContext::contextDestroyed() {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000119 // abandon first to so destructors
120 // don't try to free the resources in the API.
121 fGpu->abandonResources();
122
bsalomon@google.com30085192011-08-19 15:42:31 +0000123 // a path renderer may be holding onto resources that
124 // are now unusable
125 GrSafeSetNull(fPathRendererChain);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000126 GrSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com30085192011-08-19 15:42:31 +0000127
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000128 delete fDrawBuffer;
129 fDrawBuffer = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000130
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000131 delete fDrawBufferVBAllocPool;
132 fDrawBufferVBAllocPool = NULL;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000133
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000134 delete fDrawBufferIBAllocPool;
135 fDrawBufferIBAllocPool = NULL;
136
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000137 fAARectRenderer->reset();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000138
bsalomon@google.coma2921122012-08-28 12:34:17 +0000139 fTextureCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000140 fFontCache->freeAll();
141 fGpu->markContextDirty();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000142}
143
144void GrContext::resetContext() {
145 fGpu->markContextDirty();
146}
147
148void GrContext::freeGpuResources() {
149 this->flush();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000150
robertphillips@google.comff175842012-05-14 19:31:39 +0000151 fGpu->purgeResources();
152
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000153 fAARectRenderer->reset();
154
bsalomon@google.coma2921122012-08-28 12:34:17 +0000155 fTextureCache->purgeAllUnlocked();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000156 fFontCache->freeAll();
bsalomon@google.com30085192011-08-19 15:42:31 +0000157 // a path renderer may be holding onto resources
158 GrSafeSetNull(fPathRendererChain);
robertphillips@google.com72176b22012-05-23 13:19:12 +0000159 GrSafeSetNull(fSoftwarePathRenderer);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000160}
161
twiz@google.com05e70242012-01-27 19:12:00 +0000162size_t GrContext::getGpuTextureCacheBytes() const {
163 return fTextureCache->getCachedResourceBytes();
164}
165
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000166////////////////////////////////////////////////////////////////////////////////
167
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000168namespace {
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000169
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000170void scale_rect(SkRect* rect, float xScale, float yScale) {
robertphillips@google.com5af56062012-04-27 15:39:52 +0000171 rect->fLeft = SkScalarMul(rect->fLeft, SkFloatToScalar(xScale));
172 rect->fTop = SkScalarMul(rect->fTop, SkFloatToScalar(yScale));
173 rect->fRight = SkScalarMul(rect->fRight, SkFloatToScalar(xScale));
174 rect->fBottom = SkScalarMul(rect->fBottom, SkFloatToScalar(yScale));
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000175}
176
bsalomon@google.comb505a122012-05-31 18:40:36 +0000177float adjust_sigma(float sigma, int *scaleFactor, int *radius) {
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000178 *scaleFactor = 1;
179 while (sigma > MAX_BLUR_SIGMA) {
180 *scaleFactor *= 2;
181 sigma *= 0.5f;
182 }
bsalomon@google.comb505a122012-05-31 18:40:36 +0000183 *radius = static_cast<int>(ceilf(sigma * 3.0f));
184 GrAssert(*radius <= GrConvolutionEffect::kMaxKernelRadius);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000185 return sigma;
186}
187
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000188void convolve_gaussian(GrDrawTarget* target,
bsalomon@google.comb505a122012-05-31 18:40:36 +0000189 GrTexture* texture,
190 const SkRect& rect,
191 float sigma,
192 int radius,
193 Gr1DKernelEffect::Direction direction) {
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000194 GrRenderTarget* rt = target->drawState()->getRenderTarget();
195 GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kReset_ASRInit);
196 GrDrawState* drawState = target->drawState();
197 drawState->setRenderTarget(rt);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000198 GrMatrix sampleM;
199 sampleM.setIDiv(texture->width(), texture->height());
bsalomon@google.comb505a122012-05-31 18:40:36 +0000200 drawState->sampler(0)->reset(sampleM);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000201 SkAutoTUnref<GrConvolutionEffect> conv(SkNEW_ARGS(GrConvolutionEffect,
tomhudson@google.comfde2c0a2012-07-16 12:23:32 +0000202 (texture, direction, radius,
203 sigma)));
bsalomon@google.comb505a122012-05-31 18:40:36 +0000204 drawState->sampler(0)->setCustomStage(conv);
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000205 target->drawSimpleRect(rect, NULL);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000206}
207
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000208}
209
robertphillips@google.coma9b06232012-08-30 11:06:31 +0000210
211GrTexture* GrContext::findTexture(const GrCacheKey& key) {
212 return static_cast<GrTexture*>(fTextureCache->find(key.key()));
213}
214
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000215GrTexture* GrContext::findAndLockTexture(const GrTextureDesc& desc,
216 const GrCacheData& cacheData,
217 const GrTextureParams* params) {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000218 GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheData, false);
robertphillips@google.comd6bbbf82012-09-05 15:46:34 +0000219 GrResource* resource = fTextureCache->findAndLock(resourceKey);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000220 return static_cast<GrTexture*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000221}
222
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000223bool GrContext::isTextureInCache(const GrTextureDesc& desc,
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000224 const GrCacheData& cacheData,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000225 const GrTextureParams* params) const {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000226 GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheData, false);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000227 return fTextureCache->hasKey(resourceKey);
228}
229
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000230void GrContext::addAndLockStencilBuffer(GrStencilBuffer* sb) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +0000231 ASSERT_OWNED_RESOURCE(sb);
robertphillips@google.com46a86002012-08-08 10:42:44 +0000232
233 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(),
234 sb->height(),
235 sb->numSamples());
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000236 fTextureCache->createAndLock(resourceKey, sb);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000237}
238
robertphillips@google.comd6bbbf82012-09-05 15:46:34 +0000239GrStencilBuffer* GrContext::findAndLockStencilBuffer(int width, int height,
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000240 int sampleCnt) {
robertphillips@google.com46a86002012-08-08 10:42:44 +0000241 GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width,
242 height,
243 sampleCnt);
robertphillips@google.comd6bbbf82012-09-05 15:46:34 +0000244 GrResource* resource = fTextureCache->findAndLock(resourceKey);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000245 return static_cast<GrStencilBuffer*>(resource);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000246}
247
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000248void GrContext::unlockStencilBuffer(GrStencilBuffer* sb) {
249 ASSERT_OWNED_RESOURCE(sb);
robertphillips@google.comd6bbbf82012-09-05 15:46:34 +0000250
251 if (NULL == sb->getCacheEntry()) {
252 // This can happen when the GrResourceCache is being deleted. If
253 // a stencil buffer was evicted before its reffing render targets,
254 // the render targets will attempt to unlock the stencil buffer
255 // when they are deleted.
256 return;
257 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000258
259 fTextureCache->unlock(sb->getCacheEntry());
bsalomon@google.com27847de2011-02-22 20:59:41 +0000260}
261
262static void stretchImage(void* dst,
263 int dstW,
264 int dstH,
265 void* src,
266 int srcW,
267 int srcH,
268 int bpp) {
269 GrFixed dx = (srcW << 16) / dstW;
270 GrFixed dy = (srcH << 16) / dstH;
271
272 GrFixed y = dy >> 1;
273
274 int dstXLimit = dstW*bpp;
275 for (int j = 0; j < dstH; ++j) {
276 GrFixed x = dx >> 1;
277 void* srcRow = (uint8_t*)src + (y>>16)*srcW*bpp;
278 void* dstRow = (uint8_t*)dst + j*dstW*bpp;
279 for (int i = 0; i < dstXLimit; i += bpp) {
280 memcpy((uint8_t*) dstRow + i,
281 (uint8_t*) srcRow + (x>>16)*bpp,
282 bpp);
283 x += dx;
284 }
285 y += dy;
286 }
287}
288
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000289// The desired texture is NPOT and tiled but that isn't supported by
robertphillips@google.com3319f332012-08-13 18:00:36 +0000290// the current hardware. Resize the texture to be a POT
291GrTexture* GrContext::createResizedTexture(const GrTextureDesc& desc,
292 const GrCacheData& cacheData,
293 void* srcData,
294 size_t rowBytes,
295 bool needsFiltering) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000296 GrTexture* clampedTexture = this->findAndLockTexture(desc, cacheData, NULL);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000297
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000298 if (NULL == clampedTexture) {
299 clampedTexture = this->createAndLockTexture(NULL, desc, cacheData, srcData, rowBytes);
300 GrAssert(NULL != clampedTexture);
301 if (NULL == clampedTexture) {
robertphillips@google.com3319f332012-08-13 18:00:36 +0000302 return NULL;
303 }
304 }
305 GrTextureDesc rtDesc = desc;
306 rtDesc.fFlags = rtDesc.fFlags |
307 kRenderTarget_GrTextureFlagBit |
308 kNoStencil_GrTextureFlagBit;
309 rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64));
310 rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64));
311
312 GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0);
313
314 if (NULL != texture) {
315 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
316 GrDrawState* drawState = fGpu->drawState();
317 drawState->setRenderTarget(texture->asRenderTarget());
318
319 // if filtering is not desired then we want to ensure all
320 // texels in the resampled image are copies of texels from
321 // the original.
322 drawState->sampler(0)->reset(SkShader::kClamp_TileMode,
323 needsFiltering);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000324 drawState->createTextureEffect(0, clampedTexture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000325
326 static const GrVertexLayout layout =
327 GrDrawTarget::StageTexCoordVertexLayoutBit(0,0);
328 GrDrawTarget::AutoReleaseGeometry arg(fGpu, layout, 4, 0);
329
330 if (arg.succeeded()) {
331 GrPoint* verts = (GrPoint*) arg.vertices();
332 verts[0].setIRectFan(0, 0,
333 texture->width(),
334 texture->height(),
335 2*sizeof(GrPoint));
336 verts[1].setIRectFan(0, 0, 1, 1, 2*sizeof(GrPoint));
337 fGpu->drawNonIndexed(kTriangleFan_GrPrimitiveType,
338 0, 4);
339 }
340 texture->releaseRenderTarget();
341 } else {
342 // TODO: Our CPU stretch doesn't filter. But we create separate
343 // stretched textures when the sampler state is either filtered or
344 // not. Either implement filtered stretch blit on CPU or just create
345 // one when FBO case fails.
346
347 rtDesc.fFlags = kNone_GrTextureFlags;
348 // no longer need to clamp at min RT size.
349 rtDesc.fWidth = GrNextPow2(desc.fWidth);
350 rtDesc.fHeight = GrNextPow2(desc.fHeight);
351 int bpp = GrBytesPerPixel(desc.fConfig);
352 SkAutoSMalloc<128*128*4> stretchedPixels(bpp *
353 rtDesc.fWidth *
354 rtDesc.fHeight);
355 stretchImage(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight,
356 srcData, desc.fWidth, desc.fHeight, bpp);
357
358 size_t stretchedRowBytes = rtDesc.fWidth * bpp;
359
360 GrTexture* texture = fGpu->createTexture(rtDesc,
361 stretchedPixels.get(),
362 stretchedRowBytes);
363 GrAssert(NULL != texture);
364 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000365 this->unlockTexture(clampedTexture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000366
367 return texture;
368}
369
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000370GrTexture* GrContext::createAndLockTexture(
bsalomon@google.comb8670992012-07-25 21:27:09 +0000371 const GrTextureParams* params,
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000372 const GrTextureDesc& desc,
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000373 const GrCacheData& cacheData,
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000374 void* srcData,
375 size_t rowBytes) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000376 SK_TRACE_EVENT0("GrContext::createAndLockTexture");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000377
378#if GR_DUMP_TEXTURE_UPLOAD
379 GrPrintf("GrContext::createAndLockTexture [%d %d]\n", desc.fWidth, desc.fHeight);
380#endif
381
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000382 GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheData, false);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000383
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +0000384 SkAutoTUnref<GrTexture> texture;
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000385 if (GrTexture::NeedsResizing(resourceKey)) {
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +0000386 texture.reset(this->createResizedTexture(desc, cacheData,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000387 srcData, rowBytes,
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +0000388 GrTexture::NeedsFiltering(resourceKey)));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000389 } else {
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +0000390 texture.reset(fGpu->createTexture(desc, srcData, rowBytes));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000391 }
robertphillips@google.com3319f332012-08-13 18:00:36 +0000392
393 if (NULL != texture) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000394 fTextureCache->createAndLock(resourceKey, texture);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000395 }
396
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000397 return texture;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000398}
399
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000400GrTexture* GrContext::lockScratchTexture(const GrTextureDesc& inDesc,
401 ScratchTexMatch match) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000402 GrTextureDesc desc = inDesc;
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000403 GrCacheData cacheData(GrCacheData::kScratch_CacheID);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000404
rileya@google.com2afb8ec2012-08-23 14:08:57 +0000405 GrAssert((desc.fFlags & kRenderTarget_GrTextureFlagBit) ||
406 !(desc.fFlags & kNoStencil_GrTextureFlagBit));
407
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000408 if (kExact_ScratchTexMatch != match) {
409 // bin by pow2 with a reasonable min
410 static const int MIN_SIZE = 256;
411 desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth));
412 desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight));
413 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000414
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000415 GrResource* resource = NULL;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000416 int origWidth = desc.fWidth;
417 int origHeight = desc.fHeight;
418 bool doubledW = false;
419 bool doubledH = false;
420
421 do {
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000422 GrResourceKey key = GrTexture::ComputeKey(fGpu, NULL, desc, cacheData, true);
robertphillips@google.comd6bbbf82012-09-05 15:46:34 +0000423 resource = fTextureCache->findAndLock(key);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000424 // if we miss, relax the fit of the flags...
425 // then try doubling width... then height.
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000426 if (NULL != resource || kExact_ScratchTexMatch == match) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000427 break;
428 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000429 // We no longer try to reuse textures that were previously used as render targets in
rileya@google.com2afb8ec2012-08-23 14:08:57 +0000430 // situations where no RT is needed; doing otherwise can confuse the video driver and
431 // cause significant performance problems in some cases.
432 if (desc.fFlags & kNoStencil_GrTextureFlagBit) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000433 desc.fFlags = desc.fFlags & ~kNoStencil_GrTextureFlagBit;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000434 } else if (!doubledW) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000435 desc.fFlags = inDesc.fFlags;
436 desc.fWidth *= 2;
437 doubledW = true;
438 } else if (!doubledH) {
439 desc.fFlags = inDesc.fFlags;
440 desc.fWidth = origWidth;
441 desc.fHeight *= 2;
442 doubledH = true;
443 } else {
444 break;
445 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000446
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000447 } while (true);
448
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000449 if (NULL == resource) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000450 desc.fFlags = inDesc.fFlags;
451 desc.fWidth = origWidth;
452 desc.fHeight = origHeight;
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +0000453 SkAutoTUnref<GrTexture> texture(fGpu->createTexture(desc, NULL, 0));
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000454 if (NULL != texture) {
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000455 GrResourceKey key = GrTexture::ComputeKey(fGpu, NULL,
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000456 texture->desc(),
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000457 cacheData,
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000458 true);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000459 fTextureCache->createAndLock(key, texture);
460 resource = texture;
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000461 }
462 }
463
464 // If the caller gives us the same desc/sampler twice we don't want
465 // to return the same texture the second time (unless it was previously
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000466 // released). So make it exclusive to hide it from future searches.
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000467 if (NULL != resource) {
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000468 fTextureCache->makeExclusive(resource->getCacheEntry());
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000469 }
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000470
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000471 return static_cast<GrTexture*>(resource);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000472}
473
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000474void GrContext::addExistingTextureToCache(GrTexture* texture) {
475
476 if (NULL == texture) {
477 return;
478 }
479
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000480 // This texture should already have a cache entry since it was once
481 // attached
482 GrAssert(NULL != texture->getCacheEntry());
robertphillips@google.com9c2ea842012-08-13 17:47:59 +0000483
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000484 // Conceptually, the cache entry is going to assume responsibility
485 // for the creation ref.
486 GrAssert(1 == texture->getRefCnt());
487
488 // Since this texture came from an AutoScratchTexture it should
489 // still be in the exclusive pile
490 fTextureCache->makeNonExclusive(texture->getCacheEntry());
491
492 // and it should still be locked
493 fTextureCache->unlock(texture->getCacheEntry());
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000494}
495
robertphillips@google.coma9b06232012-08-30 11:06:31 +0000496void GrContext::lockTexture(GrTexture* texture) {
497
498 if (NULL == texture->getCacheEntry()) {
499 // not in the cache
500 GrAssert(0);
501 return;
502 }
503
504 fTextureCache->lock(texture->getCacheEntry());
505}
506
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000507void GrContext::unlockTexture(GrTexture* texture) {
508 ASSERT_OWNED_RESOURCE(texture);
509 GrAssert(NULL != texture->getCacheEntry());
510
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000511 // If this is a scratch texture we detached it from the cache
512 // while it was locked (to avoid two callers simultaneously getting
513 // the same texture).
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000514 if (GrTexture::IsScratchTexture(texture->getCacheEntry()->key())) {
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000515 fTextureCache->makeNonExclusive(texture->getCacheEntry());
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000516 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000517
robertphillips@google.com521eaf82012-08-22 11:03:19 +0000518 fTextureCache->unlock(texture->getCacheEntry());
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000519}
520
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000521GrTexture* GrContext::createUncachedTexture(const GrTextureDesc& descIn,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000522 void* srcData,
523 size_t rowBytes) {
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000524 GrTextureDesc descCopy = descIn;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000525 return fGpu->createTexture(descCopy, srcData, rowBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000526}
527
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000528void GrContext::getTextureCacheLimits(int* maxTextures,
529 size_t* maxTextureBytes) const {
530 fTextureCache->getLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000531}
532
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000533void GrContext::setTextureCacheLimits(int maxTextures, size_t maxTextureBytes) {
534 fTextureCache->setLimits(maxTextures, maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000535}
536
bsalomon@google.com91958362011-06-13 17:58:13 +0000537int GrContext::getMaxTextureSize() const {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000538 return fGpu->getCaps().maxTextureSize();
bsalomon@google.com91958362011-06-13 17:58:13 +0000539}
540
541int GrContext::getMaxRenderTargetSize() const {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000542 return fGpu->getCaps().maxRenderTargetSize();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000543}
544
545///////////////////////////////////////////////////////////////////////////////
546
bsalomon@google.come269f212011-11-07 13:29:52 +0000547GrTexture* GrContext::createPlatformTexture(const GrPlatformTextureDesc& desc) {
548 return fGpu->createPlatformTexture(desc);
549}
550
551GrRenderTarget* GrContext::createPlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) {
552 return fGpu->createPlatformRenderTarget(desc);
553}
554
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000555///////////////////////////////////////////////////////////////////////////////
556
bsalomon@google.comb8670992012-07-25 21:27:09 +0000557bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000558 int width, int height) const {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000559 const GrDrawTarget::Caps& caps = fGpu->getCaps();
bsalomon@google.comf6601872012-08-28 21:11:35 +0000560 if (!caps.eightBitPaletteSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000561 return false;
562 }
563
bsalomon@google.com27847de2011-02-22 20:59:41 +0000564 bool isPow2 = GrIsPow2(width) && GrIsPow2(height);
565
566 if (!isPow2) {
bsalomon@google.comb8670992012-07-25 21:27:09 +0000567 bool tiled = NULL != params && params->isTiled();
bsalomon@google.comf6601872012-08-28 21:11:35 +0000568 if (tiled && !caps.npotTextureTileSupport()) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000569 return false;
570 }
571 }
572 return true;
573}
574
575////////////////////////////////////////////////////////////////////////////////
576
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000577const GrClipData* GrContext::getClip() const {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000578 return fGpu->getClip();
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000579}
bsalomon@google.com05ef5102011-05-02 21:14:59 +0000580
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000581void GrContext::setClip(const GrClipData* clipData) {
582 fGpu->setClip(clipData);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000583 fDrawState->enableState(GrDrawState::kClip_StateBit);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000584}
585
bsalomon@google.com27847de2011-02-22 20:59:41 +0000586////////////////////////////////////////////////////////////////////////////////
587
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000588void GrContext::clear(const GrIRect* rect,
589 const GrColor color,
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000590 GrRenderTarget* target) {
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000591 this->prepareToDraw(NULL, DEFAULT_BUFFERING)->clear(rect, color, target);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000592}
593
594void GrContext::drawPaint(const GrPaint& paint) {
595 // set rect to be big enough to fill the space, but not super-huge, so we
596 // don't overflow fixed-point implementations
bsalomon@google.comd302f142011-03-03 13:54:13 +0000597 GrRect r;
598 r.setLTRB(0, 0,
599 GrIntToScalar(getRenderTarget()->width()),
600 GrIntToScalar(getRenderTarget()->height()));
bsalomon@google.com27847de2011-02-22 20:59:41 +0000601 GrMatrix inverse;
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000602 SkTLazy<GrPaint> tmpPaint;
603 const GrPaint* p = &paint;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000604 AutoMatrix am;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000605
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000606 // We attempt to map r by the inverse matrix and draw that. mapRect will
607 // map the four corners and bound them with a new rect. This will not
608 // produce a correct result for some perspective matrices.
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000609 if (!this->getMatrix().hasPerspective()) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000610 if (!fDrawState->getViewInverse(&inverse)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000611 GrPrintf("Could not invert matrix\n");
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000612 return;
613 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000614 inverse.mapRect(&r);
615 } else {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000616 if (paint.hasTextureOrMask()) {
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000617 tmpPaint.set(paint);
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000618 p = tmpPaint.get();
bsalomon@google.come3d32162012-07-20 13:37:06 +0000619 if (!tmpPaint.get()->preConcatSamplerMatricesWithInverse(fDrawState->getViewMatrix())) {
620 GrPrintf("Could not invert matrix\n");
621 }
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000622 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000623 am.set(this, GrMatrix::I());
bsalomon@google.com27847de2011-02-22 20:59:41 +0000624 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000625 // by definition this fills the entire clip, no need for AA
626 if (paint.fAntiAlias) {
bsalomon@google.com8c2fe992011-09-13 15:27:18 +0000627 if (!tmpPaint.isValid()) {
628 tmpPaint.set(paint);
629 p = tmpPaint.get();
630 }
631 GrAssert(p == tmpPaint.get());
632 tmpPaint.get()->fAntiAlias = false;
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000633 }
634 this->drawRect(*p, r);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000635}
636
bsalomon@google.com205d4602011-04-25 12:43:45 +0000637////////////////////////////////////////////////////////////////////////////////
638
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000639namespace {
640inline bool disable_coverage_aa_for_blend(GrDrawTarget* target) {
641 return DISABLE_COVERAGE_AA_FOR_BLEND && !target->canApplyCoverage();
642}
643}
644
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000645////////////////////////////////////////////////////////////////////////////////
646
bsalomon@google.com27847de2011-02-22 20:59:41 +0000647/* create a triangle strip that strokes the specified triangle. There are 8
648 unique vertices, but we repreat the last 2 to close up. Alternatively we
649 could use an indices array, and then only send 8 verts, but not sure that
650 would be faster.
651 */
bsalomon@google.com205d4602011-04-25 12:43:45 +0000652static void setStrokeRectStrip(GrPoint verts[10], GrRect rect,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000653 GrScalar width) {
654 const GrScalar rad = GrScalarHalf(width);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000655 rect.sort();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000656
657 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
658 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
659 verts[2].set(rect.fRight - rad, rect.fTop + rad);
660 verts[3].set(rect.fRight + rad, rect.fTop - rad);
661 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
662 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
663 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
664 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
665 verts[8] = verts[0];
666 verts[9] = verts[1];
667}
668
reed@google.com20efde72011-05-09 17:00:02 +0000669/**
670 * Returns true if the rects edges are integer-aligned.
671 */
672static bool isIRect(const GrRect& r) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000673 return GrScalarIsInt(r.fLeft) && GrScalarIsInt(r.fTop) &&
reed@google.com20efde72011-05-09 17:00:02 +0000674 GrScalarIsInt(r.fRight) && GrScalarIsInt(r.fBottom);
675}
676
bsalomon@google.com205d4602011-04-25 12:43:45 +0000677static bool apply_aa_to_rect(GrDrawTarget* target,
bsalomon@google.com205d4602011-04-25 12:43:45 +0000678 const GrRect& rect,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000679 GrScalar width,
bsalomon@google.com205d4602011-04-25 12:43:45 +0000680 const GrMatrix* matrix,
681 GrMatrix* combinedMatrix,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000682 GrRect* devRect,
683 bool* useVertexCoverage) {
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000684 // we use a simple coverage ramp to do aa on axis-aligned rects
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000685 // we check if the rect will be axis-aligned, and the rect won't land on
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000686 // integer coords.
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000687
bsalomon@google.coma3108262011-10-10 14:08:47 +0000688 // we are keeping around the "tweak the alpha" trick because
689 // it is our only hope for the fixed-pipe implementation.
690 // In a shader implementation we can give a separate coverage input
bsalomon@google.com289533a2011-10-27 12:34:25 +0000691 // TODO: remove this ugliness when we drop the fixed-pipe impl
bsalomon@google.coma3108262011-10-10 14:08:47 +0000692 *useVertexCoverage = false;
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000693 if (!target->canTweakAlphaForCoverage()) {
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000694 if (disable_coverage_aa_for_blend(target)) {
bsalomon@google.com1983f392011-10-10 15:17:58 +0000695#if GR_DEBUG
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000696 //GrPrintf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +0000697#endif
bsalomon@google.coma3108262011-10-10 14:08:47 +0000698 return false;
bsalomon@google.com2eba7952012-01-12 13:47:37 +0000699 } else {
700 *useVertexCoverage = true;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000701 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000702 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000703 const GrDrawState& drawState = target->getDrawState();
704 if (drawState.getRenderTarget()->isMultisampled()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000705 return false;
706 }
707
bsalomon@google.com471d4712011-08-23 15:45:25 +0000708 if (0 == width && target->willUseHWAALines()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000709 return false;
710 }
711
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000712 if (!drawState.getViewMatrix().preservesAxisAlignment()) {
bsalomon@google.com205d4602011-04-25 12:43:45 +0000713 return false;
714 }
715
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000716 if (NULL != matrix &&
bsalomon@google.com205d4602011-04-25 12:43:45 +0000717 !matrix->preservesAxisAlignment()) {
718 return false;
719 }
720
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000721 *combinedMatrix = drawState.getViewMatrix();
bsalomon@google.com205d4602011-04-25 12:43:45 +0000722 if (NULL != matrix) {
723 combinedMatrix->preConcat(*matrix);
724 GrAssert(combinedMatrix->preservesAxisAlignment());
725 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000726
bsalomon@google.com205d4602011-04-25 12:43:45 +0000727 combinedMatrix->mapRect(devRect, rect);
728 devRect->sort();
729
730 if (width < 0) {
reed@google.com20efde72011-05-09 17:00:02 +0000731 return !isIRect(*devRect);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000732 } else {
733 return true;
734 }
735}
736
bsalomon@google.com27847de2011-02-22 20:59:41 +0000737void GrContext::drawRect(const GrPaint& paint,
738 const GrRect& rect,
739 GrScalar width,
740 const GrMatrix* matrix) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000741 SK_TRACE_EVENT0("GrContext::drawRect");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000742
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000743 GrDrawTarget* target = this->prepareToDraw(&paint, DEFAULT_BUFFERING);
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +0000744 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000745
bsalomon@google.com205d4602011-04-25 12:43:45 +0000746 GrRect devRect = rect;
747 GrMatrix combinedMatrix;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000748 bool useVertexCoverage;
bsalomon@google.com289533a2011-10-27 12:34:25 +0000749 bool needAA = paint.fAntiAlias &&
750 !this->getRenderTarget()->isMultisampled();
751 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix,
752 &combinedMatrix, &devRect,
753 &useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000754
755 if (doAA) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000756 GrDrawTarget::AutoDeviceCoordDraw adcd(target);
757 if (!adcd.succeeded()) {
758 return;
759 }
bsalomon@google.com205d4602011-04-25 12:43:45 +0000760 if (width >= 0) {
761 GrVec strokeSize;;
762 if (width > 0) {
763 strokeSize.set(width, width);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000764 combinedMatrix.mapVectors(&strokeSize, 1);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000765 strokeSize.setAbs(strokeSize);
766 } else {
767 strokeSize.set(GR_Scalar1, GR_Scalar1);
768 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000769 fAARectRenderer->strokeAARect(this->getGpu(), target, devRect,
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000770 strokeSize, useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000771 } else {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000772 fAARectRenderer->fillAARect(this->getGpu(), target,
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000773 devRect, useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000774 }
775 return;
776 }
777
bsalomon@google.com27847de2011-02-22 20:59:41 +0000778 if (width >= 0) {
779 // TODO: consider making static vertex buffers for these cases.
780 // Hairline could be done by just adding closing vertex to
781 // unitSquareVertexBuffer()
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000782
bsalomon@google.com27847de2011-02-22 20:59:41 +0000783 static const int worstCaseVertCount = 10;
bsalomon@google.come3d32162012-07-20 13:37:06 +0000784 GrDrawTarget::AutoReleaseGeometry geo(target, 0, worstCaseVertCount, 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000785
786 if (!geo.succeeded()) {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000787 GrPrintf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000788 return;
789 }
790
791 GrPrimitiveType primType;
792 int vertCount;
793 GrPoint* vertex = geo.positions();
794
795 if (width > 0) {
796 vertCount = 10;
bsalomon@google.com47059542012-06-06 20:51:20 +0000797 primType = kTriangleStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000798 setStrokeRectStrip(vertex, rect, width);
799 } else {
800 // hairline
801 vertCount = 5;
bsalomon@google.com47059542012-06-06 20:51:20 +0000802 primType = kLineStrip_GrPrimitiveType;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000803 vertex[0].set(rect.fLeft, rect.fTop);
804 vertex[1].set(rect.fRight, rect.fTop);
805 vertex[2].set(rect.fRight, rect.fBottom);
806 vertex[3].set(rect.fLeft, rect.fBottom);
807 vertex[4].set(rect.fLeft, rect.fTop);
808 }
809
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000810 GrDrawState::AutoViewMatrixRestore avmr;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000811 if (NULL != matrix) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000812 GrDrawState* drawState = target->drawState();
813 avmr.set(drawState);
814 drawState->preConcatViewMatrix(*matrix);
bsalomon@google.come3d32162012-07-20 13:37:06 +0000815 drawState->preConcatSamplerMatrices(*matrix);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000816 }
817
818 target->drawNonIndexed(primType, 0, vertCount);
819 } else {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000820#if GR_STATIC_RECT_VB
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000821 const GrVertexBuffer* sqVB = fGpu->getUnitSquareVertexBuffer();
822 if (NULL == sqVB) {
823 GrPrintf("Failed to create static rect vb.\n");
824 return;
825 }
bsalomon@google.come3d32162012-07-20 13:37:06 +0000826 target->setVertexSourceToBuffer(0, sqVB);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000827 GrDrawState* drawState = target->drawState();
828 GrDrawState::AutoViewMatrixRestore avmr(drawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000829 GrMatrix m;
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000830 m.setAll(rect.width(), 0, rect.fLeft,
bsalomon@google.com205d4602011-04-25 12:43:45 +0000831 0, rect.height(), rect.fTop,
832 0, 0, GrMatrix::I()[8]);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000833
834 if (NULL != matrix) {
835 m.postConcat(*matrix);
836 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000837 drawState->preConcatViewMatrix(m);
bsalomon@google.come3d32162012-07-20 13:37:06 +0000838 drawState->preConcatSamplerMatrices(m);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000839
bsalomon@google.com47059542012-06-06 20:51:20 +0000840 target->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000841#else
bsalomon@google.come3d32162012-07-20 13:37:06 +0000842 target->drawSimpleRect(rect, matrix);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000843#endif
bsalomon@google.com27847de2011-02-22 20:59:41 +0000844 }
845}
846
847void GrContext::drawRectToRect(const GrPaint& paint,
848 const GrRect& dstRect,
849 const GrRect& srcRect,
850 const GrMatrix* dstMatrix,
851 const GrMatrix* srcMatrix) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000852 SK_TRACE_EVENT0("GrContext::drawRectToRect");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000853
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000854 // srcRect refers to paint's first texture
tomhudson@google.comf13f5882012-06-25 17:27:28 +0000855 if (!paint.isTextureStageEnabled(0)) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000856 drawRect(paint, dstRect, -1, dstMatrix);
857 return;
858 }
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +0000859
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000860 GrDrawTarget* target = this->prepareToDraw(&paint, DEFAULT_BUFFERING);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000861
862#if GR_STATIC_RECT_VB
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +0000863 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000864 GrDrawState* drawState = target->drawState();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000865 GrDrawState::AutoViewMatrixRestore avmr(drawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000866
867 GrMatrix m;
868
869 m.setAll(dstRect.width(), 0, dstRect.fLeft,
870 0, dstRect.height(), dstRect.fTop,
871 0, 0, GrMatrix::I()[8]);
872 if (NULL != dstMatrix) {
873 m.postConcat(*dstMatrix);
874 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000875 drawState->preConcatViewMatrix(m);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000876
bsalomon@google.come3d32162012-07-20 13:37:06 +0000877 // we explicitly setup the correct coords for the first stage. The others
878 // must know about the view matrix change.
879 for (int s = 1; s < GrPaint::kTotalStages; ++s) {
880 if (drawState->isStageEnabled(s)) {
881 drawState->sampler(s)->preConcatMatrix(m);
882 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000883 }
884
bsalomon@google.com27847de2011-02-22 20:59:41 +0000885 m.setAll(srcRect.width(), 0, srcRect.fLeft,
886 0, srcRect.height(), srcRect.fTop,
887 0, 0, GrMatrix::I()[8]);
888 if (NULL != srcMatrix) {
889 m.postConcat(*srcMatrix);
890 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000891 drawState->sampler(GrPaint::kFirstTextureStage)->preConcatMatrix(m);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000892
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000893 const GrVertexBuffer* sqVB = fGpu->getUnitSquareVertexBuffer();
894 if (NULL == sqVB) {
895 GrPrintf("Failed to create static rect vb.\n");
896 return;
897 }
bsalomon@google.come3d32162012-07-20 13:37:06 +0000898 target->setVertexSourceToBuffer(0, sqVB);
bsalomon@google.com47059542012-06-06 20:51:20 +0000899 target->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000900#else
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +0000901 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000902
tomhudson@google.com93813632011-10-27 20:21:16 +0000903 const GrRect* srcRects[GrDrawState::kNumStages] = {NULL};
904 const GrMatrix* srcMatrices[GrDrawState::kNumStages] = {NULL};
bsalomon@google.com27847de2011-02-22 20:59:41 +0000905 srcRects[0] = &srcRect;
906 srcMatrices[0] = srcMatrix;
907
bsalomon@google.come3d32162012-07-20 13:37:06 +0000908 target->drawRect(dstRect, dstMatrix, srcRects, srcMatrices);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000909#endif
910}
911
912void GrContext::drawVertices(const GrPaint& paint,
913 GrPrimitiveType primitiveType,
914 int vertexCount,
915 const GrPoint positions[],
916 const GrPoint texCoords[],
917 const GrColor colors[],
918 const uint16_t indices[],
919 int indexCount) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +0000920 SK_TRACE_EVENT0("GrContext::drawVertices");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000921
922 GrDrawTarget::AutoReleaseGeometry geo;
923
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000924 GrDrawTarget* target = this->prepareToDraw(&paint, DEFAULT_BUFFERING);
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +0000925 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000926
bsalomon@google.come3d32162012-07-20 13:37:06 +0000927 GrVertexLayout layout = 0;
928 if (NULL != texCoords) {
929 layout |= GrDrawTarget::StageTexCoordVertexLayoutBit(0, 0);
930 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000931 if (NULL != colors) {
932 layout |= GrDrawTarget::kColor_VertexLayoutBit;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000933 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000934 int vertexSize = GrDrawTarget::VertexSize(layout);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000935
936 if (sizeof(GrPoint) != vertexSize) {
937 if (!geo.set(target, layout, vertexCount, 0)) {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000938 GrPrintf("Failed to get space for vertices!\n");
bsalomon@google.com27847de2011-02-22 20:59:41 +0000939 return;
940 }
tomhudson@google.com93813632011-10-27 20:21:16 +0000941 int texOffsets[GrDrawState::kMaxTexCoords];
bsalomon@google.com27847de2011-02-22 20:59:41 +0000942 int colorOffset;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000943 GrDrawTarget::VertexSizeAndOffsetsByIdx(layout,
944 texOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000945 &colorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000946 NULL,
947 NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000948 void* curVertex = geo.vertices();
949
950 for (int i = 0; i < vertexCount; ++i) {
951 *((GrPoint*)curVertex) = positions[i];
952
953 if (texOffsets[0] > 0) {
954 *(GrPoint*)((intptr_t)curVertex + texOffsets[0]) = texCoords[i];
955 }
956 if (colorOffset > 0) {
957 *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i];
958 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000959 curVertex = (void*)((intptr_t)curVertex + vertexSize);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000960 }
961 } else {
962 target->setVertexSourceToArray(layout, positions, vertexCount);
963 }
964
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000965 // we don't currently apply offscreen AA to this path. Need improved
bsalomon@google.com91958362011-06-13 17:58:13 +0000966 // management of GrDrawTarget's geometry to avoid copying points per-tile.
bsalomon@google.coma47a48d2011-04-26 20:22:11 +0000967
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000968 if (NULL != indices) {
bsalomon@google.com91958362011-06-13 17:58:13 +0000969 target->setIndexSourceToArray(indices, indexCount);
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000970 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000971 } else {
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000972 target->drawNonIndexed(primitiveType, 0, vertexCount);
973 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000974}
975
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000976///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com150d2842012-01-12 20:19:56 +0000977namespace {
978
bsalomon@google.com93c96602012-04-27 13:05:21 +0000979struct CircleVertex {
980 GrPoint fPos;
981 GrPoint fCenter;
982 GrScalar fOuterRadius;
983 GrScalar fInnerRadius;
984};
985
986/* Returns true if will map a circle to another circle. This can be true
987 * if the matrix only includes square-scale, rotation, translation.
988 */
989inline bool isSimilarityTransformation(const SkMatrix& matrix,
990 SkScalar tol = SK_ScalarNearlyZero) {
991 if (matrix.isIdentity() || matrix.getType() == SkMatrix::kTranslate_Mask) {
992 return true;
993 }
994 if (matrix.hasPerspective()) {
995 return false;
996 }
997
998 SkScalar mx = matrix.get(SkMatrix::kMScaleX);
999 SkScalar sx = matrix.get(SkMatrix::kMSkewX);
1000 SkScalar my = matrix.get(SkMatrix::kMScaleY);
1001 SkScalar sy = matrix.get(SkMatrix::kMSkewY);
1002
1003 if (mx == 0 && sx == 0 && my == 0 && sy == 0) {
1004 return false;
1005 }
1006
1007 // it has scales or skews, but it could also be rotation, check it out.
1008 SkVector vec[2];
1009 vec[0].set(mx, sx);
1010 vec[1].set(sy, my);
1011
1012 return SkScalarNearlyZero(vec[0].dot(vec[1]), SkScalarSquare(tol)) &&
1013 SkScalarNearlyEqual(vec[0].lengthSqd(), vec[1].lengthSqd(),
1014 SkScalarSquare(tol));
1015}
1016
1017}
1018
1019// TODO: strokeWidth can't be larger than zero right now.
1020// It will be fixed when drawPath() can handle strokes.
1021void GrContext::drawOval(const GrPaint& paint,
1022 const GrRect& rect,
1023 SkScalar strokeWidth) {
bsalomon@google.com0982d352012-07-31 15:33:25 +00001024 GrAssert(strokeWidth <= 0);
1025 if (!isSimilarityTransformation(this->getMatrix()) ||
bsalomon@google.com93c96602012-04-27 13:05:21 +00001026 !paint.fAntiAlias ||
1027 rect.height() != rect.width()) {
1028 SkPath path;
1029 path.addOval(rect);
1030 GrPathFill fill = (strokeWidth == 0) ?
bsalomon@google.com0982d352012-07-31 15:33:25 +00001031 kHairLine_GrPathFill : kWinding_GrPathFill;
bsalomon@google.com93c96602012-04-27 13:05:21 +00001032 this->internalDrawPath(paint, path, fill, NULL);
1033 return;
1034 }
1035
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001036 GrDrawTarget* target = this->prepareToDraw(&paint, DEFAULT_BUFFERING);
1037
bsalomon@google.com0982d352012-07-31 15:33:25 +00001038 GrDrawState* drawState = target->drawState();
1039 GrDrawState::AutoStageDisable atr(fDrawState);
1040 const GrMatrix vm = drawState->getViewMatrix();
1041
bsalomon@google.com93c96602012-04-27 13:05:21 +00001042 const GrRenderTarget* rt = drawState->getRenderTarget();
1043 if (NULL == rt) {
1044 return;
1045 }
1046
bsalomon@google.come3d32162012-07-20 13:37:06 +00001047 GrDrawTarget::AutoDeviceCoordDraw adcd(target);
1048 if (!adcd.succeeded()) {
1049 return;
1050 }
bsalomon@google.com93c96602012-04-27 13:05:21 +00001051
bsalomon@google.come3d32162012-07-20 13:37:06 +00001052 GrVertexLayout layout = GrDrawTarget::kEdge_VertexLayoutBit;
bsalomon@google.com93c96602012-04-27 13:05:21 +00001053 GrAssert(sizeof(CircleVertex) == GrDrawTarget::VertexSize(layout));
1054
1055 GrPoint center = GrPoint::Make(rect.centerX(), rect.centerY());
1056 GrScalar radius = SkScalarHalf(rect.width());
1057
1058 vm.mapPoints(&center, 1);
1059 radius = vm.mapRadius(radius);
1060
1061 GrScalar outerRadius = radius;
1062 GrScalar innerRadius = 0;
1063 SkScalar halfWidth = 0;
1064 if (strokeWidth == 0) {
1065 halfWidth = SkScalarHalf(SK_Scalar1);
1066
1067 outerRadius += halfWidth;
1068 innerRadius = SkMaxScalar(0, radius - halfWidth);
1069 }
1070
1071 GrDrawTarget::AutoReleaseGeometry geo(target, layout, 4, 0);
1072 if (!geo.succeeded()) {
1073 GrPrintf("Failed to get space for vertices!\n");
1074 return;
1075 }
1076
1077 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices());
1078
robertphillips@google.coma0a66c12012-06-22 13:14:29 +00001079 // The fragment shader will extend the radius out half a pixel
1080 // to antialias. Expand the drawn rect here so all the pixels
1081 // will be captured.
1082 SkScalar L = center.fX - outerRadius - SkFloatToScalar(0.5f);
1083 SkScalar R = center.fX + outerRadius + SkFloatToScalar(0.5f);
1084 SkScalar T = center.fY - outerRadius - SkFloatToScalar(0.5f);
1085 SkScalar B = center.fY + outerRadius + SkFloatToScalar(0.5f);
bsalomon@google.com93c96602012-04-27 13:05:21 +00001086
1087 verts[0].fPos = SkPoint::Make(L, T);
1088 verts[1].fPos = SkPoint::Make(R, T);
1089 verts[2].fPos = SkPoint::Make(L, B);
1090 verts[3].fPos = SkPoint::Make(R, B);
1091
1092 for (int i = 0; i < 4; ++i) {
1093 // this goes to fragment shader, it should be in y-points-up space.
1094 verts[i].fCenter = SkPoint::Make(center.fX, rt->height() - center.fY);
1095
1096 verts[i].fOuterRadius = outerRadius;
1097 verts[i].fInnerRadius = innerRadius;
1098 }
1099
1100 drawState->setVertexEdgeType(GrDrawState::kCircle_EdgeType);
bsalomon@google.com47059542012-06-06 20:51:20 +00001101 target->drawNonIndexed(kTriangleStrip_GrPrimitiveType, 0, 4);
bsalomon@google.com150d2842012-01-12 20:19:56 +00001102}
bsalomon@google.com27847de2011-02-22 20:59:41 +00001103
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001104void GrContext::drawPath(const GrPaint& paint, const SkPath& path,
reed@google.com07f3ee12011-05-16 17:21:57 +00001105 GrPathFill fill, const GrPoint* translate) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001106
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001107 if (path.isEmpty()) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00001108 if (GrIsFillInverted(fill)) {
1109 this->drawPaint(paint);
1110 }
1111 return;
1112 }
1113
bsalomon@google.com93c96602012-04-27 13:05:21 +00001114 SkRect ovalRect;
1115 if (!GrIsFillInverted(fill) && path.isOval(&ovalRect)) {
1116 if (translate) {
1117 ovalRect.offset(*translate);
1118 }
bsalomon@google.com47059542012-06-06 20:51:20 +00001119 SkScalar width = (fill == kHairLine_GrPathFill) ? 0 : -SK_Scalar1;
bsalomon@google.com93c96602012-04-27 13:05:21 +00001120 this->drawOval(paint, ovalRect, width);
1121 return;
1122 }
1123
1124 internalDrawPath(paint, path, fill, translate);
1125}
1126
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001127void GrContext::internalDrawPath(const GrPaint& paint, const SkPath& path,
bsalomon@google.com93c96602012-04-27 13:05:21 +00001128 GrPathFill fill, const GrPoint* translate) {
1129
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001130 // Note that below we may sw-rasterize the path into a scratch texture.
1131 // Scratch textures can be recycled after they are returned to the texture
1132 // cache. This presents a potential hazard for buffered drawing. However,
1133 // the writePixels that uploads to the scratch will perform a flush so we're
1134 // OK.
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001135 GrDrawTarget* target = this->prepareToDraw(&paint, DEFAULT_BUFFERING);
tomhudson@google.com7d6afdd2012-06-22 20:10:50 +00001136 GrDrawState::AutoStageDisable atr(fDrawState);
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001137
bsalomon@google.com289533a2011-10-27 12:34:25 +00001138 bool prAA = paint.fAntiAlias && !this->getRenderTarget()->isMultisampled();
1139
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001140 // An Assumption here is that path renderer would use some form of tweaking
1141 // the src color (either the input alpha or in the frag shader) to implement
1142 // aa. If we have some future driver-mojo path AA that can do the right
1143 // thing WRT to the blend then we'll need some query on the PR.
1144 if (disable_coverage_aa_for_blend(target)) {
bsalomon@google.com1983f392011-10-10 15:17:58 +00001145#if GR_DEBUG
bsalomon@google.com979432b2011-11-05 21:38:22 +00001146 //GrPrintf("Turning off AA to correctly apply blend.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001147#endif
bsalomon@google.com289533a2011-10-27 12:34:25 +00001148 prAA = false;
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001149 }
bsalomon@google.com289533a2011-10-27 12:34:25 +00001150
robertphillips@google.com72176b22012-05-23 13:19:12 +00001151 GrPathRenderer* pr = this->getPathRenderer(path, fill, target, prAA, true);
bsalomon@google.com30085192011-08-19 15:42:31 +00001152 if (NULL == pr) {
bsalomon@google.com1983f392011-10-10 15:17:58 +00001153#if GR_DEBUG
bsalomon@google.com30085192011-08-19 15:42:31 +00001154 GrPrintf("Unable to find path renderer compatible with path.\n");
bsalomon@google.com1983f392011-10-10 15:17:58 +00001155#endif
bsalomon@google.com30085192011-08-19 15:42:31 +00001156 return;
1157 }
1158
bsalomon@google.come3d32162012-07-20 13:37:06 +00001159 pr->drawPath(path, fill, translate, target, prAA);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001160}
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001161
bsalomon@google.com27847de2011-02-22 20:59:41 +00001162////////////////////////////////////////////////////////////////////////////////
1163
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001164void GrContext::flush(int flagsBitfield) {
1165 if (kDiscard_FlushBit & flagsBitfield) {
1166 fDrawBuffer->reset();
1167 } else {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001168 this->flushDrawBuffer();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001169 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001170 if (kForceCurrentRenderTarget_FlushBit & flagsBitfield) {
bsalomon@google.com27847de2011-02-22 20:59:41 +00001171 fGpu->forceRenderTargetFlush();
1172 }
1173}
1174
bsalomon@google.com27847de2011-02-22 20:59:41 +00001175void GrContext::flushDrawBuffer() {
junov@google.com53a55842011-06-08 22:55:10 +00001176 if (fDrawBuffer) {
robertphillips@google.com58b38182012-05-03 16:29:41 +00001177 // With addition of the AA clip path, flushing the draw buffer can
1178 // result in the generation of an AA clip mask. During this
1179 // process the SW path renderer may be invoked which recusively
1180 // calls this method (via internalWriteTexturePixels) creating
1181 // infinite recursion
1182 GrInOrderDrawBuffer* temp = fDrawBuffer;
1183 fDrawBuffer = NULL;
1184
1185 temp->flushTo(fGpu);
1186
1187 fDrawBuffer = temp;
junov@google.com53a55842011-06-08 22:55:10 +00001188 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001189}
1190
bsalomon@google.com0342a852012-08-20 19:22:38 +00001191void GrContext::writeTexturePixels(GrTexture* texture,
1192 int left, int top, int width, int height,
1193 GrPixelConfig config, const void* buffer, size_t rowBytes,
1194 uint32_t flags) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001195 SK_TRACE_EVENT0("GrContext::writeTexturePixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001196 ASSERT_OWNED_RESOURCE(texture);
1197
bsalomon@google.com0342a852012-08-20 19:22:38 +00001198 // TODO: use scratch texture to perform conversion
1199 if (kUnpremul_PixelOpsFlag & flags) {
1200 return;
1201 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001202 if (!(kDontFlush_PixelOpsFlag & flags)) {
1203 this->flush();
1204 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001205
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001206 fGpu->writeTexturePixels(texture, left, top, width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +00001207 config, buffer, rowBytes);
1208}
1209
bsalomon@google.com0342a852012-08-20 19:22:38 +00001210bool GrContext::readTexturePixels(GrTexture* texture,
1211 int left, int top, int width, int height,
1212 GrPixelConfig config, void* buffer, size_t rowBytes,
1213 uint32_t flags) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +00001214 SK_TRACE_EVENT0("GrContext::readTexturePixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001215 ASSERT_OWNED_RESOURCE(texture);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001216
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001217 // TODO: code read pixels for textures that aren't also rendertargets
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001218 GrRenderTarget* target = texture->asRenderTarget();
1219 if (NULL != target) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00001220 return this->readRenderTargetPixels(target,
1221 left, top, width, height,
1222 config, buffer, rowBytes,
1223 flags);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001224 } else {
1225 return false;
1226 }
1227}
1228
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001229#include "SkConfig8888.h"
1230
1231namespace {
1232/**
1233 * Converts a GrPixelConfig to a SkCanvas::Config8888. Only byte-per-channel
1234 * formats are representable as Config8888 and so the function returns false
1235 * if the GrPixelConfig has no equivalent Config8888.
1236 */
1237bool grconfig_to_config8888(GrPixelConfig config,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001238 bool unpremul,
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001239 SkCanvas::Config8888* config8888) {
1240 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00001241 case kRGBA_8888_GrPixelConfig:
1242 if (unpremul) {
1243 *config8888 = SkCanvas::kRGBA_Unpremul_Config8888;
1244 } else {
1245 *config8888 = SkCanvas::kRGBA_Premul_Config8888;
1246 }
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001247 return true;
bsalomon@google.com0342a852012-08-20 19:22:38 +00001248 case kBGRA_8888_GrPixelConfig:
1249 if (unpremul) {
1250 *config8888 = SkCanvas::kBGRA_Unpremul_Config8888;
1251 } else {
1252 *config8888 = SkCanvas::kBGRA_Premul_Config8888;
1253 }
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001254 return true;
1255 default:
1256 return false;
1257 }
1258}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001259
1260// It returns a configuration with where the byte position of the R & B components are swapped in
1261// relation to the input config. This should only be called with the result of
1262// grconfig_to_config8888 as it will fail for other configs.
1263SkCanvas::Config8888 swap_config8888_red_and_blue(SkCanvas::Config8888 config8888) {
1264 switch (config8888) {
1265 case SkCanvas::kBGRA_Premul_Config8888:
1266 return SkCanvas::kRGBA_Premul_Config8888;
1267 case SkCanvas::kBGRA_Unpremul_Config8888:
1268 return SkCanvas::kRGBA_Unpremul_Config8888;
1269 case SkCanvas::kRGBA_Premul_Config8888:
1270 return SkCanvas::kBGRA_Premul_Config8888;
1271 case SkCanvas::kRGBA_Unpremul_Config8888:
1272 return SkCanvas::kBGRA_Unpremul_Config8888;
1273 default:
1274 GrCrash("Unexpected input");
1275 return SkCanvas::kBGRA_Unpremul_Config8888;;
1276 }
1277}
bsalomon@google.coma91e9232012-02-23 15:39:54 +00001278}
1279
bsalomon@google.com0342a852012-08-20 19:22:38 +00001280bool GrContext::readRenderTargetPixels(GrRenderTarget* target,
1281 int left, int top, int width, int height,
1282 GrPixelConfig config, void* buffer, size_t rowBytes,
1283 uint32_t flags) {
tomhudson@google.com278cbb42011-06-30 19:37:01 +00001284 SK_TRACE_EVENT0("GrContext::readRenderTargetPixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001285 ASSERT_OWNED_RESOURCE(target);
1286
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001287 if (NULL == target) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001288 target = fDrawState->getRenderTarget();
bsalomon@google.comc4364992011-11-07 15:54:49 +00001289 if (NULL == target) {
1290 return false;
1291 }
1292 }
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001293
bsalomon@google.com6f379512011-11-16 20:36:03 +00001294 if (!(kDontFlush_PixelOpsFlag & flags)) {
1295 this->flush();
1296 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001297
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001298 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001299
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001300 // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll
1301 // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read.
1302 bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001303 width, height, config,
1304 rowBytes);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001305 bool swapRAndB = fGpu->preferredReadPixelsConfig(config) == GrPixelConfigSwapRAndB(config);
1306
bsalomon@google.com0342a852012-08-20 19:22:38 +00001307 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001308
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001309 // flipY will get set to false when it is handled below using a scratch. However, in that case
1310 // we still want to do the read upside down.
1311 bool readUpsideDown = flipY;
1312
1313 if (unpremul && kRGBA_8888_GrPixelConfig != config && kBGRA_8888_GrPixelConfig != config) {
1314 // The unpremul flag is only allowed for these two configs.
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001315 return false;
1316 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001317
1318 GrPixelConfig readConfig;
1319 if (swapRAndB) {
1320 readConfig = GrPixelConfigSwapRAndB(config);
1321 GrAssert(kUnknown_GrPixelConfig != config);
1322 } else {
1323 readConfig = config;
1324 }
1325
1326 // If the src is a texture and we would have to do conversions after read pixels, we instead
1327 // do the conversions by drawing the src to a scratch texture. If we handle any of the
1328 // conversions in the draw we set the corresponding bool to false so that we don't reapply it
1329 // on the read back pixels.
1330 GrTexture* src = target->asTexture();
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001331 GrAutoScratchTexture ast;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001332 if (NULL != src && (swapRAndB || unpremul || flipY)) {
1333 // Make the scratch a render target because we don't have a robust readTexturePixels as of
1334 // yet. It calls this function.
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001335 GrTextureDesc desc;
1336 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1337 desc.fWidth = width;
1338 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001339 desc.fConfig = readConfig;
bsalomon@google.comc4ff22a2011-11-10 21:56:21 +00001340
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001341 // When a full readback is faster than a partial we could always make the scratch exactly
1342 // match the passed rect. However, if we see many different size rectangles we will trash
1343 // our texture cache and pay the cost of creating and destroying many textures. So, we only
1344 // request an exact match when the caller is reading an entire RT.
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001345 ScratchTexMatch match = kApprox_ScratchTexMatch;
1346 if (0 == left &&
1347 0 == top &&
1348 target->width() == width &&
1349 target->height() == height &&
1350 fGpu->fullReadPixelsIsFasterThanPartial()) {
1351 match = kExact_ScratchTexMatch;
1352 }
1353 ast.set(this, desc, match);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001354 GrTexture* texture = ast.texture();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001355 if (texture) {
1356 SkAutoTUnref<GrCustomStage> stage;
1357 if (unpremul) {
1358 stage.reset(this->createPMToUPMEffect(src, swapRAndB));
1359 }
1360 // If we failed to create a PM->UPM effect and have no other conversions to perform then
1361 // there is no longer any point to using the scratch.
1362 if (NULL != stage || flipY || swapRAndB) {
1363 if (NULL == stage) {
1364 stage.reset(GrConfigConversionEffect::Create(src, swapRAndB));
1365 GrAssert(NULL != stage);
1366 } else {
1367 unpremul = false; // we will handle the UPM conversion in the draw
1368 }
1369 swapRAndB = false; // we will handle the swap in the draw.
bsalomon@google.comc4364992011-11-07 15:54:49 +00001370
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001371 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
1372 GrDrawState* drawState = fGpu->drawState();
1373 drawState->setRenderTarget(texture->asRenderTarget());
1374 GrMatrix matrix;
1375 if (flipY) {
1376 matrix.setTranslate(SK_Scalar1 * left,
1377 SK_Scalar1 * (top + height));
1378 matrix.set(GrMatrix::kMScaleY, -GR_Scalar1);
1379 flipY = false; // the y flip will be handled in the draw
1380 } else {
1381 matrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top);
1382 }
1383 matrix.postIDiv(src->width(), src->height());
1384 drawState->sampler(0)->reset(matrix);
1385 drawState->sampler(0)->setCustomStage(stage);
1386 GrRect rect = GrRect::MakeWH(GrIntToScalar(width), GrIntToScalar(height));
1387 fGpu->drawSimpleRect(rect, NULL);
1388 // we want to read back from the scratch's origin
1389 left = 0;
1390 top = 0;
1391 target = texture->asRenderTarget();
1392 }
bsalomon@google.com0342a852012-08-20 19:22:38 +00001393 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001394 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001395 if (!fGpu->readPixels(target,
1396 left, top, width, height,
1397 readConfig, buffer, rowBytes, readUpsideDown)) {
1398 return false;
1399 }
1400 // Perform any conversions we weren't able to perfom using a scratch texture.
1401 if (unpremul || swapRAndB || flipY) {
1402 SkCanvas::Config8888 srcC8888;
1403 SkCanvas::Config8888 dstC8888;
1404 bool c8888IsValid = grconfig_to_config8888(config, false, &srcC8888);
1405 grconfig_to_config8888(config, unpremul, &dstC8888);
1406 if (swapRAndB) {
1407 GrAssert(c8888IsValid); // we should only do r/b swap on 8888 configs
1408 srcC8888 = swap_config8888_red_and_blue(srcC8888);
1409 }
1410 if (flipY) {
1411 size_t tightRB = width * GrBytesPerPixel(config);
1412 if (0 == rowBytes) {
1413 rowBytes = tightRB;
1414 }
1415 SkAutoSTMalloc<256, uint8_t> tempRow(tightRB);
1416 intptr_t top = reinterpret_cast<intptr_t>(buffer);
1417 intptr_t bot = top + (height - 1) * rowBytes;
1418 while (top < bot) {
1419 uint32_t* t = reinterpret_cast<uint32_t*>(top);
1420 uint32_t* b = reinterpret_cast<uint32_t*>(bot);
1421 uint32_t* temp = reinterpret_cast<uint32_t*>(tempRow.get());
1422 memcpy(temp, t, tightRB);
1423 if (c8888IsValid) {
1424 SkConvertConfig8888Pixels(t, tightRB, dstC8888,
1425 b, tightRB, srcC8888,
1426 width, 1);
1427 SkConvertConfig8888Pixels(b, tightRB, dstC8888,
1428 temp, tightRB, srcC8888,
1429 width, 1);
1430 } else {
1431 memcpy(t, b, tightRB);
1432 memcpy(b, temp, tightRB);
1433 }
1434 top += rowBytes;
1435 bot -= rowBytes;
1436 }
1437 // The above loop does nothing on the middle row when height is odd.
1438 if (top == bot && c8888IsValid && dstC8888 != srcC8888) {
1439 uint32_t* mid = reinterpret_cast<uint32_t*>(top);
1440 SkConvertConfig8888Pixels(mid, tightRB, dstC8888, mid, tightRB, srcC8888, width, 1);
1441 }
1442 } else {
1443 // if we aren't flipping Y then we have no reason to be here other than doing
1444 // conversions for 8888 (r/b swap or upm).
1445 GrAssert(c8888IsValid);
1446 uint32_t* b32 = reinterpret_cast<uint32_t*>(buffer);
1447 SkConvertConfig8888Pixels(b32, rowBytes, dstC8888,
1448 b32, rowBytes, srcC8888,
1449 width, height);
1450 }
1451 }
1452 return true;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001453}
1454
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001455void GrContext::resolveRenderTarget(GrRenderTarget* target) {
1456 GrAssert(target);
1457 ASSERT_OWNED_RESOURCE(target);
1458 // In the future we may track whether there are any pending draws to this
1459 // target. We don't today so we always perform a flush. We don't promise
1460 // this to our clients, though.
1461 this->flush();
1462 fGpu->resolveRenderTarget(target);
1463}
1464
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001465void GrContext::copyTexture(GrTexture* src, GrRenderTarget* dst) {
1466 if (NULL == src || NULL == dst) {
1467 return;
1468 }
1469 ASSERT_OWNED_RESOURCE(src);
1470
twiz@google.com1ac87ff2012-04-27 19:39:33 +00001471 // Writes pending to the source texture are not tracked, so a flush
1472 // is required to ensure that the copy captures the most recent contents
1473 // of the source texture. See similar behaviour in
1474 // GrContext::resolveRenderTarget.
1475 this->flush();
1476
bsalomon@google.com873ea0c2012-03-30 15:55:32 +00001477 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001478 GrDrawState* drawState = fGpu->drawState();
1479 drawState->setRenderTarget(dst);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001480 GrMatrix sampleM;
1481 sampleM.setIDiv(src->width(), src->height());
bsalomon@google.com1e266f82011-12-12 16:11:33 +00001482 drawState->sampler(0)->reset(sampleM);
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001483 drawState->createTextureEffect(0, src);
bsalomon@google.com5db3b6c2012-01-12 20:38:57 +00001484 SkRect rect = SkRect::MakeXYWH(0, 0,
1485 SK_Scalar1 * src->width(),
1486 SK_Scalar1 * src->height());
bsalomon@google.come3d32162012-07-20 13:37:06 +00001487 fGpu->drawSimpleRect(rect, NULL);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001488}
1489
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001490void GrContext::writeRenderTargetPixels(GrRenderTarget* target,
bsalomon@google.com0342a852012-08-20 19:22:38 +00001491 int left, int top, int width, int height,
1492 GrPixelConfig config,
1493 const void* buffer,
1494 size_t rowBytes,
1495 uint32_t flags) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001496 SK_TRACE_EVENT0("GrContext::writeRenderTargetPixels");
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001497 ASSERT_OWNED_RESOURCE(target);
bsalomon@google.com6f379512011-11-16 20:36:03 +00001498
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001499 if (NULL == target) {
bsalomon@google.com873ea0c2012-03-30 15:55:32 +00001500 target = fDrawState->getRenderTarget();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001501 if (NULL == target) {
1502 return;
1503 }
1504 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001505
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001506 // TODO: when underlying api has a direct way to do this we should use it (e.g. glDrawPixels on
1507 // desktop GL).
1508
1509 // We will always call some form of writeTexturePixels and we will pass our flags on to it.
1510 // Thus, we don't perform a flush here since that call will do it (if the kNoFlush flag isn't
1511 // set.)
bsalomon@google.com27847de2011-02-22 20:59:41 +00001512
bsalomon@google.com0342a852012-08-20 19:22:38 +00001513 // If the RT is also a texture and we don't have to premultiply then take the texture path.
1514 // We expect to be at least as fast or faster since it doesn't use an intermediate texture as
1515 // we do below.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001516
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001517#if !GR_MAC_BUILD
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001518 // At least some drivers on the Mac get confused when glTexImage2D is called on a texture
1519 // attached to an FBO. The FBO still sees the old image. TODO: determine what OS versions and/or
1520 // HW is affected.
bsalomon@google.com0342a852012-08-20 19:22:38 +00001521 if (NULL != target->asTexture() && !(kUnpremul_PixelOpsFlag & flags)) {
1522 this->writeTexturePixels(target->asTexture(),
1523 left, top, width, height,
1524 config, buffer, rowBytes, flags);
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001525 return;
1526 }
1527#endif
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001528 SkAutoTUnref<GrCustomStage> stage;
1529 bool swapRAndB = (fGpu->preferredReadPixelsConfig(config) == GrPixelConfigSwapRAndB(config));
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001530
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001531 GrPixelConfig textureConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001532 if (swapRAndB) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001533 textureConfig = GrPixelConfigSwapRAndB(config);
1534 } else {
1535 textureConfig = config;
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001536 }
1537
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001538 GrTextureDesc desc;
1539 desc.fWidth = width;
1540 desc.fHeight = height;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001541 desc.fConfig = textureConfig;
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001542 GrAutoScratchTexture ast(this, desc);
1543 GrTexture* texture = ast.texture();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001544 if (NULL == texture) {
1545 return;
1546 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001547 // allocate a tmp buffer and sw convert the pixels to premul
1548 SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0);
1549
1550 if (kUnpremul_PixelOpsFlag & flags) {
1551 if (kRGBA_8888_GrPixelConfig != config && kBGRA_8888_GrPixelConfig != config) {
1552 return;
1553 }
1554 stage.reset(this->createUPMToPMEffect(texture, swapRAndB));
1555 if (NULL == stage) {
1556 SkCanvas::Config8888 srcConfig8888, dstConfig8888;
1557 GR_DEBUGCODE(bool success = )
1558 grconfig_to_config8888(config, true, &srcConfig8888);
1559 GrAssert(success);
1560 GR_DEBUGCODE(success = )
1561 grconfig_to_config8888(config, false, &dstConfig8888);
1562 GrAssert(success);
1563 const uint32_t* src = reinterpret_cast<const uint32_t*>(buffer);
1564 tmpPixels.reset(width * height);
1565 SkConvertConfig8888Pixels(tmpPixels.get(), 4 * width, dstConfig8888,
1566 src, rowBytes, srcConfig8888,
1567 width, height);
1568 buffer = tmpPixels.get();
1569 rowBytes = 4 * width;
1570 }
1571 }
1572 if (NULL == stage) {
1573 stage.reset(GrConfigConversionEffect::Create(texture, swapRAndB));
1574 GrAssert(NULL != stage);
1575 }
1576
1577 this->writeTexturePixels(texture,
1578 0, 0, width, height,
1579 textureConfig, buffer, rowBytes,
1580 flags & ~kUnpremul_PixelOpsFlag);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001581
bsalomon@google.com873ea0c2012-03-30 15:55:32 +00001582 GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001583 GrDrawState* drawState = fGpu->drawState();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001584
1585 GrMatrix matrix;
1586 matrix.setTranslate(GrIntToScalar(left), GrIntToScalar(top));
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001587 drawState->setViewMatrix(matrix);
1588 drawState->setRenderTarget(target);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001589
bsalomon@google.com5c638652011-07-18 19:31:59 +00001590 matrix.setIDiv(texture->width(), texture->height());
bsalomon@google.comb8670992012-07-25 21:27:09 +00001591 drawState->sampler(0)->reset(matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001592 drawState->sampler(0)->setCustomStage(stage);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001593
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001594 fGpu->drawSimpleRect(GrRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)), NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001595}
1596////////////////////////////////////////////////////////////////////////////////
1597
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001598void GrContext::setPaint(const GrPaint& paint) {
tomhudson@google.comcb325ce2012-07-11 14:41:19 +00001599 GrAssert(fDrawState->stagesDisabled());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001600
1601 for (int i = 0; i < GrPaint::kMaxTextures; ++i) {
1602 int s = i + GrPaint::kFirstTextureStage;
tomhudson@google.comf13f5882012-06-25 17:27:28 +00001603 if (paint.isTextureStageEnabled(i)) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001604 *fDrawState->sampler(s) = paint.getTextureSampler(i);
bsalomon@google.comf864ec42011-12-12 21:57:03 +00001605 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001606 }
1607
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001608 fDrawState->setFirstCoverageStage(GrPaint::kFirstMaskStage);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001609
1610 for (int i = 0; i < GrPaint::kMaxMasks; ++i) {
1611 int s = i + GrPaint::kFirstMaskStage;
tomhudson@google.comf13f5882012-06-25 17:27:28 +00001612 if (paint.isMaskStageEnabled(i)) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001613 *fDrawState->sampler(s) = paint.getMaskSampler(i);
bsalomon@google.comf864ec42011-12-12 21:57:03 +00001614 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001615 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001616
bsalomon@google.com26936d02012-03-19 13:06:19 +00001617 // disable all stages not accessible via the paint
1618 for (int s = GrPaint::kTotalStages; s < GrDrawState::kNumStages; ++s) {
tomhudson@google.com676e6602012-07-10 17:21:48 +00001619 fDrawState->disableStage(s);
bsalomon@google.com26936d02012-03-19 13:06:19 +00001620 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001621
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001622 fDrawState->setColor(paint.fColor);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001623
1624 if (paint.fDither) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001625 fDrawState->enableState(GrDrawState::kDither_StateBit);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001626 } else {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001627 fDrawState->disableState(GrDrawState::kDither_StateBit);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001628 }
1629 if (paint.fAntiAlias) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001630 fDrawState->enableState(GrDrawState::kHWAntialias_StateBit);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001631 } else {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001632 fDrawState->disableState(GrDrawState::kHWAntialias_StateBit);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001633 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +00001634 if (paint.fColorMatrixEnabled) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001635 fDrawState->enableState(GrDrawState::kColorMatrix_StateBit);
1636 fDrawState->setColorMatrix(paint.fColorMatrix);
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +00001637 } else {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001638 fDrawState->disableState(GrDrawState::kColorMatrix_StateBit);
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +00001639 }
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001640 fDrawState->setBlendFunc(paint.fSrcBlendCoeff, paint.fDstBlendCoeff);
1641 fDrawState->setColorFilter(paint.fColorFilterColor, paint.fColorFilterXfermode);
1642 fDrawState->setCoverage(paint.fCoverage);
reed@google.com4b2d3f32012-05-15 18:05:50 +00001643#if GR_DEBUG_PARTIAL_COVERAGE_CHECK
bsalomon@google.come3d32162012-07-20 13:37:06 +00001644 if ((paint.hasMask() || 0xff != paint.fCoverage) &&
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001645 !fGpu->canApplyCoverage()) {
bsalomon@google.comd46e2422011-09-23 17:40:07 +00001646 GrPrintf("Partial pixel coverage will be incorrectly blended.\n");
1647 }
bsalomon@google.com95cd7bd2012-03-28 15:35:05 +00001648#endif
bsalomon@google.com27847de2011-02-22 20:59:41 +00001649}
1650
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001651GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint, BufferedDraw buffered) {
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001652 if (kNo_BufferedDraw == buffered && kYes_BufferedDraw == fLastDrawWasBuffered) {
bsalomon@google.comfb4ce6f2012-03-14 13:27:54 +00001653 this->flushDrawBuffer();
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001654 fLastDrawWasBuffered = kNo_BufferedDraw;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001655 }
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001656 if (NULL != paint) {
1657 this->setPaint(*paint);
1658 }
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001659 if (kYes_BufferedDraw == buffered) {
1660 fDrawBuffer->setClip(fGpu->getClip());
1661 fLastDrawWasBuffered = kYes_BufferedDraw;
1662 return fDrawBuffer;
1663 } else {
1664 GrAssert(kNo_BufferedDraw == buffered);
1665 return fGpu;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001666 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001667}
1668
robertphillips@google.com72176b22012-05-23 13:19:12 +00001669/*
1670 * This method finds a path renderer that can draw the specified path on
1671 * the provided target.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001672 * Due to its expense, the software path renderer has split out so it can
robertphillips@google.com72176b22012-05-23 13:19:12 +00001673 * can be individually allowed/disallowed via the "allowSW" boolean.
1674 */
bsalomon@google.com8d033a12012-04-27 15:52:53 +00001675GrPathRenderer* GrContext::getPathRenderer(const SkPath& path,
bsalomon@google.com289533a2011-10-27 12:34:25 +00001676 GrPathFill fill,
bsalomon@google.comc2099d22012-03-02 21:26:50 +00001677 const GrDrawTarget* target,
robertphillips@google.com72176b22012-05-23 13:19:12 +00001678 bool antiAlias,
1679 bool allowSW) {
bsalomon@google.com30085192011-08-19 15:42:31 +00001680 if (NULL == fPathRendererChain) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001681 fPathRendererChain =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001682 SkNEW_ARGS(GrPathRendererChain,
1683 (this, GrPathRendererChain::kNone_UsageFlag));
bsalomon@google.com30085192011-08-19 15:42:31 +00001684 }
robertphillips@google.com72176b22012-05-23 13:19:12 +00001685
1686 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path, fill,
1687 target,
1688 antiAlias);
1689
1690 if (NULL == pr && allowSW) {
1691 if (NULL == fSoftwarePathRenderer) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001692 fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this));
robertphillips@google.com72176b22012-05-23 13:19:12 +00001693 }
1694
1695 pr = fSoftwarePathRenderer;
1696 }
1697
1698 return pr;
bsalomon@google.com30085192011-08-19 15:42:31 +00001699}
1700
bsalomon@google.com27847de2011-02-22 20:59:41 +00001701////////////////////////////////////////////////////////////////////////////////
1702
bsalomon@google.com27847de2011-02-22 20:59:41 +00001703void GrContext::setRenderTarget(GrRenderTarget* target) {
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001704 ASSERT_OWNED_RESOURCE(target);
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001705 fDrawState->setRenderTarget(target);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001706}
1707
1708GrRenderTarget* GrContext::getRenderTarget() {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001709 return fDrawState->getRenderTarget();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001710}
1711
1712const GrRenderTarget* GrContext::getRenderTarget() const {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001713 return fDrawState->getRenderTarget();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001714}
1715
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001716bool GrContext::isConfigRenderable(GrPixelConfig config) const {
1717 return fGpu->isConfigRenderable(config);
1718}
1719
bsalomon@google.com27847de2011-02-22 20:59:41 +00001720const GrMatrix& GrContext::getMatrix() const {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001721 return fDrawState->getViewMatrix();
bsalomon@google.com27847de2011-02-22 20:59:41 +00001722}
1723
1724void GrContext::setMatrix(const GrMatrix& m) {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001725 fDrawState->setViewMatrix(m);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001726}
1727
1728void GrContext::concatMatrix(const GrMatrix& m) const {
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001729 fDrawState->preConcatViewMatrix(m);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001730}
1731
1732static inline intptr_t setOrClear(intptr_t bits, int shift, intptr_t pred) {
1733 intptr_t mask = 1 << shift;
1734 if (pred) {
1735 bits |= mask;
1736 } else {
1737 bits &= ~mask;
1738 }
1739 return bits;
1740}
1741
bsalomon@google.com583a1e32011-08-17 13:42:46 +00001742GrContext::GrContext(GrGpu* gpu) {
bsalomon@google.comc0af3172012-06-15 14:10:09 +00001743 ++THREAD_INSTANCE_COUNT;
1744
bsalomon@google.com27847de2011-02-22 20:59:41 +00001745 fGpu = gpu;
1746 fGpu->ref();
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001747 fGpu->setContext(this);
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001748
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001749 fDrawState = SkNEW(GrDrawState);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001750 fGpu->setDrawState(fDrawState);
1751
bsalomon@google.com30085192011-08-19 15:42:31 +00001752 fPathRendererChain = NULL;
robertphillips@google.com72176b22012-05-23 13:19:12 +00001753 fSoftwarePathRenderer = NULL;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001754
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001755 fTextureCache = SkNEW_ARGS(GrResourceCache,
1756 (MAX_TEXTURE_CACHE_COUNT,
1757 MAX_TEXTURE_CACHE_BYTES));
1758 fFontCache = SkNEW_ARGS(GrFontCache, (fGpu));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001759
bsalomon@google.com1d4edd32012-08-16 18:36:06 +00001760 fLastDrawWasBuffered = kNo_BufferedDraw;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001761
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001762 fDrawBuffer = NULL;
1763 fDrawBufferVBAllocPool = NULL;
1764 fDrawBufferIBAllocPool = NULL;
1765
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001766 fAARectRenderer = SkNEW(GrAARectRenderer);
bsalomon@google.com10e04bf2012-03-30 14:35:04 +00001767
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001768 fDidTestPMConversions = false;
1769
bsalomon@google.com8fe72472011-03-30 21:26:44 +00001770 this->setupDrawBuffer();
1771}
1772
1773void GrContext::setupDrawBuffer() {
1774
1775 GrAssert(NULL == fDrawBuffer);
1776 GrAssert(NULL == fDrawBufferVBAllocPool);
1777 GrAssert(NULL == fDrawBufferIBAllocPool);
1778
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001779 fDrawBufferVBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001780 SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false,
bsalomon@google.com27847de2011-02-22 20:59:41 +00001781 DRAW_BUFFER_VBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001782 DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS));
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001783 fDrawBufferIBAllocPool =
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001784 SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false,
bsalomon@google.comde6ac2d2011-02-25 21:50:42 +00001785 DRAW_BUFFER_IBPOOL_BUFFER_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001786 DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS));
bsalomon@google.com27847de2011-02-22 20:59:41 +00001787
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001788 fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu,
bsalomon@google.com471d4712011-08-23 15:45:25 +00001789 fDrawBufferVBAllocPool,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001790 fDrawBufferIBAllocPool));
bsalomon@google.com3c4d0322012-04-03 18:04:51 +00001791
bsalomon@google.com27847de2011-02-22 20:59:41 +00001792 fDrawBuffer->setQuadIndexBuffer(this->getQuadIndexBuffer());
bsalomon@google.com1015e032012-06-25 18:41:04 +00001793 if (fDrawBuffer) {
1794 fDrawBuffer->setAutoFlushTarget(fGpu);
1795 fDrawBuffer->setDrawState(fDrawState);
1796 }
bsalomon@google.com27847de2011-02-22 20:59:41 +00001797}
1798
bsalomon@google.com27847de2011-02-22 20:59:41 +00001799GrDrawTarget* GrContext::getTextTarget(const GrPaint& paint) {
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001800 return prepareToDraw(&paint, DEFAULT_BUFFERING);
bsalomon@google.com27847de2011-02-22 20:59:41 +00001801}
1802
1803const GrIndexBuffer* GrContext::getQuadIndexBuffer() const {
1804 return fGpu->getQuadIndexBuffer();
1805}
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +00001806
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001807namespace {
1808void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) {
1809 GrConfigConversionEffect::PMConversion pmToUPM;
1810 GrConfigConversionEffect::PMConversion upmToPM;
1811 GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM);
1812 *pmToUPMValue = pmToUPM;
1813 *upmToPMValue = upmToPM;
1814}
1815}
1816
1817GrCustomStage* GrContext::createPMToUPMEffect(GrTexture* texture, bool swapRAndB) {
1818 if (!fDidTestPMConversions) {
1819 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001820 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001821 }
1822 GrConfigConversionEffect::PMConversion pmToUPM =
1823 static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion);
1824 if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) {
1825 return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM);
1826 } else {
1827 return NULL;
1828 }
1829}
1830
1831GrCustomStage* GrContext::createUPMToPMEffect(GrTexture* texture, bool swapRAndB) {
1832 if (!fDidTestPMConversions) {
1833 test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion);
bsalomon@google.comd0f3f682012-08-28 13:08:14 +00001834 fDidTestPMConversions = true;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001835 }
1836 GrConfigConversionEffect::PMConversion upmToPM =
1837 static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion);
1838 if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) {
1839 return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM);
1840 } else {
1841 return NULL;
1842 }
1843}
1844
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001845GrTexture* GrContext::gaussianBlur(GrTexture* srcTexture,
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001846 bool canClobberSrc,
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001847 const SkRect& rect,
1848 float sigmaX, float sigmaY) {
senorblanco@chromium.orgceb44142012-03-05 20:53:36 +00001849 ASSERT_OWNED_RESOURCE(srcTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001850 GrRenderTarget* oldRenderTarget = this->getRenderTarget();
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001851 AutoMatrix avm(this, GrMatrix::I());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001852 SkIRect clearRect;
bsalomon@google.comb505a122012-05-31 18:40:36 +00001853 int scaleFactorX, radiusX;
1854 int scaleFactorY, radiusY;
1855 sigmaX = adjust_sigma(sigmaX, &scaleFactorX, &radiusX);
1856 sigmaY = adjust_sigma(sigmaY, &scaleFactorY, &radiusY);
bsalomon@google.combc4b6542011-11-19 13:56:11 +00001857
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001858 SkRect srcRect(rect);
1859 scale_rect(&srcRect, 1.0f / scaleFactorX, 1.0f / scaleFactorY);
1860 srcRect.roundOut();
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001861 scale_rect(&srcRect, static_cast<float>(scaleFactorX),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001862 static_cast<float>(scaleFactorY));
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +00001863
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001864 AutoClip acs(this, srcRect);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001865
bsalomon@google.com0342a852012-08-20 19:22:38 +00001866 GrAssert(kBGRA_8888_GrPixelConfig == srcTexture->config() ||
1867 kRGBA_8888_GrPixelConfig == srcTexture->config() ||
robertphillips@google.com99a5ac02012-04-10 19:26:38 +00001868 kAlpha_8_GrPixelConfig == srcTexture->config());
1869
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001870 GrTextureDesc desc;
1871 desc.fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit;
1872 desc.fWidth = SkScalarFloorToInt(srcRect.width());
1873 desc.fHeight = SkScalarFloorToInt(srcRect.height());
1874 desc.fConfig = srcTexture->config();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001875
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001876 GrAutoScratchTexture temp1, temp2;
1877 GrTexture* dstTexture = temp1.set(this, desc);
1878 GrTexture* tempTexture = canClobberSrc ? srcTexture : temp2.set(this, desc);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001879
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001880 GrPaint paint;
1881 paint.reset();
bsalomon@google.comb8670992012-07-25 21:27:09 +00001882 paint.textureSampler(0)->textureParams()->setBilerp(true);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001883
1884 for (int i = 1; i < scaleFactorX || i < scaleFactorY; i *= 2) {
1885 paint.textureSampler(0)->matrix()->setIDiv(srcTexture->width(),
1886 srcTexture->height());
1887 this->setRenderTarget(dstTexture->asRenderTarget());
1888 SkRect dstRect(srcRect);
1889 scale_rect(&dstRect, i < scaleFactorX ? 0.5f : 1.0f,
1890 i < scaleFactorY ? 0.5f : 1.0f);
tomhudson@google.comaa72eab2012-07-19 18:01:07 +00001891 paint.textureSampler(0)->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect,
1892 (srcTexture)))->unref();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001893 this->drawRectToRect(paint, dstRect, srcRect);
1894 srcRect = dstRect;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001895 srcTexture = dstTexture;
1896 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001897 }
1898
robertphillips@google.com7a396332012-05-10 15:11:27 +00001899 SkIRect srcIRect;
1900 srcRect.roundOut(&srcIRect);
1901
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001902 if (sigmaX > 0.0f) {
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001903 if (scaleFactorX > 1) {
bsalomon@google.comb505a122012-05-31 18:40:36 +00001904 // Clear out a radius to the right of the srcRect to prevent the
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001905 // X convolution from reading garbage.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001906 clearRect = SkIRect::MakeXYWH(srcIRect.fRight, srcIRect.fTop,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001907 radiusX, srcIRect.height());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001908 this->clear(&clearRect, 0x0);
1909 }
1910
1911 this->setRenderTarget(dstTexture->asRenderTarget());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001912 GrDrawTarget* target = this->prepareToDraw(NULL, DEFAULT_BUFFERING);
1913 convolve_gaussian(target, srcTexture, srcRect, sigmaX, radiusX,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001914 Gr1DKernelEffect::kX_Direction);
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001915 srcTexture = dstTexture;
1916 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001917 }
1918
1919 if (sigmaY > 0.0f) {
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001920 if (scaleFactorY > 1 || sigmaX > 0.0f) {
bsalomon@google.comb505a122012-05-31 18:40:36 +00001921 // Clear out a radius below the srcRect to prevent the Y
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001922 // convolution from reading garbage.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001923 clearRect = SkIRect::MakeXYWH(srcIRect.fLeft, srcIRect.fBottom,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001924 srcIRect.width(), radiusY);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001925 this->clear(&clearRect, 0x0);
1926 }
1927
1928 this->setRenderTarget(dstTexture->asRenderTarget());
bsalomon@google.com07ea2db2012-08-17 14:06:49 +00001929 GrDrawTarget* target = this->prepareToDraw(NULL, DEFAULT_BUFFERING);
1930 convolve_gaussian(target, srcTexture, srcRect, sigmaY, radiusY,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001931 Gr1DKernelEffect::kY_Direction);
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001932 srcTexture = dstTexture;
1933 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001934 }
1935
1936 if (scaleFactorX > 1 || scaleFactorY > 1) {
1937 // Clear one pixel to the right and below, to accommodate bilinear
1938 // upsampling.
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001939 clearRect = SkIRect::MakeXYWH(srcIRect.fLeft, srcIRect.fBottom,
robertphillips@google.com7a396332012-05-10 15:11:27 +00001940 srcIRect.width() + 1, 1);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001941 this->clear(&clearRect, 0x0);
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001942 clearRect = SkIRect::MakeXYWH(srcIRect.fRight, srcIRect.fTop,
robertphillips@google.com7a396332012-05-10 15:11:27 +00001943 1, srcIRect.height());
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001944 this->clear(&clearRect, 0x0);
1945 // FIXME: This should be mitchell, not bilinear.
bsalomon@google.comb8670992012-07-25 21:27:09 +00001946 paint.textureSampler(0)->textureParams()->setBilerp(true);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001947 paint.textureSampler(0)->matrix()->setIDiv(srcTexture->width(),
1948 srcTexture->height());
1949 this->setRenderTarget(dstTexture->asRenderTarget());
tomhudson@google.comaa72eab2012-07-19 18:01:07 +00001950 paint.textureSampler(0)->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect,
1951 (srcTexture)))->unref();
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001952 SkRect dstRect(srcRect);
robertphillips@google.com7a396332012-05-10 15:11:27 +00001953 scale_rect(&dstRect, (float) scaleFactorX, (float) scaleFactorY);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001954 this->drawRectToRect(paint, dstRect, srcRect);
1955 srcRect = dstRect;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001956 srcTexture = dstTexture;
1957 SkTSwap(dstTexture, tempTexture);
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +00001958 }
1959 this->setRenderTarget(oldRenderTarget);
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001960 if (srcTexture == temp1.texture()) {
1961 return temp1.detach();
1962 } else if (srcTexture == temp2.texture()) {
1963 return temp2.detach();
1964 } else {
1965 srcTexture->ref();
1966 return srcTexture;
1967 }
senorblanco@chromium.org05054f12012-03-02 21:05:45 +00001968}
bsalomon@google.com1e266f82011-12-12 16:11:33 +00001969
bsalomon@google.comc4364992011-11-07 15:54:49 +00001970///////////////////////////////////////////////////////////////////////////////
robertphillips@google.com59552022012-08-31 13:07:37 +00001971#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +00001972void GrContext::printCacheStats() const {
1973 fTextureCache->printStats();
1974}
1975#endif