blob: 411b2c5b8f85a4087fddcf8b2abef2c7be4ea87f [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +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.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#include "GrContext.h"
bsalomon@google.comf4a9c822012-03-16 14:02:46 +000012#include "GrDefaultTextContext.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000013#include "GrTextContext.h"
14
reed@google.comac10a2d2010-12-22 21:39:39 +000015#include "SkGpuDevice.h"
16#include "SkGrTexturePixelRef.h"
17
Scroggo97c88c22011-05-11 14:05:25 +000018#include "SkColorFilter.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000019#include "SkDrawProcs.h"
20#include "SkGlyphCache.h"
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +000021#include "SkImageFilter.h"
reed@google.comfe626382011-09-21 13:50:35 +000022#include "SkTLazy.h"
reed@google.comc9aa5872011-04-05 21:05:37 +000023#include "SkUtils.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000024
bsalomon@google.com06cd7322012-03-30 18:45:35 +000025#define CACHE_COMPATIBLE_DEVICE_TEXTURES 1
reed@google.comac10a2d2010-12-22 21:39:39 +000026
27#if 0
28 extern bool (*gShouldDrawProc)();
29 #define CHECK_SHOULD_DRAW(draw) \
30 do { \
31 if (gShouldDrawProc && !gShouldDrawProc()) return; \
32 this->prepareRenderTarget(draw); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000033 GrAssert(!fNeedClear) \
reed@google.comac10a2d2010-12-22 21:39:39 +000034 } while (0)
35#else
bsalomon@google.com06cd7322012-03-30 18:45:35 +000036 #define CHECK_SHOULD_DRAW(draw) this->prepareRenderTarget(draw); \
37 GrAssert(!fNeedClear)
reed@google.comac10a2d2010-12-22 21:39:39 +000038#endif
39
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000040// we use the same texture slot on GrPaint for bitmaps and shaders
41// (since drawBitmap, drawSprite, and drawDevice ignore skia's shader)
42enum {
43 kBitmapTextureIdx = 0,
44 kShaderTextureIdx = 0
45};
46
reed@google.comcde92112011-07-06 20:00:52 +000047
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000048#define MAX_BLUR_SIGMA 4.0f
49// FIXME: This value comes from from SkBlurMaskFilter.cpp.
50// Should probably be put in a common header someplace.
51#define MAX_BLUR_RADIUS SkIntToScalar(128)
52// This constant approximates the scaling done in the software path's
53// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
54// IMHO, it actually should be 1: we blur "less" than we should do
55// according to the CSS and canvas specs, simply because Safari does the same.
56// Firefox used to do the same too, until 4.0 where they fixed it. So at some
57// point we should probably get rid of these scaling constants and rebaseline
58// all the blur tests.
59#define BLUR_SIGMA_SCALE 0.6f
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000060// This constant represents the screen alignment criterion in texels for
61// requiring texture domain clamping to prevent color bleeding when drawing
62// a sub region of a larger source image.
63#define COLOR_BLEED_TOLERANCE SkFloatToScalar(0.001f)
bsalomon@google.com06cd7322012-03-30 18:45:35 +000064
65#define DO_DEFERRED_CLEAR \
66 do { \
67 if (fNeedClear) { \
bsalomon@google.com730ca3b2012-04-03 13:25:12 +000068 this->clear(0x0); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000069 fNeedClear = false; \
70 } \
71 } while (false) \
72
reed@google.comac10a2d2010-12-22 21:39:39 +000073///////////////////////////////////////////////////////////////////////////////
74
bsalomon@google.com84405e02012-03-05 19:57:21 +000075class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable {
76public:
77 SkAutoCachedTexture() { }
78 SkAutoCachedTexture(SkGpuDevice* device,
79 const SkBitmap& bitmap,
80 const GrSamplerState* sampler,
81 GrTexture** texture) {
82 GrAssert(texture);
83 *texture = this->set(device, bitmap, sampler);
reed@google.comac10a2d2010-12-22 21:39:39 +000084 }
reed@google.comac10a2d2010-12-22 21:39:39 +000085
bsalomon@google.com84405e02012-03-05 19:57:21 +000086 ~SkAutoCachedTexture() {
87 if (fTex.texture()) {
88 fDevice->unlockCachedTexture(fTex);
89 }
reed@google.comac10a2d2010-12-22 21:39:39 +000090 }
bsalomon@google.com84405e02012-03-05 19:57:21 +000091
92 GrTexture* set(SkGpuDevice* device,
93 const SkBitmap& bitmap,
94 const GrSamplerState* sampler) {
95 if (fTex.texture()) {
96 fDevice->unlockCachedTexture(fTex);
97 }
98 fDevice = device;
99 GrTexture* texture = (GrTexture*)bitmap.getTexture();
100 if (texture) {
101 // return the native texture
102 fTex.reset();
103 } else {
104 // look it up in our cache
105 fTex = device->lockCachedTexture(bitmap, sampler);
106 texture = fTex.texture();
107 }
108 return texture;
109 }
110
111private:
112 SkGpuDevice* fDevice;
113 GrContext::TextureCacheEntry fTex;
114};
reed@google.comac10a2d2010-12-22 21:39:39 +0000115
116///////////////////////////////////////////////////////////////////////////////
117
118bool gDoTraceDraw;
119
120struct GrSkDrawProcs : public SkDrawProcs {
121public:
122 GrContext* fContext;
123 GrTextContext* fTextContext;
124 GrFontScaler* fFontScaler; // cached in the skia glyphcache
125};
126
127///////////////////////////////////////////////////////////////////////////////
128
reed@google.comaf951c92011-06-16 19:10:39 +0000129static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
130 switch (config) {
131 case kAlpha_8_GrPixelConfig:
132 *isOpaque = false;
133 return SkBitmap::kA8_Config;
134 case kRGB_565_GrPixelConfig:
135 *isOpaque = true;
136 return SkBitmap::kRGB_565_Config;
137 case kRGBA_4444_GrPixelConfig:
138 *isOpaque = false;
139 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000140 case kSkia8888_PM_GrPixelConfig:
141 // we don't currently have a way of knowing whether
142 // a 8888 is opaque based on the config.
143 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000144 return SkBitmap::kARGB_8888_Config;
145 default:
146 *isOpaque = false;
147 return SkBitmap::kNo_Config;
148 }
149}
reed@google.comac10a2d2010-12-22 21:39:39 +0000150
reed@google.comaf951c92011-06-16 19:10:39 +0000151static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000152 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000153
154 bool isOpaque;
155 SkBitmap bitmap;
156 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
157 renderTarget->width(), renderTarget->height());
158 bitmap.setIsOpaque(isOpaque);
159 return bitmap;
160}
161
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000162SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
163: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
164 this->initFromRenderTarget(context, texture->asRenderTarget());
165}
166
reed@google.comaf951c92011-06-16 19:10:39 +0000167SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
168: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000169 this->initFromRenderTarget(context, renderTarget);
170}
171
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000172void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000173 GrRenderTarget* renderTarget) {
reed@google.comaf951c92011-06-16 19:10:39 +0000174 fNeedPrepareRenderTarget = false;
175 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000176
reed@google.comaf951c92011-06-16 19:10:39 +0000177 fContext = context;
178 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000179
reed@google.comaf951c92011-06-16 19:10:39 +0000180 fTexture = NULL;
181 fRenderTarget = NULL;
182 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000183
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000184 GrAssert(NULL != renderTarget);
185 fRenderTarget = renderTarget;
186 fRenderTarget->ref();
187 // if this RT is also a texture, hold a ref on it
188 fTexture = fRenderTarget->asTexture();
189 SkSafeRef(fTexture);
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000190
191 // Create a pixel ref for the underlying SkBitmap. We prefer a texture pixel
192 // ref to a render target pixel reft. The pixel ref may get ref'ed outside
193 // the device via accessBitmap. This external ref may outlive the device.
194 // Since textures own their render targets (but not vice-versa) we
195 // are ensuring that both objects will live as long as the pixel ref.
196 SkPixelRef* pr;
197 if (fTexture) {
198 pr = new SkGrTexturePixelRef(fTexture);
199 } else {
200 pr = new SkGrRenderTargetPixelRef(fRenderTarget);
201 }
reed@google.comaf951c92011-06-16 19:10:39 +0000202 this->setPixelRef(pr, 0)->unref();
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000203
204 fTextContext = NULL;
reed@google.comaf951c92011-06-16 19:10:39 +0000205}
206
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000207SkGpuDevice::SkGpuDevice(GrContext* context,
208 SkBitmap::Config config,
209 int width,
210 int height)
211 : SkDevice(config, width, height, false /*isOpaque*/) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000212 fNeedPrepareRenderTarget = false;
213 fDrawProcs = NULL;
214
reed@google.com7b201d22011-01-11 18:59:23 +0000215 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000216 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000217
reed@google.comac10a2d2010-12-22 21:39:39 +0000218 fTexture = NULL;
219 fRenderTarget = NULL;
220 fNeedClear = false;
221
reed@google.comaf951c92011-06-16 19:10:39 +0000222 if (config != SkBitmap::kRGB_565_Config) {
223 config = SkBitmap::kARGB_8888_Config;
224 }
225 SkBitmap bm;
226 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000227
reed@google.comaf951c92011-06-16 19:10:39 +0000228 const GrTextureDesc desc = {
229 kRenderTarget_GrTextureFlagBit,
reed@google.comaf951c92011-06-16 19:10:39 +0000230 width,
231 height,
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000232 SkGr::Bitmap2PixelConfig(bm),
bsalomon@google.comb9014f42012-03-30 14:22:41 +0000233 0 // samples
reed@google.comaf951c92011-06-16 19:10:39 +0000234 };
reed@google.comac10a2d2010-12-22 21:39:39 +0000235
reed@google.comaf951c92011-06-16 19:10:39 +0000236 fTexture = fContext->createUncachedTexture(desc, NULL, 0);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000237
reed@google.comaf951c92011-06-16 19:10:39 +0000238 if (NULL != fTexture) {
239 fRenderTarget = fTexture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000240 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000241
reed@google.comaf951c92011-06-16 19:10:39 +0000242 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000243
reed@google.comaf951c92011-06-16 19:10:39 +0000244 // wrap the bitmap with a pixelref to expose our texture
245 SkGrTexturePixelRef* pr = new SkGrTexturePixelRef(fTexture);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000246 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000247 } else {
248 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
249 width, height);
250 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000251 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000252
253 fTextContext = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +0000254}
255
256SkGpuDevice::~SkGpuDevice() {
257 if (fDrawProcs) {
258 delete fDrawProcs;
259 }
260
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000261 SkSafeUnref(fTexture);
262 SkSafeUnref(fRenderTarget);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000263 if (fCache.texture()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000264 GrAssert(NULL != fTexture);
265 GrAssert(fRenderTarget == fTexture->asRenderTarget());
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000266 fContext->unlockTexture(fCache);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000267 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000268 fContext->unref();
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000269
270 if (NULL != fTextContext) {
271 fTextContext->unref();
272 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000273}
274
reed@google.comac10a2d2010-12-22 21:39:39 +0000275///////////////////////////////////////////////////////////////////////////////
276
277void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000278 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000279 fContext->setRenderTarget(fRenderTarget);
280 fContext->flush(true);
281 fNeedPrepareRenderTarget = true;
282}
283
284///////////////////////////////////////////////////////////////////////////////
285
bsalomon@google.comc4364992011-11-07 15:54:49 +0000286namespace {
287GrPixelConfig config8888_to_gr_config(SkCanvas::Config8888 config8888) {
288 switch (config8888) {
289 case SkCanvas::kNative_Premul_Config8888:
290 return kSkia8888_PM_GrPixelConfig;
291 case SkCanvas::kNative_Unpremul_Config8888:
292 return kSkia8888_UPM_GrPixelConfig;
293 case SkCanvas::kBGRA_Premul_Config8888:
294 return kBGRA_8888_PM_GrPixelConfig;
295 case SkCanvas::kBGRA_Unpremul_Config8888:
296 return kBGRA_8888_UPM_GrPixelConfig;
297 case SkCanvas::kRGBA_Premul_Config8888:
298 return kRGBA_8888_PM_GrPixelConfig;
299 case SkCanvas::kRGBA_Unpremul_Config8888:
300 return kRGBA_8888_UPM_GrPixelConfig;
301 default:
302 GrCrash("Unexpected Config8888.");
303 return kSkia8888_PM_GrPixelConfig;
304 }
305}
306}
307
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000308bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
309 int x, int y,
310 SkCanvas::Config8888 config8888) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000311 DO_DEFERRED_CLEAR;
bsalomon@google.com910267d2011-11-02 20:06:25 +0000312 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
313 SkASSERT(!bitmap.isNull());
314 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000315
bsalomon@google.com910267d2011-11-02 20:06:25 +0000316 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000317 GrPixelConfig config;
318 config = config8888_to_gr_config(config8888);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000319 return fContext->readRenderTargetPixels(fRenderTarget,
320 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000321 bitmap.width(),
322 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000323 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000324 bitmap.getPixels(),
325 bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000326}
327
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000328void SkGpuDevice::writePixels(const SkBitmap& bitmap, int x, int y,
329 SkCanvas::Config8888 config8888) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000330 SkAutoLockPixels alp(bitmap);
331 if (!bitmap.readyToDraw()) {
332 return;
333 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000334
335 GrPixelConfig config;
336 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
337 config = config8888_to_gr_config(config8888);
338 } else {
339 config= SkGr::BitmapConfig2PixelConfig(bitmap.config(),
340 bitmap.isOpaque());
341 }
342
bsalomon@google.com6f379512011-11-16 20:36:03 +0000343 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
344 config, bitmap.getPixels(), bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000345}
346
347///////////////////////////////////////////////////////////////////////////////
348
349static void convert_matrixclip(GrContext* context, const SkMatrix& matrix,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000350 const SkClipStack& clipStack,
reed@google.com6f8f2922011-03-04 22:27:10 +0000351 const SkRegion& clipRegion,
352 const SkIPoint& origin) {
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000353 context->setMatrix(matrix);
reed@google.comac10a2d2010-12-22 21:39:39 +0000354
355 SkGrClipIterator iter;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000356 iter.reset(clipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000357 const SkIRect& skBounds = clipRegion.getBounds();
358 GrRect bounds;
359 bounds.setLTRB(GrIntToScalar(skBounds.fLeft),
360 GrIntToScalar(skBounds.fTop),
361 GrIntToScalar(skBounds.fRight),
362 GrIntToScalar(skBounds.fBottom));
reed@google.com6f8f2922011-03-04 22:27:10 +0000363 GrClip grc(&iter, GrIntToScalar(-origin.x()), GrIntToScalar(-origin.y()),
364 &bounds);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000365 context->setClip(grc);
reed@google.comac10a2d2010-12-22 21:39:39 +0000366}
367
368// call this ever each draw call, to ensure that the context reflects our state,
369// and not the state from some other canvas/device
370void SkGpuDevice::prepareRenderTarget(const SkDraw& draw) {
371 if (fNeedPrepareRenderTarget ||
bsalomon@google.com5782d712011-01-21 21:03:59 +0000372 fContext->getRenderTarget() != fRenderTarget) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000373
374 fContext->setRenderTarget(fRenderTarget);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000375 SkASSERT(draw.fClipStack);
376 convert_matrixclip(fContext, *draw.fMatrix,
reed@google.com6f8f2922011-03-04 22:27:10 +0000377 *draw.fClipStack, *draw.fClip, this->getOrigin());
reed@google.comac10a2d2010-12-22 21:39:39 +0000378 fNeedPrepareRenderTarget = false;
379 }
380}
381
tomhudson@google.com8a0b0292011-09-13 14:41:06 +0000382void SkGpuDevice::setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
383 const SkClipStack& clipStack) {
384 this->INHERITED::setMatrixClip(matrix, clip, clipStack);
385 // We don't need to set them now because the context may not reflect this device.
bsalomon@google.coma7bf6e22011-04-11 19:20:46 +0000386 fNeedPrepareRenderTarget = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000387}
388
389void SkGpuDevice::gainFocus(SkCanvas* canvas, const SkMatrix& matrix,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000390 const SkRegion& clip, const SkClipStack& clipStack) {
391
reed@google.comac10a2d2010-12-22 21:39:39 +0000392 fContext->setRenderTarget(fRenderTarget);
393
bsalomon@google.comd302f142011-03-03 13:54:13 +0000394 this->INHERITED::gainFocus(canvas, matrix, clip, clipStack);
reed@google.comac10a2d2010-12-22 21:39:39 +0000395
reed@google.com6f8f2922011-03-04 22:27:10 +0000396 convert_matrixclip(fContext, matrix, clipStack, clip, this->getOrigin());
reed@google.comac10a2d2010-12-22 21:39:39 +0000397
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000398 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000399}
400
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000401SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000402 DO_DEFERRED_CLEAR;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000403 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000404}
405
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000406bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000407 if (NULL != fTexture) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000408 paint->setTexture(kBitmapTextureIdx, fTexture);
reed@google.comac10a2d2010-12-22 21:39:39 +0000409 return true;
410 }
411 return false;
412}
413
414///////////////////////////////////////////////////////////////////////////////
415
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000416SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
417SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
418SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
419SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
420SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
421 shader_type_mismatch);
422SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 4, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000423
bsalomon@google.com5782d712011-01-21 21:03:59 +0000424static const GrSamplerState::SampleMode sk_bmp_type_to_sample_mode[] = {
425 (GrSamplerState::SampleMode) -1, // kNone_BitmapType
426 GrSamplerState::kNormal_SampleMode, // kDefault_BitmapType
427 GrSamplerState::kRadial_SampleMode, // kRadial_BitmapType
428 GrSamplerState::kSweep_SampleMode, // kSweep_BitmapType
429 GrSamplerState::kRadial2_SampleMode, // kTwoPointRadial_BitmapType
430};
431
bsalomon@google.com84405e02012-03-05 19:57:21 +0000432namespace {
433
434// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
435// justAlpha indicates that skPaint's alpha should be used rather than the color
436// Callers may subsequently modify the GrPaint. Setting constantColor indicates
437// that the final paint will draw the same color at every pixel. This allows
438// an optimization where the the color filter can be applied to the skPaint's
439// color once while converting to GrPain and then ignored.
440inline bool skPaint2GrPaintNoShader(const SkPaint& skPaint,
441 bool justAlpha,
442 bool constantColor,
443 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000444
445 grPaint->fDither = skPaint.isDither();
446 grPaint->fAntiAlias = skPaint.isAntiAlias();
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000447 grPaint->fCoverage = 0xFF;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000448
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000449 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
450 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000451
452 SkXfermode* mode = skPaint.getXfermode();
453 if (mode) {
454 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000455 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000456#if 0
457 return false;
458#endif
459 }
460 }
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000461 grPaint->fSrcBlendCoeff = sk_blend_to_grblend(sm);
462 grPaint->fDstBlendCoeff = sk_blend_to_grblend(dm);
463
bsalomon@google.com5782d712011-01-21 21:03:59 +0000464 if (justAlpha) {
465 uint8_t alpha = skPaint.getAlpha();
466 grPaint->fColor = GrColorPackRGBA(alpha, alpha, alpha, alpha);
Scroggod757df22011-05-16 13:11:16 +0000467 // justAlpha is currently set to true only if there is a texture,
468 // so constantColor should not also be true.
469 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000470 } else {
471 grPaint->fColor = SkGr::SkColor2GrColor(skPaint.getColor());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000472 grPaint->setTexture(kShaderTextureIdx, NULL);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000473 }
Scroggo97c88c22011-05-11 14:05:25 +0000474 SkColorFilter* colorFilter = skPaint.getColorFilter();
475 SkColor color;
476 SkXfermode::Mode filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000477 SkScalar matrix[20];
Scroggo97c88c22011-05-11 14:05:25 +0000478 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000479 grPaint->fColorMatrixEnabled = false;
Scroggod757df22011-05-16 13:11:16 +0000480 if (!constantColor) {
481 grPaint->fColorFilterColor = SkGr::SkColor2GrColor(color);
482 grPaint->fColorFilterXfermode = filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000483 } else {
484 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
485 grPaint->fColor = SkGr::SkColor2GrColor(filtered);
senorblanco@chromium.orgb3c20fa2012-01-03 21:20:19 +0000486 grPaint->resetColorFilter();
Scroggod757df22011-05-16 13:11:16 +0000487 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000488 } else if (colorFilter != NULL && colorFilter->asColorMatrix(matrix)) {
489 grPaint->fColorMatrixEnabled = true;
490 memcpy(grPaint->fColorMatrix, matrix, sizeof(matrix));
491 grPaint->fColorFilterXfermode = SkXfermode::kDst_Mode;
492 } else {
493 grPaint->resetColorFilter();
Scroggo97c88c22011-05-11 14:05:25 +0000494 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000495 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000496}
497
bsalomon@google.com84405e02012-03-05 19:57:21 +0000498// This function is similar to skPaint2GrPaintNoShader but also converts
499// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
500// be used is set on grPaint and returned in param act. constantColor has the
501// same meaning as in skPaint2GrPaintNoShader.
502inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
503 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000504 bool constantColor,
505 SkGpuDevice::SkAutoCachedTexture* act,
506 GrPaint* grPaint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000507
bsalomon@google.com5782d712011-01-21 21:03:59 +0000508 SkASSERT(NULL != act);
reed@google.comac10a2d2010-12-22 21:39:39 +0000509
bsalomon@google.com5782d712011-01-21 21:03:59 +0000510 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000511 if (NULL == shader) {
bsalomon@google.com84405e02012-03-05 19:57:21 +0000512 return skPaint2GrPaintNoShader(skPaint,
513 false,
514 constantColor,
515 grPaint);
516 } else if (!skPaint2GrPaintNoShader(skPaint, true, false, grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000517 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000518 }
519
reed@google.comac10a2d2010-12-22 21:39:39 +0000520 SkBitmap bitmap;
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000521 SkMatrix* matrix = grPaint->textureSampler(kShaderTextureIdx)->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000522 SkShader::TileMode tileModes[2];
523 SkScalar twoPointParams[3];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000524 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000525 tileModes, twoPointParams);
526
bsalomon@google.com5782d712011-01-21 21:03:59 +0000527 GrSamplerState::SampleMode sampleMode = sk_bmp_type_to_sample_mode[bmptype];
528 if (-1 == sampleMode) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000529 SkShader::GradientInfo info;
530 SkColor color;
531
532 info.fColors = &color;
533 info.fColorOffsets = NULL;
534 info.fColorCount = 1;
535 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
536 SkPaint copy(skPaint);
537 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000538 // modulate the paint alpha by the shader's solid color alpha
539 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
540 copy.setColor(SkColorSetA(color, newA));
bsalomon@google.com84405e02012-03-05 19:57:21 +0000541 return skPaint2GrPaintNoShader(copy,
542 false,
543 constantColor,
544 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000545 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000546 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000547 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000548 GrSamplerState* sampler = grPaint->textureSampler(kShaderTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000549 sampler->setSampleMode(sampleMode);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000550 if (skPaint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000551 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000552 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000553 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000554 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000555 sampler->setWrapX(sk_tile_mode_to_grwrap(tileModes[0]));
556 sampler->setWrapY(sk_tile_mode_to_grwrap(tileModes[1]));
reed@google.comac10a2d2010-12-22 21:39:39 +0000557 if (GrSamplerState::kRadial2_SampleMode == sampleMode) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000558 sampler->setRadial2Params(twoPointParams[0],
559 twoPointParams[1],
560 twoPointParams[2] < 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000561 }
562
bsalomon@google.com84405e02012-03-05 19:57:21 +0000563 GrTexture* texture = act->set(dev, bitmap, sampler);
reed@google.comac10a2d2010-12-22 21:39:39 +0000564 if (NULL == texture) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000565 SkDebugf("Couldn't convert bitmap to texture.\n");
566 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000567 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000568 grPaint->setTexture(kShaderTextureIdx, texture);
reed@google.comac10a2d2010-12-22 21:39:39 +0000569
570 // since our texture coords will be in local space, we wack the texture
571 // matrix to map them back into 0...1 before we load it
572 SkMatrix localM;
573 if (shader->getLocalMatrix(&localM)) {
574 SkMatrix inverse;
575 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000576 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000577 }
578 }
579 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000580 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
581 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000582 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000583 } else if (SkShader::kRadial_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000584 GrScalar s = SkFloatToScalar(1.f / bitmap.width());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000585 matrix->postScale(s, s);
reed@google.comac10a2d2010-12-22 21:39:39 +0000586 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000587
588 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000589}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000590}
reed@google.comac10a2d2010-12-22 21:39:39 +0000591
592///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com5782d712011-01-21 21:03:59 +0000593
bsalomon@google.com398109c2011-04-14 18:40:27 +0000594void SkGpuDevice::clear(SkColor color) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000595 fContext->setRenderTarget(fRenderTarget);
bsalomon@google.com31a58402011-04-27 21:00:02 +0000596 fContext->clear(NULL, color);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000597}
598
reed@google.comac10a2d2010-12-22 21:39:39 +0000599void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
600 CHECK_SHOULD_DRAW(draw);
601
bsalomon@google.com5782d712011-01-21 21:03:59 +0000602 GrPaint grPaint;
603 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000604 if (!skPaint2GrPaintShader(this,
605 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000606 true,
607 &act,
608 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000609 return;
610 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000611
612 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000613}
614
615// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000616static const GrPrimitiveType gPointMode2PrimtiveType[] = {
617 kPoints_PrimitiveType,
618 kLines_PrimitiveType,
619 kLineStrip_PrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000620};
621
622void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000623 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000624 CHECK_SHOULD_DRAW(draw);
625
626 SkScalar width = paint.getStrokeWidth();
627 if (width < 0) {
628 return;
629 }
630
631 // we only handle hairlines here, else we let the SkDraw call our drawPath()
632 if (width > 0) {
633 draw.drawPoints(mode, count, pts, paint, true);
634 return;
635 }
636
bsalomon@google.com5782d712011-01-21 21:03:59 +0000637 GrPaint grPaint;
638 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000639 if (!skPaint2GrPaintShader(this,
640 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000641 true,
642 &act,
643 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000644 return;
645 }
646
bsalomon@google.com5782d712011-01-21 21:03:59 +0000647 fContext->drawVertices(grPaint,
648 gPointMode2PrimtiveType[mode],
649 count,
650 (GrPoint*)pts,
651 NULL,
652 NULL,
653 NULL,
654 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000655}
656
reed@google.comc9aa5872011-04-05 21:05:37 +0000657///////////////////////////////////////////////////////////////////////////////
658
reed@google.comac10a2d2010-12-22 21:39:39 +0000659void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
660 const SkPaint& paint) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000661 CHECK_SHOULD_DRAW(draw);
662
bungeman@google.com79bd8772011-07-18 15:34:08 +0000663 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000664 SkScalar width = paint.getStrokeWidth();
665
666 /*
667 We have special code for hairline strokes, miter-strokes, and fills.
668 Anything else we just call our path code.
669 */
670 bool usePath = doStroke && width > 0 &&
671 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000672 // another two reasons we might need to call drawPath...
673 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000674 usePath = true;
675 }
reed@google.com67db6642011-05-26 11:46:35 +0000676 // until we aa rotated rects...
677 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
678 usePath = true;
679 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000680 // small miter limit means right angles show bevel...
681 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
682 paint.getStrokeMiter() < SK_ScalarSqrt2)
683 {
684 usePath = true;
685 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000686 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000687 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
688 usePath = true;
689 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000690
691 if (usePath) {
692 SkPath path;
693 path.addRect(rect);
694 this->drawPath(draw, path, paint, NULL, true);
695 return;
696 }
697
698 GrPaint grPaint;
699 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000700 if (!skPaint2GrPaintShader(this,
701 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000702 true,
703 &act,
704 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000705 return;
706 }
reed@google.com20efde72011-05-09 17:00:02 +0000707 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000708}
709
reed@google.com69302852011-02-16 18:08:07 +0000710#include "SkMaskFilter.h"
711#include "SkBounder.h"
712
bsalomon@google.com85003222012-03-28 14:44:37 +0000713///////////////////////////////////////////////////////////////////////////////
714
715// helpers for applying mask filters
716namespace {
717
718GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000719 switch (fillType) {
720 case SkPath::kWinding_FillType:
721 return kWinding_PathFill;
722 case SkPath::kEvenOdd_FillType:
723 return kEvenOdd_PathFill;
724 case SkPath::kInverseWinding_FillType:
725 return kInverseWinding_PathFill;
726 case SkPath::kInverseEvenOdd_FillType:
727 return kInverseEvenOdd_PathFill;
728 default:
729 SkDebugf("Unsupported path fill type\n");
730 return kHairLine_PathFill;
731 }
732}
733
bsalomon@google.com85003222012-03-28 14:44:37 +0000734// We prefer to blur small rect with small radius via CPU.
735#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
736#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
737inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
738 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
739 rect.height() <= MIN_GPU_BLUR_SIZE &&
740 radius <= MIN_GPU_BLUR_RADIUS) {
741 return true;
742 }
743 return false;
744}
745
746bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
747 SkMaskFilter* filter, const SkMatrix& matrix,
748 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000749 GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000750#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000751 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000752#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000753 SkMaskFilter::BlurInfo info;
754 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000755 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000756 return false;
757 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000758 SkScalar radius = info.fIgnoreTransform ? info.fRadius
759 : matrix.mapRadius(info.fRadius);
760 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000761 if (radius <= 0) {
762 return false;
763 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000764
765 SkRect srcRect = path.getBounds();
766 if (shouldDrawBlurWithCPU(srcRect, radius)) {
767 return false;
768 }
769
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000770 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000771 float sigma3 = sigma * 3.0f;
772
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000773 SkRect clipRect;
774 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000775
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000776 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000777 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
778 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000779 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000780 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000781 SkIRect finalIRect;
782 finalRect.roundOut(&finalIRect);
783 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000784 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000785 }
786 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000787 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000788 }
789 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000790 srcRect.offset(offset);
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000791 GrTextureDesc desc = {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000792 kRenderTarget_GrTextureFlagBit,
bungeman@google.comf8aa18c2012-03-19 21:04:52 +0000793 SkScalarCeilToInt(srcRect.width()),
794 SkScalarCeilToInt(srcRect.height()),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000795 // We actually only need A8, but it often isn't supported as a
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000796 // render target so default to RGBA_8888
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000797 kRGBA_8888_PM_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +0000798 0 // samples
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000799 };
800
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000801 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
802 desc.fConfig = kAlpha_8_GrPixelConfig;
803 }
804
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000805 GrAutoScratchTexture pathEntry(context, desc);
806 GrTexture* pathTexture = pathEntry.texture();
807 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000808 return false;
809 }
810 GrRenderTarget* oldRenderTarget = context->getRenderTarget();
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000811 // Once this code moves into GrContext, this should be changed to use
812 // an AutoClipRestore.
813 GrClip oldClip = context->getClip();
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000814 context->setRenderTarget(pathTexture->asRenderTarget());
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000815 context->setClip(srcRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000816 context->clear(NULL, 0);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000817 GrPaint tempPaint;
818 tempPaint.reset();
819
820 GrAutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000821 tempPaint.fAntiAlias = grp->fAntiAlias;
822 if (tempPaint.fAntiAlias) {
823 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
824 // blend coeff of zero requires dual source blending support in order
825 // to properly blend partially covered pixels. This means the AA
826 // code path may not be taken. So we use a dst blend coeff of ISA. We
827 // could special case AA draws to a dst surface with known alpha=0 to
828 // use a zero dst coeff when dual source blending isn't available.
829 tempPaint.fSrcBlendCoeff = kOne_BlendCoeff;
830 tempPaint.fDstBlendCoeff = kISC_BlendCoeff;
831 }
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000832 // Draw hard shadow to pathTexture with path topleft at origin 0,0.
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000833 context->drawPath(tempPaint, path, pathFillType, &offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000834
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000835 GrAutoScratchTexture temp1, temp2;
836 // If we're doing a normal blur, we can clobber the pathTexture in the
837 // gaussianBlur. Otherwise, we need to save it for later compositing.
838 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +0000839 GrTexture* blurTexture = context->gaussianBlur(pathTexture,
840 &temp1,
841 isNormalBlur ? NULL : &temp2,
842 srcRect, sigma, sigma);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000843
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000844 if (!isNormalBlur) {
845 GrPaint paint;
846 paint.reset();
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000847 paint.textureSampler(0)->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000848 paint.textureSampler(0)->matrix()->setIDiv(pathTexture->width(),
849 pathTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000850 // Blend pathTexture over blurTexture.
851 context->setRenderTarget(blurTexture->asRenderTarget());
852 paint.setTexture(0, pathTexture);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000853 if (SkMaskFilter::kInner_BlurType == blurType) {
854 // inner: dst = dst * src
855 paint.fSrcBlendCoeff = kDC_BlendCoeff;
856 paint.fDstBlendCoeff = kZero_BlendCoeff;
857 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
858 // solid: dst = src + dst - src * dst
859 // = (1 - dst) * src + 1 * dst
860 paint.fSrcBlendCoeff = kIDC_BlendCoeff;
861 paint.fDstBlendCoeff = kOne_BlendCoeff;
862 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
863 // outer: dst = dst * (1 - src)
864 // = 0 * src + (1 - src) * dst
865 paint.fSrcBlendCoeff = kZero_BlendCoeff;
866 paint.fDstBlendCoeff = kISC_BlendCoeff;
867 }
868 context->drawRect(paint, srcRect);
869 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000870 context->setRenderTarget(oldRenderTarget);
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000871 context->setClip(oldClip);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000872
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000873 if (grp->hasTextureOrMask()) {
874 GrMatrix inverse;
875 if (!matrix.invert(&inverse)) {
876 return false;
877 }
878 grp->preConcatActiveSamplerMatrices(inverse);
879 }
880
881 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
882 // we assume the last mask index is available for use
883 GrAssert(NULL == grp->getMask(MASK_IDX));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000884 grp->setMask(MASK_IDX, blurTexture);
bsalomon@google.com97912912011-12-06 16:30:36 +0000885 grp->maskSampler(MASK_IDX)->reset();
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000886
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000887 grp->maskSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
888 -finalRect.fTop);
889 grp->maskSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
890 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000891 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000892 return true;
893}
894
bsalomon@google.com85003222012-03-28 14:44:37 +0000895bool drawWithMaskFilter(GrContext* context, const SkPath& path,
896 SkMaskFilter* filter, const SkMatrix& matrix,
897 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000898 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000899 SkMask srcM, dstM;
900
901 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +0000902 SkMask::kComputeBoundsAndRenderImage_CreateMode,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000903 style)) {
reed@google.com69302852011-02-16 18:08:07 +0000904 return false;
905 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000906 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000907
908 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
909 return false;
910 }
911 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000912 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000913
914 if (clip.quickReject(dstM.fBounds)) {
915 return false;
916 }
917 if (bounder && !bounder->doIRect(dstM.fBounds)) {
918 return false;
919 }
920
921 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
922 // the current clip (and identity matrix) and grpaint settings
923
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000924 // used to compute inverse view, if necessary
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000925 GrMatrix ivm = matrix;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000926
reed@google.com0c219b62011-02-16 21:31:18 +0000927 GrAutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +0000928
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000929 const GrTextureDesc desc = {
930 kNone_GrTextureFlags,
reed@google.com69302852011-02-16 18:08:07 +0000931 dstM.fBounds.width(),
932 dstM.fBounds.height(),
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000933 kAlpha_8_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +0000934 0, // samples
reed@google.com69302852011-02-16 18:08:07 +0000935 };
936
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000937 GrAutoScratchTexture ast(context, desc);
938 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000939
reed@google.com69302852011-02-16 18:08:07 +0000940 if (NULL == texture) {
941 return false;
942 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000943 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000944 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +0000945
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000946 if (grp->hasTextureOrMask() && ivm.invert(&ivm)) {
947 grp->preConcatActiveSamplerMatrices(ivm);
948 }
949
950 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
951 // we assume the last mask index is available for use
952 GrAssert(NULL == grp->getMask(MASK_IDX));
953 grp->setMask(MASK_IDX, texture);
bsalomon@google.com97912912011-12-06 16:30:36 +0000954 grp->maskSampler(MASK_IDX)->reset();
reed@google.com69302852011-02-16 18:08:07 +0000955
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000956 GrRect d;
957 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +0000958 GrIntToScalar(dstM.fBounds.fTop),
959 GrIntToScalar(dstM.fBounds.fRight),
960 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000961
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000962 GrMatrix* m = grp->maskSampler(MASK_IDX)->matrix();
963 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
964 -dstM.fBounds.fTop*SK_Scalar1);
965 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000966 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +0000967 return true;
968}
reed@google.com69302852011-02-16 18:08:07 +0000969
bsalomon@google.com85003222012-03-28 14:44:37 +0000970}
971
972///////////////////////////////////////////////////////////////////////////////
973
reed@google.com0c219b62011-02-16 21:31:18 +0000974void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000975 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000976 bool pathIsMutable) {
977 CHECK_SHOULD_DRAW(draw);
978
reed@google.comfe626382011-09-21 13:50:35 +0000979 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000980
bsalomon@google.com5782d712011-01-21 21:03:59 +0000981 GrPaint grPaint;
982 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000983 if (!skPaint2GrPaintShader(this,
984 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000985 true,
986 &act,
987 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000988 return;
989 }
990
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +0000991 // can we cheat, and threat a thin stroke as a hairline w/ coverage
992 // if we can, we draw lots faster (raster device does this same test)
993 SkScalar hairlineCoverage;
994 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
995 doFill = false;
996 grPaint.fCoverage = SkScalarRoundToInt(hairlineCoverage *
997 grPaint.fCoverage);
998 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000999
reed@google.comfe626382011-09-21 13:50:35 +00001000 // If we have a prematrix, apply it to the path, optimizing for the case
1001 // where the original path can in fact be modified in place (even though
1002 // its parameter type is const).
1003 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1004 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001005
1006 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001007 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001008
reed@google.come3445642011-02-16 23:20:39 +00001009 if (!pathIsMutable) {
1010 result = &tmpPath;
1011 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001012 }
reed@google.come3445642011-02-16 23:20:39 +00001013 // should I push prePathMatrix on our MV stack temporarily, instead
1014 // of applying it here? See SkDraw.cpp
1015 pathPtr->transform(*prePathMatrix, result);
1016 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001017 }
reed@google.com0c219b62011-02-16 21:31:18 +00001018 // at this point we're done with prePathMatrix
1019 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001020
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001021 if (paint.getPathEffect() ||
1022 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001023 // it is safe to use tmpPath here, even if we already used it for the
1024 // prepathmatrix, since getFillPath can take the same object for its
1025 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001026 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001027 pathPtr = &tmpPath;
1028 }
1029
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001030 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001031 // avoid possibly allocating a new path in transform if we can
1032 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1033
1034 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001035 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001036 GrPathFill pathFillType = doFill ?
1037 skToGrFillType(devPathPtr->getFillType()) : kHairLine_PathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001038 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001039 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001040 &grPaint, pathFillType)) {
1041 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
1042 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001043 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001044 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001045 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001046 }
reed@google.com69302852011-02-16 18:08:07 +00001047 return;
1048 }
reed@google.com69302852011-02-16 18:08:07 +00001049
bsalomon@google.comffca4002011-02-22 20:34:01 +00001050 GrPathFill fill = kHairLine_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001051
reed@google.com0c219b62011-02-16 21:31:18 +00001052 if (doFill) {
1053 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001054 case SkPath::kWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001055 fill = kWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001056 break;
1057 case SkPath::kEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001058 fill = kEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001059 break;
1060 case SkPath::kInverseWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001061 fill = kInverseWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001062 break;
1063 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001064 fill = kInverseEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001065 break;
1066 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001067 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001068 return;
1069 }
1070 }
1071
reed@google.com07f3ee12011-05-16 17:21:57 +00001072 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001073}
1074
bsalomon@google.comfb309512011-11-30 14:13:48 +00001075namespace {
1076
1077inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1078 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1079 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1080 return tilesX * tilesY;
1081}
1082
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001083inline int determine_tile_size(const SkBitmap& bitmap,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001084 const SkIRect* srcRectPtr,
1085 int maxTextureSize) {
1086 static const int kSmallTileSize = 1 << 10;
1087 if (maxTextureSize <= kSmallTileSize) {
1088 return maxTextureSize;
1089 }
1090
1091 size_t maxTexTotalTileSize;
1092 size_t smallTotalTileSize;
1093
1094 if (NULL == srcRectPtr) {
1095 int w = bitmap.width();
1096 int h = bitmap.height();
1097 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1098 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1099 } else {
1100 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1101 srcRectPtr->fTop,
1102 srcRectPtr->fRight,
1103 srcRectPtr->fBottom,
1104 maxTextureSize);
1105 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1106 srcRectPtr->fTop,
1107 srcRectPtr->fRight,
1108 srcRectPtr->fBottom,
1109 kSmallTileSize);
1110 }
1111 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1112 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1113
1114 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1115 return kSmallTileSize;
1116 } else {
1117 return maxTextureSize;
1118 }
1119}
1120}
1121
1122bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
1123 const GrSamplerState& sampler,
1124 const SkIRect* srcRectPtr,
1125 int* tileSize) const {
1126 SkASSERT(NULL != tileSize);
1127
1128 // if bitmap is explictly texture backed then just use the texture
1129 if (NULL != bitmap.getTexture()) {
1130 return false;
1131 }
1132 // if it's larger than the max texture size, then we have no choice but
1133 // tiling
1134 const int maxTextureSize = fContext->getMaxTextureSize();
1135 if (bitmap.width() > maxTextureSize ||
1136 bitmap.height() > maxTextureSize) {
1137 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1138 return true;
1139 }
1140 // if we are going to have to draw the whole thing, then don't tile
1141 if (NULL == srcRectPtr) {
1142 return false;
1143 }
1144 // if the entire texture is already in our cache then no reason to tile it
1145 if (this->isBitmapInTextureCache(bitmap, sampler)) {
1146 return false;
1147 }
1148
1149 // At this point we know we could do the draw by uploading the entire bitmap
1150 // as a texture. However, if the texture would be large compared to the
1151 // cache size and we don't require most of it for this draw then tile to
1152 // reduce the amount of upload and cache spill.
1153
1154 // assumption here is that sw bitmap size is a good proxy for its size as
1155 // a texture
1156 size_t bmpSize = bitmap.getSize();
1157 size_t cacheSize;
1158 fContext->getTextureCacheLimits(NULL, &cacheSize);
1159 if (bmpSize < cacheSize / 2) {
1160 return false;
1161 }
1162
1163 SkFixed fracUsed =
1164 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1165 (srcRectPtr->height() << 16) / bitmap.height());
1166 if (fracUsed <= SK_FixedHalf) {
1167 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1168 return true;
1169 } else {
1170 return false;
1171 }
1172}
1173
reed@google.comac10a2d2010-12-22 21:39:39 +00001174void SkGpuDevice::drawBitmap(const SkDraw& draw,
1175 const SkBitmap& bitmap,
1176 const SkIRect* srcRectPtr,
1177 const SkMatrix& m,
1178 const SkPaint& paint) {
1179 CHECK_SHOULD_DRAW(draw);
1180
1181 SkIRect srcRect;
1182 if (NULL == srcRectPtr) {
1183 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1184 } else {
1185 srcRect = *srcRectPtr;
1186 }
1187
junov@google.comd935cfb2011-06-27 20:48:23 +00001188 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001189 // Convert the bitmap to a shader so that the rect can be drawn
1190 // through drawRect, which supports mask filters.
1191 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001192 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001193 if (srcRectPtr) {
1194 if (!bitmap.extractSubset(&tmp, srcRect)) {
1195 return; // extraction failed
1196 }
1197 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001198 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001199 }
1200 SkPaint paintWithTexture(paint);
1201 paintWithTexture.setShader(SkShader::CreateBitmapShader( *bitmapPtr,
1202 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001203 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001204 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001205
junov@google.com1d329782011-07-28 20:10:09 +00001206 // Transform 'm' needs to be concatenated to the draw matrix,
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001207 // rather than transforming the primitive directly, so that 'm' will
junov@google.com1d329782011-07-28 20:10:09 +00001208 // also affect the behavior of the mask filter.
1209 SkMatrix drawMatrix;
1210 drawMatrix.setConcat(*draw.fMatrix, m);
1211 SkDraw transformedDraw(draw);
1212 transformedDraw.fMatrix = &drawMatrix;
1213
1214 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1215
junov@google.comd935cfb2011-06-27 20:48:23 +00001216 return;
1217 }
1218
bsalomon@google.com5782d712011-01-21 21:03:59 +00001219 GrPaint grPaint;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001220 if (!skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001221 return;
1222 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001223 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001224 if (paint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001225 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001226 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001227 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001228 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001229
bsalomon@google.comfb309512011-11-30 14:13:48 +00001230 int tileSize;
1231 if (!this->shouldTileBitmap(bitmap, *sampler, srcRectPtr, &tileSize)) {
1232 // take the simple case
bsalomon@google.com5782d712011-01-21 21:03:59 +00001233 this->internalDrawBitmap(draw, bitmap, srcRect, m, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001234 return;
1235 }
1236
1237 // undo the translate done by SkCanvas
1238 int DX = SkMax32(0, srcRect.fLeft);
1239 int DY = SkMax32(0, srcRect.fTop);
1240 // compute clip bounds in local coordinates
1241 SkIRect clipRect;
1242 {
1243 SkRect r;
1244 r.set(draw.fClip->getBounds());
1245 SkMatrix matrix, inverse;
1246 matrix.setConcat(*draw.fMatrix, m);
1247 if (!matrix.invert(&inverse)) {
1248 return;
1249 }
1250 inverse.mapRect(&r);
1251 r.roundOut(&clipRect);
1252 // apply the canvas' translate to our local clip
1253 clipRect.offset(DX, DY);
1254 }
1255
bsalomon@google.comfb309512011-11-30 14:13:48 +00001256 int nx = bitmap.width() / tileSize;
1257 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001258 for (int x = 0; x <= nx; x++) {
1259 for (int y = 0; y <= ny; y++) {
1260 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001261 tileR.set(x * tileSize, y * tileSize,
1262 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001263 if (!SkIRect::Intersects(tileR, clipRect)) {
1264 continue;
1265 }
1266
1267 SkIRect srcR = tileR;
1268 if (!srcR.intersect(srcRect)) {
1269 continue;
1270 }
1271
1272 SkBitmap tmpB;
1273 if (bitmap.extractSubset(&tmpB, tileR)) {
1274 // now offset it to make it "local" to our tmp bitmap
1275 srcR.offset(-tileR.fLeft, -tileR.fTop);
1276
1277 SkMatrix tmpM(m);
1278 {
1279 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1280 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1281 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1282 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001283 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001284 }
1285 }
1286 }
1287}
1288
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001289namespace {
1290
1291bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1292 // detect pixel disalignment
1293 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1294 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
1295 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
1296 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1297 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1298 COLOR_BLEED_TOLERANCE &&
1299 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1300 COLOR_BLEED_TOLERANCE) {
1301 return true;
1302 }
1303 return false;
1304}
1305
1306bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1307 const SkMatrix& m) {
1308 // Only gets called if hasAlignedSamples returned false.
1309 // So we can assume that sampling is axis aligned but not texel aligned.
1310 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
1311 SkRect innerSrcRect(srcRect), innerTransformedRect,
1312 outerTransformedRect(transformedRect);
1313 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1314 m.mapRect(&innerTransformedRect, innerSrcRect);
1315
1316 // The gap between outerTransformedRect and innerTransformedRect
1317 // represents the projection of the source border area, which is
1318 // problematic for color bleeding. We must check whether any
1319 // destination pixels sample the border area.
1320 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1321 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1322 SkIRect outer, inner;
1323 outerTransformedRect.round(&outer);
1324 innerTransformedRect.round(&inner);
1325 // If the inner and outer rects round to the same result, it means the
1326 // border does not overlap any pixel centers. Yay!
1327 return inner != outer;
1328}
1329
1330} // unnamed namespace
1331
reed@google.comac10a2d2010-12-22 21:39:39 +00001332/*
1333 * This is called by drawBitmap(), which has to handle images that may be too
1334 * large to be represented by a single texture.
1335 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001336 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1337 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001338 */
1339void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1340 const SkBitmap& bitmap,
1341 const SkIRect& srcRect,
1342 const SkMatrix& m,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001343 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001344 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1345 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001346
reed@google.com9c49bc32011-07-07 13:42:37 +00001347 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001348 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001349 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001350 return;
1351 }
1352
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001353 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001354
1355 sampler->setWrapX(GrSamplerState::kClamp_WrapMode);
1356 sampler->setWrapY(GrSamplerState::kClamp_WrapMode);
1357 sampler->setSampleMode(GrSamplerState::kNormal_SampleMode);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001358 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001359
1360 GrTexture* texture;
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001361 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001362 if (NULL == texture) {
1363 return;
1364 }
1365
bsalomon@google.com452943d2011-10-31 17:37:14 +00001366 grPaint->setTexture(kBitmapTextureIdx, texture);
reed@google.com46799cd2011-02-22 20:56:26 +00001367
reed@google.com20efde72011-05-09 17:00:02 +00001368 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1369 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001370 GrRect paintRect;
bsalomon@google.com91832162012-03-08 19:53:02 +00001371 float wInv = 1.f / bitmap.width();
1372 float hInv = 1.f / bitmap.height();
1373 paintRect.setLTRB(SkFloatToScalar(srcRect.fLeft * wInv),
1374 SkFloatToScalar(srcRect.fTop * hInv),
1375 SkFloatToScalar(srcRect.fRight * wInv),
1376 SkFloatToScalar(srcRect.fBottom * hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001377
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001378 bool needsTextureDomain = false;
1379 if (GrSamplerState::kBilinear_Filter == sampler->getFilter())
1380 {
1381 // Need texture domain if drawing a sub rect.
1382 needsTextureDomain = srcRect.width() < bitmap.width() ||
1383 srcRect.height() < bitmap.height();
1384 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1385 // sampling is axis-aligned
1386 GrRect floatSrcRect, transformedRect;
1387 floatSrcRect.set(srcRect);
1388 SkMatrix srcToDeviceMatrix(m);
1389 srcToDeviceMatrix.postConcat(*draw.fMatrix);
1390 srcToDeviceMatrix.mapRect(&transformedRect, floatSrcRect);
1391
1392 if (hasAlignedSamples(floatSrcRect, transformedRect)) {
1393 // Samples are texel-aligned, so filtering is futile
1394 sampler->setFilter(GrSamplerState::kNearest_Filter);
1395 needsTextureDomain = false;
1396 } else {
1397 needsTextureDomain = needsTextureDomain &&
1398 mayColorBleed(floatSrcRect, transformedRect, m);
1399 }
1400 }
1401 }
1402
1403 GrRect textureDomain = GrRect::MakeEmpty();
1404
1405 if (needsTextureDomain) {
1406 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001407 GrScalar left, top, right, bottom;
1408 if (srcRect.width() > 1) {
1409 GrScalar border = GR_ScalarHalf / bitmap.width();
1410 left = paintRect.left() + border;
1411 right = paintRect.right() - border;
1412 } else {
1413 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1414 }
1415 if (srcRect.height() > 1) {
1416 GrScalar border = GR_ScalarHalf / bitmap.height();
1417 top = paintRect.top() + border;
1418 bottom = paintRect.bottom() - border;
1419 } else {
1420 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1421 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001422 textureDomain.setLTRB(left, top, right, bottom);
junov@google.com6acc9b32011-05-16 18:32:07 +00001423 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001424 sampler->setTextureDomain(textureDomain);
junov@google.com6acc9b32011-05-16 18:32:07 +00001425
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001426 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001427}
1428
reed@google.com8926b162012-03-23 15:36:36 +00001429static GrTexture* filter_texture(GrContext* context, GrTexture* texture,
1430 SkImageFilter* filter, const GrRect& rect) {
1431 GrAssert(filter);
1432
1433 SkSize blurSize;
1434 SkISize radius;
1435
1436 const GrTextureDesc desc = {
1437 kRenderTarget_GrTextureFlagBit,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001438 SkScalarCeilToInt(rect.width()),
1439 SkScalarCeilToInt(rect.height()),
reed@google.com8926b162012-03-23 15:36:36 +00001440 kRGBA_8888_PM_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +00001441 0 // samples
reed@google.com8926b162012-03-23 15:36:36 +00001442 };
1443
1444 if (filter->asABlur(&blurSize)) {
1445 GrAutoScratchTexture temp1, temp2;
1446 texture = context->gaussianBlur(texture, &temp1, &temp2, rect,
1447 blurSize.width(),
1448 blurSize.height());
1449 texture->ref();
1450 } else if (filter->asADilate(&radius)) {
1451 GrAutoScratchTexture temp1(context, desc), temp2(context, desc);
1452 texture = context->applyMorphology(texture, rect,
1453 temp1.texture(), temp2.texture(),
1454 GrSamplerState::kDilate_Filter,
1455 radius);
1456 texture->ref();
1457 } else if (filter->asAnErode(&radius)) {
1458 GrAutoScratchTexture temp1(context, desc), temp2(context, desc);
1459 texture = context->applyMorphology(texture, rect,
1460 temp1.texture(), temp2.texture(),
1461 GrSamplerState::kErode_Filter,
1462 radius);
1463 texture->ref();
1464 }
1465 return texture;
1466}
1467
reed@google.comac10a2d2010-12-22 21:39:39 +00001468void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1469 int left, int top, const SkPaint& paint) {
1470 CHECK_SHOULD_DRAW(draw);
1471
reed@google.com8926b162012-03-23 15:36:36 +00001472 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001473 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1474 return;
1475 }
1476
reed@google.com76dd2772012-01-05 21:15:07 +00001477 int w = bitmap.width();
1478 int h = bitmap.height();
1479
bsalomon@google.com5782d712011-01-21 21:03:59 +00001480 GrPaint grPaint;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001481 if(!skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001482 return;
1483 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001484
bsalomon@google.com5782d712011-01-21 21:03:59 +00001485 GrAutoMatrix avm(fContext, GrMatrix::I());
1486
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001487 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001488
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001489 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001490 sampler->reset();
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001491 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001492 grPaint.setTexture(kBitmapTextureIdx, texture);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001493
reed@google.com8926b162012-03-23 15:36:36 +00001494 SkImageFilter* filter = paint.getImageFilter();
1495 if (NULL != filter) {
1496 GrTexture* filteredTexture = filter_texture(fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001497 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001498 if (filteredTexture) {
1499 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1500 texture = filteredTexture;
1501 filteredTexture->unref();
1502 }
reed@google.com76dd2772012-01-05 21:15:07 +00001503 }
reed@google.com8926b162012-03-23 15:36:36 +00001504
bsalomon@google.com5782d712011-01-21 21:03:59 +00001505 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001506 GrRect::MakeXYWH(GrIntToScalar(left),
1507 GrIntToScalar(top),
1508 GrIntToScalar(w),
1509 GrIntToScalar(h)),
1510 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1511 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001512}
1513
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001514void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001515 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001516 // clear of the source device must occur before CHECK_SHOULD_DRAW
1517 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1518 if (dev->fNeedClear) {
1519 // TODO: could check here whether we really need to draw at all
1520 dev->clear(0x0);
1521 }
1522
reed@google.comac10a2d2010-12-22 21:39:39 +00001523 CHECK_SHOULD_DRAW(draw);
1524
bsalomon@google.com5782d712011-01-21 21:03:59 +00001525 GrPaint grPaint;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001526 if (!dev->bindDeviceAsTexture(&grPaint) ||
bsalomon@google.com84405e02012-03-05 19:57:21 +00001527 !skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001528 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001529 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001530
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001531 GrTexture* devTex = grPaint.getTexture(0);
1532 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001533
reed@google.com8926b162012-03-23 15:36:36 +00001534 SkImageFilter* filter = paint.getImageFilter();
1535 if (NULL != filter) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001536 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
1537 SkIntToScalar(devTex->height()));
reed@google.com8926b162012-03-23 15:36:36 +00001538 GrTexture* filteredTexture = filter_texture(fContext, devTex, filter,
1539 rect);
1540 if (filteredTexture) {
1541 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1542 devTex = filteredTexture;
1543 filteredTexture->unref();
1544 }
1545 }
1546
bsalomon@google.com5782d712011-01-21 21:03:59 +00001547 const SkBitmap& bm = dev->accessBitmap(false);
1548 int w = bm.width();
1549 int h = bm.height();
1550
1551 GrAutoMatrix avm(fContext, GrMatrix::I());
1552
bsalomon@google.com97912912011-12-06 16:30:36 +00001553 grPaint.textureSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com5782d712011-01-21 21:03:59 +00001554
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001555 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1556 GrIntToScalar(y),
1557 GrIntToScalar(w),
1558 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001559
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001560 // The device being drawn may not fill up its texture (saveLayer uses
1561 // the approximate ).
1562 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1563 GR_Scalar1 * h / devTex->height());
1564
1565 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001566}
1567
reed@google.com8926b162012-03-23 15:36:36 +00001568bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
reed@google.com76dd2772012-01-05 21:15:07 +00001569 SkSize size;
senorblanco@chromium.org05054f12012-03-02 21:05:45 +00001570 SkISize radius;
1571 if (!filter->asABlur(&size) && !filter->asADilate(&radius) && !filter->asAnErode(&radius)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001572 return false;
1573 }
reed@google.com8926b162012-03-23 15:36:36 +00001574 return true;
1575}
1576
1577bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1578 const SkMatrix& ctm,
1579 SkBitmap* result, SkIPoint* offset) {
1580 // want explicitly our impl, so guard against a subclass of us overriding it
1581 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001582 return false;
1583 }
reed@google.com8926b162012-03-23 15:36:36 +00001584
1585 SkAutoLockPixels alp(src, !src.getTexture());
1586 if (!src.getTexture() && !src.readyToDraw()) {
1587 return false;
1588 }
1589
1590 GrPaint paint;
1591 paint.reset();
1592
1593 GrSamplerState* sampler = paint.textureSampler(kBitmapTextureIdx);
1594
1595 GrTexture* texture;
1596 SkAutoCachedTexture act(this, src, sampler, &texture);
1597
1598 result->setConfig(src.config(), src.width(), src.height());
robertphillips@google.com8637a362012-04-10 18:32:35 +00001599 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
1600 SkIntToScalar(src.height()));
reed@google.com8926b162012-03-23 15:36:36 +00001601 GrTexture* resultTexture = filter_texture(fContext, texture, filter, rect);
1602 if (resultTexture) {
1603 result->setPixelRef(new SkGrTexturePixelRef(resultTexture))->unref();
1604 resultTexture->unref();
1605 }
reed@google.com76dd2772012-01-05 21:15:07 +00001606 return true;
1607}
1608
reed@google.comac10a2d2010-12-22 21:39:39 +00001609///////////////////////////////////////////////////////////////////////////////
1610
1611// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001612static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1613 kTriangles_PrimitiveType,
1614 kTriangleStrip_PrimitiveType,
1615 kTriangleFan_PrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001616};
1617
1618void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1619 int vertexCount, const SkPoint vertices[],
1620 const SkPoint texs[], const SkColor colors[],
1621 SkXfermode* xmode,
1622 const uint16_t indices[], int indexCount,
1623 const SkPaint& paint) {
1624 CHECK_SHOULD_DRAW(draw);
1625
bsalomon@google.com5782d712011-01-21 21:03:59 +00001626 GrPaint grPaint;
1627 SkAutoCachedTexture act;
1628 // we ignore the shader if texs is null.
1629 if (NULL == texs) {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001630 if (!skPaint2GrPaintNoShader(paint,
1631 false,
1632 NULL == colors,
1633 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001634 return;
1635 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001636 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001637 if (!skPaint2GrPaintShader(this,
1638 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001639 NULL == colors,
1640 &act,
1641 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001642 return;
1643 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001644 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001645
1646 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001647 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001648 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1649#if 0
1650 return
1651#endif
1652 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001653 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001654
bsalomon@google.com498776a2011-08-16 19:20:44 +00001655 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1656 if (NULL != colors) {
1657 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001658 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001659 for (int i = 0; i < vertexCount; ++i) {
1660 convertedColors[i] = SkGr::SkColor2GrColor(colors[i]);
1661 }
1662 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001663 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001664 fContext->drawVertices(grPaint,
1665 gVertexMode2PrimitiveType[vmode],
1666 vertexCount,
1667 (GrPoint*) vertices,
1668 (GrPoint*) texs,
1669 colors,
1670 indices,
1671 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001672}
1673
1674///////////////////////////////////////////////////////////////////////////////
1675
1676static void GlyphCacheAuxProc(void* data) {
1677 delete (GrFontScaler*)data;
1678}
1679
1680static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1681 void* auxData;
1682 GrFontScaler* scaler = NULL;
1683 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1684 scaler = (GrFontScaler*)auxData;
1685 }
1686 if (NULL == scaler) {
1687 scaler = new SkGrFontScaler(cache);
1688 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1689 }
1690 return scaler;
1691}
1692
1693static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1694 SkFixed fx, SkFixed fy,
1695 const SkGlyph& glyph) {
1696 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1697
bungeman@google.com15865a72012-01-11 16:28:04 +00001698 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001699
1700 if (NULL == procs->fFontScaler) {
1701 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1702 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001703
bungeman@google.com15865a72012-01-11 16:28:04 +00001704 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1705 glyph.getSubXFixed(),
1706 glyph.getSubYFixed()),
1707 SkFixedFloorToFixed(fx),
1708 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001709 procs->fFontScaler);
1710}
1711
bsalomon@google.com5782d712011-01-21 21:03:59 +00001712SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001713
1714 // deferred allocation
1715 if (NULL == fDrawProcs) {
1716 fDrawProcs = new GrSkDrawProcs;
1717 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1718 fDrawProcs->fContext = fContext;
1719 }
1720
1721 // init our (and GL's) state
1722 fDrawProcs->fTextContext = context;
1723 fDrawProcs->fFontScaler = NULL;
1724 return fDrawProcs;
1725}
1726
1727void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1728 size_t byteLength, SkScalar x, SkScalar y,
1729 const SkPaint& paint) {
1730 CHECK_SHOULD_DRAW(draw);
1731
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001732 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001733 // this guy will just call our drawPath()
1734 draw.drawText((const char*)text, byteLength, x, y, paint);
1735 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001736 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001737
1738 GrPaint grPaint;
1739 SkAutoCachedTexture act;
1740
bsalomon@google.com84405e02012-03-05 19:57:21 +00001741 if (!skPaint2GrPaintShader(this,
1742 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001743 true,
1744 &act,
1745 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001746 return;
1747 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001748 GrTextContext::AutoFinish txtCtxAF(this->getTextContext(), fContext,
1749 grPaint, draw.fExtMatrix);
1750 myDraw.fProcs = this->initDrawForText(txtCtxAF.getTextContext());
reed@google.comac10a2d2010-12-22 21:39:39 +00001751 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1752 }
1753}
1754
1755void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1756 size_t byteLength, const SkScalar pos[],
1757 SkScalar constY, int scalarsPerPos,
1758 const SkPaint& paint) {
1759 CHECK_SHOULD_DRAW(draw);
1760
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001761 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001762 // this guy will just call our drawPath()
1763 draw.drawPosText((const char*)text, byteLength, pos, constY,
1764 scalarsPerPos, paint);
1765 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001766 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001767
1768 GrPaint grPaint;
1769 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001770 if (!skPaint2GrPaintShader(this,
1771 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001772 true,
1773 &act,
1774 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001775 return;
1776 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001777 GrTextContext::AutoFinish txtCtxAF(this->getTextContext(), fContext,
1778 grPaint, draw.fExtMatrix);
1779 myDraw.fProcs = this->initDrawForText(txtCtxAF.getTextContext());
reed@google.comac10a2d2010-12-22 21:39:39 +00001780 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1781 scalarsPerPos, paint);
1782 }
1783}
1784
1785void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1786 size_t len, const SkPath& path,
1787 const SkMatrix* m, const SkPaint& paint) {
1788 CHECK_SHOULD_DRAW(draw);
1789
1790 SkASSERT(draw.fDevice == this);
1791 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1792}
1793
1794///////////////////////////////////////////////////////////////////////////////
1795
reed@google.comf67e4cf2011-03-15 20:56:58 +00001796bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1797 if (!paint.isLCDRenderText()) {
1798 // we're cool with the paint as is
1799 return false;
1800 }
1801
1802 if (paint.getShader() ||
1803 paint.getXfermode() || // unless its srcover
1804 paint.getMaskFilter() ||
1805 paint.getRasterizer() ||
1806 paint.getColorFilter() ||
1807 paint.getPathEffect() ||
1808 paint.isFakeBoldText() ||
1809 paint.getStyle() != SkPaint::kFill_Style) {
1810 // turn off lcd
1811 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1812 flags->fHinting = paint.getHinting();
1813 return true;
1814 }
1815 // we're cool with the paint as is
1816 return false;
1817}
1818
reed@google.com75d939b2011-12-07 15:07:23 +00001819void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001820 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001821 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001822}
1823
reed@google.comf67e4cf2011-03-15 20:56:58 +00001824///////////////////////////////////////////////////////////////////////////////
1825
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001826SkGpuDevice::TexCache SkGpuDevice::lockCachedTexture(
1827 const SkBitmap& bitmap,
1828 const GrSamplerState* sampler) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001829 GrContext::TextureCacheEntry entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001830 GrContext* ctx = this->context();
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001831
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001832 if (!bitmap.isVolatile()) {
1833 GrContext::TextureKey key = bitmap.getGenerationID();
1834 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001835
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001836 entry = ctx->findAndLockTexture(key, bitmap.width(),
1837 bitmap.height(), sampler);
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001838 if (NULL == entry.texture()) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001839 entry = sk_gr_create_bitmap_texture(ctx, key, sampler,
1840 bitmap);
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001841 }
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001842 } else {
1843 entry = sk_gr_create_bitmap_texture(ctx, gUNCACHED_KEY,
1844 sampler, bitmap);
1845 }
1846 if (NULL == entry.texture()) {
1847 GrPrintf("---- failed to create texture for cache [%d %d]\n",
1848 bitmap.width(), bitmap.height());
reed@google.comac10a2d2010-12-22 21:39:39 +00001849 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001850 return entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001851}
1852
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001853void SkGpuDevice::unlockCachedTexture(TexCache cache) {
1854 this->context()->unlockTexture(cache);
reed@google.comac10a2d2010-12-22 21:39:39 +00001855}
1856
bsalomon@google.comfb309512011-11-30 14:13:48 +00001857bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
1858 const GrSamplerState& sampler) const {
1859 GrContext::TextureKey key = bitmap.getGenerationID();
1860 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
1861 return this->context()->isTextureInCache(key, bitmap.width(),
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001862 bitmap.height(), &sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001863
1864}
1865
1866
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001867SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1868 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001869 bool isOpaque,
1870 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001871 GrTextureDesc desc;
1872 desc.fConfig = fRenderTarget->config();
1873 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1874 desc.fWidth = width;
1875 desc.fHeight = height;
1876 desc.fSampleCnt = fRenderTarget->numSamples();
1877
1878 GrContext::TextureCacheEntry cacheEntry;
1879 GrTexture* texture;
1880 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001881 // Skia's convention is to only clear a device if it is non-opaque.
1882 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001883
1884#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1885 // layers are never draw in repeat modes, so we can request an approx
1886 // match and ignore any padding.
1887 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1888 GrContext::kApprox_ScratchTexMatch :
1889 GrContext::kExact_ScratchTexMatch;
1890 cacheEntry = fContext->lockScratchTexture(desc, matchType);
1891 texture = cacheEntry.texture();
1892#else
1893 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1894 texture = tunref.get();
1895#endif
1896 if (texture) {
1897 return SkNEW_ARGS(SkGpuDevice,(fContext,
1898 texture,
1899 cacheEntry,
1900 needClear));
1901 } else {
1902 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1903 width, height);
1904 return NULL;
1905 }
1906}
1907
1908SkGpuDevice::SkGpuDevice(GrContext* context,
1909 GrTexture* texture,
1910 TexCache cacheEntry,
1911 bool needClear)
1912 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1913 GrAssert(texture && texture->asRenderTarget());
1914 GrAssert(NULL == cacheEntry.texture() || texture == cacheEntry.texture());
1915 this->initFromRenderTarget(context, texture->asRenderTarget());
1916 fCache = cacheEntry;
1917 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001918}
1919
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001920GrTextContext* SkGpuDevice::getTextContext() {
1921 if (NULL == fTextContext) {
1922 fTextContext = new GrDefaultTextContext();
1923 }
1924 return fTextContext;
1925}