blob: 437efbdc9b2ff280f53a487555bccde2c947646a [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,
504 const SkMatrix& ctm,
505 bool constantColor,
506 SkGpuDevice::SkAutoCachedTexture* act,
507 GrPaint* grPaint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000508
bsalomon@google.com5782d712011-01-21 21:03:59 +0000509 SkASSERT(NULL != act);
reed@google.comac10a2d2010-12-22 21:39:39 +0000510
bsalomon@google.com5782d712011-01-21 21:03:59 +0000511 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000512 if (NULL == shader) {
bsalomon@google.com84405e02012-03-05 19:57:21 +0000513 return skPaint2GrPaintNoShader(skPaint,
514 false,
515 constantColor,
516 grPaint);
517 } else if (!skPaint2GrPaintNoShader(skPaint, true, false, grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000518 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000519 }
520
reed@google.comac10a2d2010-12-22 21:39:39 +0000521 SkBitmap bitmap;
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000522 SkMatrix* matrix = grPaint->textureSampler(kShaderTextureIdx)->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000523 SkShader::TileMode tileModes[2];
524 SkScalar twoPointParams[3];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000525 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000526 tileModes, twoPointParams);
527
bsalomon@google.com5782d712011-01-21 21:03:59 +0000528 GrSamplerState::SampleMode sampleMode = sk_bmp_type_to_sample_mode[bmptype];
529 if (-1 == sampleMode) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000530 SkShader::GradientInfo info;
531 SkColor color;
532
533 info.fColors = &color;
534 info.fColorOffsets = NULL;
535 info.fColorCount = 1;
536 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
537 SkPaint copy(skPaint);
538 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000539 // modulate the paint alpha by the shader's solid color alpha
540 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
541 copy.setColor(SkColorSetA(color, newA));
bsalomon@google.com84405e02012-03-05 19:57:21 +0000542 return skPaint2GrPaintNoShader(copy,
543 false,
544 constantColor,
545 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000546 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000547 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000548 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000549 GrSamplerState* sampler = grPaint->textureSampler(kShaderTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000550 sampler->setSampleMode(sampleMode);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000551 if (skPaint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000552 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000553 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000554 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000555 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000556 sampler->setWrapX(sk_tile_mode_to_grwrap(tileModes[0]));
557 sampler->setWrapY(sk_tile_mode_to_grwrap(tileModes[1]));
reed@google.comac10a2d2010-12-22 21:39:39 +0000558 if (GrSamplerState::kRadial2_SampleMode == sampleMode) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000559 sampler->setRadial2Params(twoPointParams[0],
560 twoPointParams[1],
561 twoPointParams[2] < 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000562 }
563
bsalomon@google.com84405e02012-03-05 19:57:21 +0000564 GrTexture* texture = act->set(dev, bitmap, sampler);
reed@google.comac10a2d2010-12-22 21:39:39 +0000565 if (NULL == texture) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000566 SkDebugf("Couldn't convert bitmap to texture.\n");
567 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000568 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000569 grPaint->setTexture(kShaderTextureIdx, texture);
reed@google.comac10a2d2010-12-22 21:39:39 +0000570
571 // since our texture coords will be in local space, we wack the texture
572 // matrix to map them back into 0...1 before we load it
573 SkMatrix localM;
574 if (shader->getLocalMatrix(&localM)) {
575 SkMatrix inverse;
576 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000577 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000578 }
579 }
580 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000581 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
582 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000583 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000584 } else if (SkShader::kRadial_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000585 GrScalar s = SkFloatToScalar(1.f / bitmap.width());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000586 matrix->postScale(s, s);
reed@google.comac10a2d2010-12-22 21:39:39 +0000587 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000588
589 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000590}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000591}
reed@google.comac10a2d2010-12-22 21:39:39 +0000592
593///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com5782d712011-01-21 21:03:59 +0000594
bsalomon@google.com398109c2011-04-14 18:40:27 +0000595void SkGpuDevice::clear(SkColor color) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000596 fContext->setRenderTarget(fRenderTarget);
bsalomon@google.com31a58402011-04-27 21:00:02 +0000597 fContext->clear(NULL, color);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000598}
599
reed@google.comac10a2d2010-12-22 21:39:39 +0000600void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
601 CHECK_SHOULD_DRAW(draw);
602
bsalomon@google.com5782d712011-01-21 21:03:59 +0000603 GrPaint grPaint;
604 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000605 if (!skPaint2GrPaintShader(this,
606 paint,
607 *draw.fMatrix,
608 true,
609 &act,
610 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000611 return;
612 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000613
614 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000615}
616
617// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000618static const GrPrimitiveType gPointMode2PrimtiveType[] = {
619 kPoints_PrimitiveType,
620 kLines_PrimitiveType,
621 kLineStrip_PrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000622};
623
624void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000625 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000626 CHECK_SHOULD_DRAW(draw);
627
628 SkScalar width = paint.getStrokeWidth();
629 if (width < 0) {
630 return;
631 }
632
633 // we only handle hairlines here, else we let the SkDraw call our drawPath()
634 if (width > 0) {
635 draw.drawPoints(mode, count, pts, paint, true);
636 return;
637 }
638
bsalomon@google.com5782d712011-01-21 21:03:59 +0000639 GrPaint grPaint;
640 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000641 if (!skPaint2GrPaintShader(this,
642 paint,
643 *draw.fMatrix,
644 true,
645 &act,
646 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000647 return;
648 }
649
bsalomon@google.com5782d712011-01-21 21:03:59 +0000650 fContext->drawVertices(grPaint,
651 gPointMode2PrimtiveType[mode],
652 count,
653 (GrPoint*)pts,
654 NULL,
655 NULL,
656 NULL,
657 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000658}
659
reed@google.comc9aa5872011-04-05 21:05:37 +0000660///////////////////////////////////////////////////////////////////////////////
661
reed@google.comac10a2d2010-12-22 21:39:39 +0000662void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
663 const SkPaint& paint) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000664 CHECK_SHOULD_DRAW(draw);
665
bungeman@google.com79bd8772011-07-18 15:34:08 +0000666 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000667 SkScalar width = paint.getStrokeWidth();
668
669 /*
670 We have special code for hairline strokes, miter-strokes, and fills.
671 Anything else we just call our path code.
672 */
673 bool usePath = doStroke && width > 0 &&
674 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000675 // another two reasons we might need to call drawPath...
676 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000677 usePath = true;
678 }
reed@google.com67db6642011-05-26 11:46:35 +0000679 // until we aa rotated rects...
680 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
681 usePath = true;
682 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000683 // small miter limit means right angles show bevel...
684 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
685 paint.getStrokeMiter() < SK_ScalarSqrt2)
686 {
687 usePath = true;
688 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000689 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000690 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
691 usePath = true;
692 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000693
694 if (usePath) {
695 SkPath path;
696 path.addRect(rect);
697 this->drawPath(draw, path, paint, NULL, true);
698 return;
699 }
700
701 GrPaint grPaint;
702 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000703 if (!skPaint2GrPaintShader(this,
704 paint,
705 *draw.fMatrix,
706 true,
707 &act,
708 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000709 return;
710 }
reed@google.com20efde72011-05-09 17:00:02 +0000711 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000712}
713
reed@google.com69302852011-02-16 18:08:07 +0000714#include "SkMaskFilter.h"
715#include "SkBounder.h"
716
bsalomon@google.com85003222012-03-28 14:44:37 +0000717///////////////////////////////////////////////////////////////////////////////
718
719// helpers for applying mask filters
720namespace {
721
722GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000723 switch (fillType) {
724 case SkPath::kWinding_FillType:
725 return kWinding_PathFill;
726 case SkPath::kEvenOdd_FillType:
727 return kEvenOdd_PathFill;
728 case SkPath::kInverseWinding_FillType:
729 return kInverseWinding_PathFill;
730 case SkPath::kInverseEvenOdd_FillType:
731 return kInverseEvenOdd_PathFill;
732 default:
733 SkDebugf("Unsupported path fill type\n");
734 return kHairLine_PathFill;
735 }
736}
737
bsalomon@google.com85003222012-03-28 14:44:37 +0000738// We prefer to blur small rect with small radius via CPU.
739#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
740#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
741inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
742 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
743 rect.height() <= MIN_GPU_BLUR_SIZE &&
744 radius <= MIN_GPU_BLUR_RADIUS) {
745 return true;
746 }
747 return false;
748}
749
750bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
751 SkMaskFilter* filter, const SkMatrix& matrix,
752 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000753 GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000754#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000755 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000756#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000757 SkMaskFilter::BlurInfo info;
758 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000759 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000760 return false;
761 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000762 SkScalar radius = info.fIgnoreTransform ? info.fRadius
763 : matrix.mapRadius(info.fRadius);
764 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000765 if (radius <= 0) {
766 return false;
767 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000768
769 SkRect srcRect = path.getBounds();
770 if (shouldDrawBlurWithCPU(srcRect, radius)) {
771 return false;
772 }
773
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000774 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000775 float sigma3 = sigma * 3.0f;
776
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000777 SkRect clipRect;
778 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000779
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000780 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
781 srcRect.inset(-sigma3, -sigma3);
782 clipRect.inset(-sigma3, -sigma3);
783 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000784 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000785 SkIRect finalIRect;
786 finalRect.roundOut(&finalIRect);
787 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000788 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000789 }
790 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000791 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000792 }
793 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000794 srcRect.offset(offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000795 const GrTextureDesc desc = {
796 kRenderTarget_GrTextureFlagBit,
bungeman@google.comf8aa18c2012-03-19 21:04:52 +0000797 SkScalarCeilToInt(srcRect.width()),
798 SkScalarCeilToInt(srcRect.height()),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000799 // We actually only need A8, but it often isn't supported as a
800 // render target
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000801 kRGBA_8888_PM_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +0000802 0 // samples
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000803 };
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
925 GrMatrix ivm = context->getMatrix();
926
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,
985 *draw.fMatrix,
986 true,
987 &act,
988 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000989 return;
990 }
991
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +0000992 // can we cheat, and threat a thin stroke as a hairline w/ coverage
993 // if we can, we draw lots faster (raster device does this same test)
994 SkScalar hairlineCoverage;
995 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
996 doFill = false;
997 grPaint.fCoverage = SkScalarRoundToInt(hairlineCoverage *
998 grPaint.fCoverage);
999 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001000
reed@google.comfe626382011-09-21 13:50:35 +00001001 // If we have a prematrix, apply it to the path, optimizing for the case
1002 // where the original path can in fact be modified in place (even though
1003 // its parameter type is const).
1004 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1005 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001006
1007 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001008 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001009
reed@google.come3445642011-02-16 23:20:39 +00001010 if (!pathIsMutable) {
1011 result = &tmpPath;
1012 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001013 }
reed@google.come3445642011-02-16 23:20:39 +00001014 // should I push prePathMatrix on our MV stack temporarily, instead
1015 // of applying it here? See SkDraw.cpp
1016 pathPtr->transform(*prePathMatrix, result);
1017 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001018 }
reed@google.com0c219b62011-02-16 21:31:18 +00001019 // at this point we're done with prePathMatrix
1020 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001021
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001022 if (paint.getPathEffect() ||
1023 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001024 // it is safe to use tmpPath here, even if we already used it for the
1025 // prepathmatrix, since getFillPath can take the same object for its
1026 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001027 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001028 pathPtr = &tmpPath;
1029 }
1030
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001031 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001032 // avoid possibly allocating a new path in transform if we can
1033 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1034
1035 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001036 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001037 GrPathFill pathFillType = doFill ?
1038 skToGrFillType(devPathPtr->getFillType()) : kHairLine_PathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001039 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001040 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001041 &grPaint, pathFillType)) {
1042 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
1043 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001044 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001045 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001046 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001047 }
reed@google.com69302852011-02-16 18:08:07 +00001048 return;
1049 }
reed@google.com69302852011-02-16 18:08:07 +00001050
bsalomon@google.comffca4002011-02-22 20:34:01 +00001051 GrPathFill fill = kHairLine_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001052
reed@google.com0c219b62011-02-16 21:31:18 +00001053 if (doFill) {
1054 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001055 case SkPath::kWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001056 fill = kWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001057 break;
1058 case SkPath::kEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001059 fill = kEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001060 break;
1061 case SkPath::kInverseWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001062 fill = kInverseWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001063 break;
1064 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001065 fill = kInverseEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001066 break;
1067 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001068 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001069 return;
1070 }
1071 }
1072
reed@google.com07f3ee12011-05-16 17:21:57 +00001073 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001074}
1075
bsalomon@google.comfb309512011-11-30 14:13:48 +00001076namespace {
1077
1078inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1079 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1080 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1081 return tilesX * tilesY;
1082}
1083
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001084inline int determine_tile_size(const SkBitmap& bitmap,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001085 const SkIRect* srcRectPtr,
1086 int maxTextureSize) {
1087 static const int kSmallTileSize = 1 << 10;
1088 if (maxTextureSize <= kSmallTileSize) {
1089 return maxTextureSize;
1090 }
1091
1092 size_t maxTexTotalTileSize;
1093 size_t smallTotalTileSize;
1094
1095 if (NULL == srcRectPtr) {
1096 int w = bitmap.width();
1097 int h = bitmap.height();
1098 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1099 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1100 } else {
1101 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1102 srcRectPtr->fTop,
1103 srcRectPtr->fRight,
1104 srcRectPtr->fBottom,
1105 maxTextureSize);
1106 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1107 srcRectPtr->fTop,
1108 srcRectPtr->fRight,
1109 srcRectPtr->fBottom,
1110 kSmallTileSize);
1111 }
1112 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1113 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1114
1115 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1116 return kSmallTileSize;
1117 } else {
1118 return maxTextureSize;
1119 }
1120}
1121}
1122
1123bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
1124 const GrSamplerState& sampler,
1125 const SkIRect* srcRectPtr,
1126 int* tileSize) const {
1127 SkASSERT(NULL != tileSize);
1128
1129 // if bitmap is explictly texture backed then just use the texture
1130 if (NULL != bitmap.getTexture()) {
1131 return false;
1132 }
1133 // if it's larger than the max texture size, then we have no choice but
1134 // tiling
1135 const int maxTextureSize = fContext->getMaxTextureSize();
1136 if (bitmap.width() > maxTextureSize ||
1137 bitmap.height() > maxTextureSize) {
1138 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1139 return true;
1140 }
1141 // if we are going to have to draw the whole thing, then don't tile
1142 if (NULL == srcRectPtr) {
1143 return false;
1144 }
1145 // if the entire texture is already in our cache then no reason to tile it
1146 if (this->isBitmapInTextureCache(bitmap, sampler)) {
1147 return false;
1148 }
1149
1150 // At this point we know we could do the draw by uploading the entire bitmap
1151 // as a texture. However, if the texture would be large compared to the
1152 // cache size and we don't require most of it for this draw then tile to
1153 // reduce the amount of upload and cache spill.
1154
1155 // assumption here is that sw bitmap size is a good proxy for its size as
1156 // a texture
1157 size_t bmpSize = bitmap.getSize();
1158 size_t cacheSize;
1159 fContext->getTextureCacheLimits(NULL, &cacheSize);
1160 if (bmpSize < cacheSize / 2) {
1161 return false;
1162 }
1163
1164 SkFixed fracUsed =
1165 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1166 (srcRectPtr->height() << 16) / bitmap.height());
1167 if (fracUsed <= SK_FixedHalf) {
1168 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1169 return true;
1170 } else {
1171 return false;
1172 }
1173}
1174
reed@google.comac10a2d2010-12-22 21:39:39 +00001175void SkGpuDevice::drawBitmap(const SkDraw& draw,
1176 const SkBitmap& bitmap,
1177 const SkIRect* srcRectPtr,
1178 const SkMatrix& m,
1179 const SkPaint& paint) {
1180 CHECK_SHOULD_DRAW(draw);
1181
1182 SkIRect srcRect;
1183 if (NULL == srcRectPtr) {
1184 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1185 } else {
1186 srcRect = *srcRectPtr;
1187 }
1188
junov@google.comd935cfb2011-06-27 20:48:23 +00001189 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001190 // Convert the bitmap to a shader so that the rect can be drawn
1191 // through drawRect, which supports mask filters.
1192 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001193 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001194 if (srcRectPtr) {
1195 if (!bitmap.extractSubset(&tmp, srcRect)) {
1196 return; // extraction failed
1197 }
1198 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001199 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001200 }
1201 SkPaint paintWithTexture(paint);
1202 paintWithTexture.setShader(SkShader::CreateBitmapShader( *bitmapPtr,
1203 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001204 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001205 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001206
junov@google.com1d329782011-07-28 20:10:09 +00001207 // Transform 'm' needs to be concatenated to the draw matrix,
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001208 // rather than transforming the primitive directly, so that 'm' will
junov@google.com1d329782011-07-28 20:10:09 +00001209 // also affect the behavior of the mask filter.
1210 SkMatrix drawMatrix;
1211 drawMatrix.setConcat(*draw.fMatrix, m);
1212 SkDraw transformedDraw(draw);
1213 transformedDraw.fMatrix = &drawMatrix;
1214
1215 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1216
junov@google.comd935cfb2011-06-27 20:48:23 +00001217 return;
1218 }
1219
bsalomon@google.com5782d712011-01-21 21:03:59 +00001220 GrPaint grPaint;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001221 if (!skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001222 return;
1223 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001224 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001225 if (paint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001226 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001227 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001228 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001229 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001230
bsalomon@google.comfb309512011-11-30 14:13:48 +00001231 int tileSize;
1232 if (!this->shouldTileBitmap(bitmap, *sampler, srcRectPtr, &tileSize)) {
1233 // take the simple case
bsalomon@google.com5782d712011-01-21 21:03:59 +00001234 this->internalDrawBitmap(draw, bitmap, srcRect, m, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001235 return;
1236 }
1237
1238 // undo the translate done by SkCanvas
1239 int DX = SkMax32(0, srcRect.fLeft);
1240 int DY = SkMax32(0, srcRect.fTop);
1241 // compute clip bounds in local coordinates
1242 SkIRect clipRect;
1243 {
1244 SkRect r;
1245 r.set(draw.fClip->getBounds());
1246 SkMatrix matrix, inverse;
1247 matrix.setConcat(*draw.fMatrix, m);
1248 if (!matrix.invert(&inverse)) {
1249 return;
1250 }
1251 inverse.mapRect(&r);
1252 r.roundOut(&clipRect);
1253 // apply the canvas' translate to our local clip
1254 clipRect.offset(DX, DY);
1255 }
1256
bsalomon@google.comfb309512011-11-30 14:13:48 +00001257 int nx = bitmap.width() / tileSize;
1258 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001259 for (int x = 0; x <= nx; x++) {
1260 for (int y = 0; y <= ny; y++) {
1261 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001262 tileR.set(x * tileSize, y * tileSize,
1263 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001264 if (!SkIRect::Intersects(tileR, clipRect)) {
1265 continue;
1266 }
1267
1268 SkIRect srcR = tileR;
1269 if (!srcR.intersect(srcRect)) {
1270 continue;
1271 }
1272
1273 SkBitmap tmpB;
1274 if (bitmap.extractSubset(&tmpB, tileR)) {
1275 // now offset it to make it "local" to our tmp bitmap
1276 srcR.offset(-tileR.fLeft, -tileR.fTop);
1277
1278 SkMatrix tmpM(m);
1279 {
1280 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1281 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1282 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1283 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001284 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001285 }
1286 }
1287 }
1288}
1289
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001290namespace {
1291
1292bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1293 // detect pixel disalignment
1294 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1295 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
1296 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
1297 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1298 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1299 COLOR_BLEED_TOLERANCE &&
1300 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1301 COLOR_BLEED_TOLERANCE) {
1302 return true;
1303 }
1304 return false;
1305}
1306
1307bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1308 const SkMatrix& m) {
1309 // Only gets called if hasAlignedSamples returned false.
1310 // So we can assume that sampling is axis aligned but not texel aligned.
1311 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
1312 SkRect innerSrcRect(srcRect), innerTransformedRect,
1313 outerTransformedRect(transformedRect);
1314 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1315 m.mapRect(&innerTransformedRect, innerSrcRect);
1316
1317 // The gap between outerTransformedRect and innerTransformedRect
1318 // represents the projection of the source border area, which is
1319 // problematic for color bleeding. We must check whether any
1320 // destination pixels sample the border area.
1321 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1322 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1323 SkIRect outer, inner;
1324 outerTransformedRect.round(&outer);
1325 innerTransformedRect.round(&inner);
1326 // If the inner and outer rects round to the same result, it means the
1327 // border does not overlap any pixel centers. Yay!
1328 return inner != outer;
1329}
1330
1331} // unnamed namespace
1332
reed@google.comac10a2d2010-12-22 21:39:39 +00001333/*
1334 * This is called by drawBitmap(), which has to handle images that may be too
1335 * large to be represented by a single texture.
1336 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001337 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1338 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001339 */
1340void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1341 const SkBitmap& bitmap,
1342 const SkIRect& srcRect,
1343 const SkMatrix& m,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001344 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001345 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1346 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001347
reed@google.com9c49bc32011-07-07 13:42:37 +00001348 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001349 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001350 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001351 return;
1352 }
1353
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001354 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001355
1356 sampler->setWrapX(GrSamplerState::kClamp_WrapMode);
1357 sampler->setWrapY(GrSamplerState::kClamp_WrapMode);
1358 sampler->setSampleMode(GrSamplerState::kNormal_SampleMode);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001359 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001360
1361 GrTexture* texture;
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001362 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001363 if (NULL == texture) {
1364 return;
1365 }
1366
bsalomon@google.com452943d2011-10-31 17:37:14 +00001367 grPaint->setTexture(kBitmapTextureIdx, texture);
reed@google.com46799cd2011-02-22 20:56:26 +00001368
reed@google.com20efde72011-05-09 17:00:02 +00001369 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1370 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001371 GrRect paintRect;
bsalomon@google.com91832162012-03-08 19:53:02 +00001372 float wInv = 1.f / bitmap.width();
1373 float hInv = 1.f / bitmap.height();
1374 paintRect.setLTRB(SkFloatToScalar(srcRect.fLeft * wInv),
1375 SkFloatToScalar(srcRect.fTop * hInv),
1376 SkFloatToScalar(srcRect.fRight * wInv),
1377 SkFloatToScalar(srcRect.fBottom * hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001378
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001379 bool needsTextureDomain = false;
1380 if (GrSamplerState::kBilinear_Filter == sampler->getFilter())
1381 {
1382 // Need texture domain if drawing a sub rect.
1383 needsTextureDomain = srcRect.width() < bitmap.width() ||
1384 srcRect.height() < bitmap.height();
1385 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1386 // sampling is axis-aligned
1387 GrRect floatSrcRect, transformedRect;
1388 floatSrcRect.set(srcRect);
1389 SkMatrix srcToDeviceMatrix(m);
1390 srcToDeviceMatrix.postConcat(*draw.fMatrix);
1391 srcToDeviceMatrix.mapRect(&transformedRect, floatSrcRect);
1392
1393 if (hasAlignedSamples(floatSrcRect, transformedRect)) {
1394 // Samples are texel-aligned, so filtering is futile
1395 sampler->setFilter(GrSamplerState::kNearest_Filter);
1396 needsTextureDomain = false;
1397 } else {
1398 needsTextureDomain = needsTextureDomain &&
1399 mayColorBleed(floatSrcRect, transformedRect, m);
1400 }
1401 }
1402 }
1403
1404 GrRect textureDomain = GrRect::MakeEmpty();
1405
1406 if (needsTextureDomain) {
1407 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001408 GrScalar left, top, right, bottom;
1409 if (srcRect.width() > 1) {
1410 GrScalar border = GR_ScalarHalf / bitmap.width();
1411 left = paintRect.left() + border;
1412 right = paintRect.right() - border;
1413 } else {
1414 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1415 }
1416 if (srcRect.height() > 1) {
1417 GrScalar border = GR_ScalarHalf / bitmap.height();
1418 top = paintRect.top() + border;
1419 bottom = paintRect.bottom() - border;
1420 } else {
1421 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1422 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001423 textureDomain.setLTRB(left, top, right, bottom);
junov@google.com6acc9b32011-05-16 18:32:07 +00001424 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001425 sampler->setTextureDomain(textureDomain);
junov@google.com6acc9b32011-05-16 18:32:07 +00001426
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001427 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001428}
1429
reed@google.com8926b162012-03-23 15:36:36 +00001430static GrTexture* filter_texture(GrContext* context, GrTexture* texture,
1431 SkImageFilter* filter, const GrRect& rect) {
1432 GrAssert(filter);
1433
1434 SkSize blurSize;
1435 SkISize radius;
1436
1437 const GrTextureDesc desc = {
1438 kRenderTarget_GrTextureFlagBit,
1439 rect.width(),
1440 rect.height(),
1441 kRGBA_8888_PM_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +00001442 0 // samples
reed@google.com8926b162012-03-23 15:36:36 +00001443 };
1444
1445 if (filter->asABlur(&blurSize)) {
1446 GrAutoScratchTexture temp1, temp2;
1447 texture = context->gaussianBlur(texture, &temp1, &temp2, rect,
1448 blurSize.width(),
1449 blurSize.height());
1450 texture->ref();
1451 } else if (filter->asADilate(&radius)) {
1452 GrAutoScratchTexture temp1(context, desc), temp2(context, desc);
1453 texture = context->applyMorphology(texture, rect,
1454 temp1.texture(), temp2.texture(),
1455 GrSamplerState::kDilate_Filter,
1456 radius);
1457 texture->ref();
1458 } else if (filter->asAnErode(&radius)) {
1459 GrAutoScratchTexture temp1(context, desc), temp2(context, desc);
1460 texture = context->applyMorphology(texture, rect,
1461 temp1.texture(), temp2.texture(),
1462 GrSamplerState::kErode_Filter,
1463 radius);
1464 texture->ref();
1465 }
1466 return texture;
1467}
1468
reed@google.comac10a2d2010-12-22 21:39:39 +00001469void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1470 int left, int top, const SkPaint& paint) {
1471 CHECK_SHOULD_DRAW(draw);
1472
reed@google.com8926b162012-03-23 15:36:36 +00001473 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001474 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1475 return;
1476 }
1477
reed@google.com76dd2772012-01-05 21:15:07 +00001478 int w = bitmap.width();
1479 int h = bitmap.height();
1480
bsalomon@google.com5782d712011-01-21 21:03:59 +00001481 GrPaint grPaint;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001482 if(!skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001483 return;
1484 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001485
bsalomon@google.com5782d712011-01-21 21:03:59 +00001486 GrAutoMatrix avm(fContext, GrMatrix::I());
1487
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001488 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001489
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001490 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001491 sampler->reset();
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001492 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001493 grPaint.setTexture(kBitmapTextureIdx, texture);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001494
reed@google.com8926b162012-03-23 15:36:36 +00001495 SkImageFilter* filter = paint.getImageFilter();
1496 if (NULL != filter) {
1497 GrTexture* filteredTexture = filter_texture(fContext, texture, filter,
1498 GrRect::MakeWH(w, h));
1499 if (filteredTexture) {
1500 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1501 texture = filteredTexture;
1502 filteredTexture->unref();
1503 }
reed@google.com76dd2772012-01-05 21:15:07 +00001504 }
reed@google.com8926b162012-03-23 15:36:36 +00001505
bsalomon@google.com5782d712011-01-21 21:03:59 +00001506 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001507 GrRect::MakeXYWH(GrIntToScalar(left),
1508 GrIntToScalar(top),
1509 GrIntToScalar(w),
1510 GrIntToScalar(h)),
1511 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1512 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001513}
1514
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001515void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001516 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001517 // clear of the source device must occur before CHECK_SHOULD_DRAW
1518 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1519 if (dev->fNeedClear) {
1520 // TODO: could check here whether we really need to draw at all
1521 dev->clear(0x0);
1522 }
1523
reed@google.comac10a2d2010-12-22 21:39:39 +00001524 CHECK_SHOULD_DRAW(draw);
1525
bsalomon@google.com5782d712011-01-21 21:03:59 +00001526 GrPaint grPaint;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001527 if (!dev->bindDeviceAsTexture(&grPaint) ||
bsalomon@google.com84405e02012-03-05 19:57:21 +00001528 !skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001529 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001530 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001531
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001532 GrTexture* devTex = grPaint.getTexture(0);
1533 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001534
reed@google.com8926b162012-03-23 15:36:36 +00001535 SkImageFilter* filter = paint.getImageFilter();
1536 if (NULL != filter) {
1537 GrRect rect = GrRect::MakeWH(devTex->width(), devTex->height());
1538 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());
1599 GrRect rect = GrRect::MakeWH(src.width(), src.height());
1600 GrTexture* resultTexture = filter_texture(fContext, texture, filter, rect);
1601 if (resultTexture) {
1602 result->setPixelRef(new SkGrTexturePixelRef(resultTexture))->unref();
1603 resultTexture->unref();
1604 }
reed@google.com76dd2772012-01-05 21:15:07 +00001605 return true;
1606}
1607
reed@google.comac10a2d2010-12-22 21:39:39 +00001608///////////////////////////////////////////////////////////////////////////////
1609
1610// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001611static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1612 kTriangles_PrimitiveType,
1613 kTriangleStrip_PrimitiveType,
1614 kTriangleFan_PrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001615};
1616
1617void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1618 int vertexCount, const SkPoint vertices[],
1619 const SkPoint texs[], const SkColor colors[],
1620 SkXfermode* xmode,
1621 const uint16_t indices[], int indexCount,
1622 const SkPaint& paint) {
1623 CHECK_SHOULD_DRAW(draw);
1624
bsalomon@google.com5782d712011-01-21 21:03:59 +00001625 GrPaint grPaint;
1626 SkAutoCachedTexture act;
1627 // we ignore the shader if texs is null.
1628 if (NULL == texs) {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001629 if (!skPaint2GrPaintNoShader(paint,
1630 false,
1631 NULL == colors,
1632 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001633 return;
1634 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001635 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001636 if (!skPaint2GrPaintShader(this,
1637 paint,
1638 *draw.fMatrix,
1639 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,
1743 *draw.fMatrix,
1744 true,
1745 &act,
1746 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001747 return;
1748 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001749 GrTextContext::AutoFinish txtCtxAF(this->getTextContext(), fContext,
1750 grPaint, draw.fExtMatrix);
1751 myDraw.fProcs = this->initDrawForText(txtCtxAF.getTextContext());
reed@google.comac10a2d2010-12-22 21:39:39 +00001752 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1753 }
1754}
1755
1756void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1757 size_t byteLength, const SkScalar pos[],
1758 SkScalar constY, int scalarsPerPos,
1759 const SkPaint& paint) {
1760 CHECK_SHOULD_DRAW(draw);
1761
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001762 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001763 // this guy will just call our drawPath()
1764 draw.drawPosText((const char*)text, byteLength, pos, constY,
1765 scalarsPerPos, paint);
1766 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001767 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001768
1769 GrPaint grPaint;
1770 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001771 if (!skPaint2GrPaintShader(this,
1772 paint,
1773 *draw.fMatrix,
1774 true,
1775 &act,
1776 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001777 return;
1778 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001779 GrTextContext::AutoFinish txtCtxAF(this->getTextContext(), fContext,
1780 grPaint, draw.fExtMatrix);
1781 myDraw.fProcs = this->initDrawForText(txtCtxAF.getTextContext());
reed@google.comac10a2d2010-12-22 21:39:39 +00001782 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1783 scalarsPerPos, paint);
1784 }
1785}
1786
1787void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1788 size_t len, const SkPath& path,
1789 const SkMatrix* m, const SkPaint& paint) {
1790 CHECK_SHOULD_DRAW(draw);
1791
1792 SkASSERT(draw.fDevice == this);
1793 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1794}
1795
1796///////////////////////////////////////////////////////////////////////////////
1797
reed@google.comf67e4cf2011-03-15 20:56:58 +00001798bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1799 if (!paint.isLCDRenderText()) {
1800 // we're cool with the paint as is
1801 return false;
1802 }
1803
1804 if (paint.getShader() ||
1805 paint.getXfermode() || // unless its srcover
1806 paint.getMaskFilter() ||
1807 paint.getRasterizer() ||
1808 paint.getColorFilter() ||
1809 paint.getPathEffect() ||
1810 paint.isFakeBoldText() ||
1811 paint.getStyle() != SkPaint::kFill_Style) {
1812 // turn off lcd
1813 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1814 flags->fHinting = paint.getHinting();
1815 return true;
1816 }
1817 // we're cool with the paint as is
1818 return false;
1819}
1820
reed@google.com75d939b2011-12-07 15:07:23 +00001821void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001822 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001823 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001824}
1825
reed@google.comf67e4cf2011-03-15 20:56:58 +00001826///////////////////////////////////////////////////////////////////////////////
1827
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001828SkGpuDevice::TexCache SkGpuDevice::lockCachedTexture(
1829 const SkBitmap& bitmap,
1830 const GrSamplerState* sampler) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001831 GrContext::TextureCacheEntry entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001832 GrContext* ctx = this->context();
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001833
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001834 if (!bitmap.isVolatile()) {
1835 GrContext::TextureKey key = bitmap.getGenerationID();
1836 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001837
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001838 entry = ctx->findAndLockTexture(key, bitmap.width(),
1839 bitmap.height(), sampler);
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001840 if (NULL == entry.texture()) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001841 entry = sk_gr_create_bitmap_texture(ctx, key, sampler,
1842 bitmap);
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001843 }
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001844 } else {
1845 entry = sk_gr_create_bitmap_texture(ctx, gUNCACHED_KEY,
1846 sampler, bitmap);
1847 }
1848 if (NULL == entry.texture()) {
1849 GrPrintf("---- failed to create texture for cache [%d %d]\n",
1850 bitmap.width(), bitmap.height());
reed@google.comac10a2d2010-12-22 21:39:39 +00001851 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001852 return entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001853}
1854
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001855void SkGpuDevice::unlockCachedTexture(TexCache cache) {
1856 this->context()->unlockTexture(cache);
reed@google.comac10a2d2010-12-22 21:39:39 +00001857}
1858
bsalomon@google.comfb309512011-11-30 14:13:48 +00001859bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
1860 const GrSamplerState& sampler) const {
1861 GrContext::TextureKey key = bitmap.getGenerationID();
1862 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
1863 return this->context()->isTextureInCache(key, bitmap.width(),
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001864 bitmap.height(), &sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001865
1866}
1867
1868
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001869SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1870 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001871 bool isOpaque,
1872 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001873 GrTextureDesc desc;
1874 desc.fConfig = fRenderTarget->config();
1875 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1876 desc.fWidth = width;
1877 desc.fHeight = height;
1878 desc.fSampleCnt = fRenderTarget->numSamples();
1879
1880 GrContext::TextureCacheEntry cacheEntry;
1881 GrTexture* texture;
1882 SkAutoTUnref<GrTexture> tunref;
1883 // Skia's convention is to only clear a device if it is a non-opaque layer.
1884 bool needClear = !isOpaque && kSaveLayer_Usage == usage;
1885
1886#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1887 // layers are never draw in repeat modes, so we can request an approx
1888 // match and ignore any padding.
1889 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1890 GrContext::kApprox_ScratchTexMatch :
1891 GrContext::kExact_ScratchTexMatch;
1892 cacheEntry = fContext->lockScratchTexture(desc, matchType);
1893 texture = cacheEntry.texture();
1894#else
1895 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1896 texture = tunref.get();
1897#endif
1898 if (texture) {
1899 return SkNEW_ARGS(SkGpuDevice,(fContext,
1900 texture,
1901 cacheEntry,
1902 needClear));
1903 } else {
1904 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1905 width, height);
1906 return NULL;
1907 }
1908}
1909
1910SkGpuDevice::SkGpuDevice(GrContext* context,
1911 GrTexture* texture,
1912 TexCache cacheEntry,
1913 bool needClear)
1914 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1915 GrAssert(texture && texture->asRenderTarget());
1916 GrAssert(NULL == cacheEntry.texture() || texture == cacheEntry.texture());
1917 this->initFromRenderTarget(context, texture->asRenderTarget());
1918 fCache = cacheEntry;
1919 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001920}
1921
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001922GrTextContext* SkGpuDevice::getTextContext() {
1923 if (NULL == fTextContext) {
1924 fTextContext = new GrDefaultTextContext();
1925 }
1926 return fTextContext;
1927}