blob: 9e4a7b6f514bad77f8f0ea51e89226f7605147e6 [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) { \
68 this->clear(NULL); \
69 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,
753 GrPaint* grp) {
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.
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000833 context->drawPath(tempPaint, path, skToGrFillType(path.getFillType()), &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,
898 GrPaint* grp) {
reed@google.com69302852011-02-16 18:08:07 +0000899 SkMask srcM, dstM;
900
901 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
902 SkMask::kComputeBoundsAndRenderImage_CreateMode)) {
903 return false;
904 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000905 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000906
907 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
908 return false;
909 }
910 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000911 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000912
913 if (clip.quickReject(dstM.fBounds)) {
914 return false;
915 }
916 if (bounder && !bounder->doIRect(dstM.fBounds)) {
917 return false;
918 }
919
920 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
921 // the current clip (and identity matrix) and grpaint settings
922
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000923 // used to compute inverse view, if necessary
924 GrMatrix ivm = context->getMatrix();
925
reed@google.com0c219b62011-02-16 21:31:18 +0000926 GrAutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +0000927
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000928 const GrTextureDesc desc = {
929 kNone_GrTextureFlags,
reed@google.com69302852011-02-16 18:08:07 +0000930 dstM.fBounds.width(),
931 dstM.fBounds.height(),
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000932 kAlpha_8_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +0000933 0, // samples
reed@google.com69302852011-02-16 18:08:07 +0000934 };
935
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000936 GrAutoScratchTexture ast(context, desc);
937 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000938
reed@google.com69302852011-02-16 18:08:07 +0000939 if (NULL == texture) {
940 return false;
941 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000942 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000943 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +0000944
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000945 if (grp->hasTextureOrMask() && ivm.invert(&ivm)) {
946 grp->preConcatActiveSamplerMatrices(ivm);
947 }
948
949 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
950 // we assume the last mask index is available for use
951 GrAssert(NULL == grp->getMask(MASK_IDX));
952 grp->setMask(MASK_IDX, texture);
bsalomon@google.com97912912011-12-06 16:30:36 +0000953 grp->maskSampler(MASK_IDX)->reset();
reed@google.com69302852011-02-16 18:08:07 +0000954
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000955 GrRect d;
956 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +0000957 GrIntToScalar(dstM.fBounds.fTop),
958 GrIntToScalar(dstM.fBounds.fRight),
959 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000960
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000961 GrMatrix* m = grp->maskSampler(MASK_IDX)->matrix();
962 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
963 -dstM.fBounds.fTop*SK_Scalar1);
964 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000965 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +0000966 return true;
967}
reed@google.com69302852011-02-16 18:08:07 +0000968
bsalomon@google.com85003222012-03-28 14:44:37 +0000969}
970
971///////////////////////////////////////////////////////////////////////////////
972
reed@google.com0c219b62011-02-16 21:31:18 +0000973void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000974 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000975 bool pathIsMutable) {
976 CHECK_SHOULD_DRAW(draw);
977
reed@google.comfe626382011-09-21 13:50:35 +0000978 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000979
bsalomon@google.com5782d712011-01-21 21:03:59 +0000980 GrPaint grPaint;
981 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000982 if (!skPaint2GrPaintShader(this,
983 paint,
984 *draw.fMatrix,
985 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);
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001036 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001037 *draw.fMatrix, *draw.fClip, draw.fBounder,
1038 &grPaint)) {
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001039 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001040 *draw.fMatrix, *draw.fClip, draw.fBounder,
1041 &grPaint);
1042 }
reed@google.com69302852011-02-16 18:08:07 +00001043 return;
1044 }
reed@google.com69302852011-02-16 18:08:07 +00001045
bsalomon@google.comffca4002011-02-22 20:34:01 +00001046 GrPathFill fill = kHairLine_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001047
reed@google.com0c219b62011-02-16 21:31:18 +00001048 if (doFill) {
1049 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001050 case SkPath::kWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001051 fill = kWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001052 break;
1053 case SkPath::kEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001054 fill = kEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001055 break;
1056 case SkPath::kInverseWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001057 fill = kInverseWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001058 break;
1059 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001060 fill = kInverseEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001061 break;
1062 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001063 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001064 return;
1065 }
1066 }
1067
reed@google.com07f3ee12011-05-16 17:21:57 +00001068 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001069}
1070
bsalomon@google.comfb309512011-11-30 14:13:48 +00001071namespace {
1072
1073inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1074 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1075 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1076 return tilesX * tilesY;
1077}
1078
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001079inline int determine_tile_size(const SkBitmap& bitmap,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001080 const SkIRect* srcRectPtr,
1081 int maxTextureSize) {
1082 static const int kSmallTileSize = 1 << 10;
1083 if (maxTextureSize <= kSmallTileSize) {
1084 return maxTextureSize;
1085 }
1086
1087 size_t maxTexTotalTileSize;
1088 size_t smallTotalTileSize;
1089
1090 if (NULL == srcRectPtr) {
1091 int w = bitmap.width();
1092 int h = bitmap.height();
1093 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1094 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1095 } else {
1096 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1097 srcRectPtr->fTop,
1098 srcRectPtr->fRight,
1099 srcRectPtr->fBottom,
1100 maxTextureSize);
1101 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1102 srcRectPtr->fTop,
1103 srcRectPtr->fRight,
1104 srcRectPtr->fBottom,
1105 kSmallTileSize);
1106 }
1107 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1108 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1109
1110 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1111 return kSmallTileSize;
1112 } else {
1113 return maxTextureSize;
1114 }
1115}
1116}
1117
1118bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
1119 const GrSamplerState& sampler,
1120 const SkIRect* srcRectPtr,
1121 int* tileSize) const {
1122 SkASSERT(NULL != tileSize);
1123
1124 // if bitmap is explictly texture backed then just use the texture
1125 if (NULL != bitmap.getTexture()) {
1126 return false;
1127 }
1128 // if it's larger than the max texture size, then we have no choice but
1129 // tiling
1130 const int maxTextureSize = fContext->getMaxTextureSize();
1131 if (bitmap.width() > maxTextureSize ||
1132 bitmap.height() > maxTextureSize) {
1133 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1134 return true;
1135 }
1136 // if we are going to have to draw the whole thing, then don't tile
1137 if (NULL == srcRectPtr) {
1138 return false;
1139 }
1140 // if the entire texture is already in our cache then no reason to tile it
1141 if (this->isBitmapInTextureCache(bitmap, sampler)) {
1142 return false;
1143 }
1144
1145 // At this point we know we could do the draw by uploading the entire bitmap
1146 // as a texture. However, if the texture would be large compared to the
1147 // cache size and we don't require most of it for this draw then tile to
1148 // reduce the amount of upload and cache spill.
1149
1150 // assumption here is that sw bitmap size is a good proxy for its size as
1151 // a texture
1152 size_t bmpSize = bitmap.getSize();
1153 size_t cacheSize;
1154 fContext->getTextureCacheLimits(NULL, &cacheSize);
1155 if (bmpSize < cacheSize / 2) {
1156 return false;
1157 }
1158
1159 SkFixed fracUsed =
1160 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1161 (srcRectPtr->height() << 16) / bitmap.height());
1162 if (fracUsed <= SK_FixedHalf) {
1163 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1164 return true;
1165 } else {
1166 return false;
1167 }
1168}
1169
reed@google.comac10a2d2010-12-22 21:39:39 +00001170void SkGpuDevice::drawBitmap(const SkDraw& draw,
1171 const SkBitmap& bitmap,
1172 const SkIRect* srcRectPtr,
1173 const SkMatrix& m,
1174 const SkPaint& paint) {
1175 CHECK_SHOULD_DRAW(draw);
1176
1177 SkIRect srcRect;
1178 if (NULL == srcRectPtr) {
1179 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1180 } else {
1181 srcRect = *srcRectPtr;
1182 }
1183
junov@google.comd935cfb2011-06-27 20:48:23 +00001184 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001185 // Convert the bitmap to a shader so that the rect can be drawn
1186 // through drawRect, which supports mask filters.
1187 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001188 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001189 if (srcRectPtr) {
1190 if (!bitmap.extractSubset(&tmp, srcRect)) {
1191 return; // extraction failed
1192 }
1193 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001194 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001195 }
1196 SkPaint paintWithTexture(paint);
1197 paintWithTexture.setShader(SkShader::CreateBitmapShader( *bitmapPtr,
1198 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001199 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001200 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001201
junov@google.com1d329782011-07-28 20:10:09 +00001202 // Transform 'm' needs to be concatenated to the draw matrix,
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001203 // rather than transforming the primitive directly, so that 'm' will
junov@google.com1d329782011-07-28 20:10:09 +00001204 // also affect the behavior of the mask filter.
1205 SkMatrix drawMatrix;
1206 drawMatrix.setConcat(*draw.fMatrix, m);
1207 SkDraw transformedDraw(draw);
1208 transformedDraw.fMatrix = &drawMatrix;
1209
1210 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1211
junov@google.comd935cfb2011-06-27 20:48:23 +00001212 return;
1213 }
1214
bsalomon@google.com5782d712011-01-21 21:03:59 +00001215 GrPaint grPaint;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001216 if (!skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001217 return;
1218 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001219 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001220 if (paint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001221 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001222 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001223 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001224 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001225
bsalomon@google.comfb309512011-11-30 14:13:48 +00001226 int tileSize;
1227 if (!this->shouldTileBitmap(bitmap, *sampler, srcRectPtr, &tileSize)) {
1228 // take the simple case
bsalomon@google.com5782d712011-01-21 21:03:59 +00001229 this->internalDrawBitmap(draw, bitmap, srcRect, m, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001230 return;
1231 }
1232
1233 // undo the translate done by SkCanvas
1234 int DX = SkMax32(0, srcRect.fLeft);
1235 int DY = SkMax32(0, srcRect.fTop);
1236 // compute clip bounds in local coordinates
1237 SkIRect clipRect;
1238 {
1239 SkRect r;
1240 r.set(draw.fClip->getBounds());
1241 SkMatrix matrix, inverse;
1242 matrix.setConcat(*draw.fMatrix, m);
1243 if (!matrix.invert(&inverse)) {
1244 return;
1245 }
1246 inverse.mapRect(&r);
1247 r.roundOut(&clipRect);
1248 // apply the canvas' translate to our local clip
1249 clipRect.offset(DX, DY);
1250 }
1251
bsalomon@google.comfb309512011-11-30 14:13:48 +00001252 int nx = bitmap.width() / tileSize;
1253 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001254 for (int x = 0; x <= nx; x++) {
1255 for (int y = 0; y <= ny; y++) {
1256 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001257 tileR.set(x * tileSize, y * tileSize,
1258 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001259 if (!SkIRect::Intersects(tileR, clipRect)) {
1260 continue;
1261 }
1262
1263 SkIRect srcR = tileR;
1264 if (!srcR.intersect(srcRect)) {
1265 continue;
1266 }
1267
1268 SkBitmap tmpB;
1269 if (bitmap.extractSubset(&tmpB, tileR)) {
1270 // now offset it to make it "local" to our tmp bitmap
1271 srcR.offset(-tileR.fLeft, -tileR.fTop);
1272
1273 SkMatrix tmpM(m);
1274 {
1275 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1276 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1277 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1278 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001279 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001280 }
1281 }
1282 }
1283}
1284
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001285namespace {
1286
1287bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1288 // detect pixel disalignment
1289 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1290 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
1291 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
1292 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1293 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1294 COLOR_BLEED_TOLERANCE &&
1295 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1296 COLOR_BLEED_TOLERANCE) {
1297 return true;
1298 }
1299 return false;
1300}
1301
1302bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1303 const SkMatrix& m) {
1304 // Only gets called if hasAlignedSamples returned false.
1305 // So we can assume that sampling is axis aligned but not texel aligned.
1306 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
1307 SkRect innerSrcRect(srcRect), innerTransformedRect,
1308 outerTransformedRect(transformedRect);
1309 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1310 m.mapRect(&innerTransformedRect, innerSrcRect);
1311
1312 // The gap between outerTransformedRect and innerTransformedRect
1313 // represents the projection of the source border area, which is
1314 // problematic for color bleeding. We must check whether any
1315 // destination pixels sample the border area.
1316 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1317 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1318 SkIRect outer, inner;
1319 outerTransformedRect.round(&outer);
1320 innerTransformedRect.round(&inner);
1321 // If the inner and outer rects round to the same result, it means the
1322 // border does not overlap any pixel centers. Yay!
1323 return inner != outer;
1324}
1325
1326} // unnamed namespace
1327
reed@google.comac10a2d2010-12-22 21:39:39 +00001328/*
1329 * This is called by drawBitmap(), which has to handle images that may be too
1330 * large to be represented by a single texture.
1331 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001332 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1333 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001334 */
1335void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1336 const SkBitmap& bitmap,
1337 const SkIRect& srcRect,
1338 const SkMatrix& m,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001339 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001340 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1341 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001342
reed@google.com9c49bc32011-07-07 13:42:37 +00001343 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001344 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001345 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001346 return;
1347 }
1348
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001349 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001350
1351 sampler->setWrapX(GrSamplerState::kClamp_WrapMode);
1352 sampler->setWrapY(GrSamplerState::kClamp_WrapMode);
1353 sampler->setSampleMode(GrSamplerState::kNormal_SampleMode);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001354 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001355
1356 GrTexture* texture;
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001357 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001358 if (NULL == texture) {
1359 return;
1360 }
1361
bsalomon@google.com452943d2011-10-31 17:37:14 +00001362 grPaint->setTexture(kBitmapTextureIdx, texture);
reed@google.com46799cd2011-02-22 20:56:26 +00001363
reed@google.com20efde72011-05-09 17:00:02 +00001364 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1365 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001366 GrRect paintRect;
bsalomon@google.com91832162012-03-08 19:53:02 +00001367 float wInv = 1.f / bitmap.width();
1368 float hInv = 1.f / bitmap.height();
1369 paintRect.setLTRB(SkFloatToScalar(srcRect.fLeft * wInv),
1370 SkFloatToScalar(srcRect.fTop * hInv),
1371 SkFloatToScalar(srcRect.fRight * wInv),
1372 SkFloatToScalar(srcRect.fBottom * hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001373
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001374 bool needsTextureDomain = false;
1375 if (GrSamplerState::kBilinear_Filter == sampler->getFilter())
1376 {
1377 // Need texture domain if drawing a sub rect.
1378 needsTextureDomain = srcRect.width() < bitmap.width() ||
1379 srcRect.height() < bitmap.height();
1380 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1381 // sampling is axis-aligned
1382 GrRect floatSrcRect, transformedRect;
1383 floatSrcRect.set(srcRect);
1384 SkMatrix srcToDeviceMatrix(m);
1385 srcToDeviceMatrix.postConcat(*draw.fMatrix);
1386 srcToDeviceMatrix.mapRect(&transformedRect, floatSrcRect);
1387
1388 if (hasAlignedSamples(floatSrcRect, transformedRect)) {
1389 // Samples are texel-aligned, so filtering is futile
1390 sampler->setFilter(GrSamplerState::kNearest_Filter);
1391 needsTextureDomain = false;
1392 } else {
1393 needsTextureDomain = needsTextureDomain &&
1394 mayColorBleed(floatSrcRect, transformedRect, m);
1395 }
1396 }
1397 }
1398
1399 GrRect textureDomain = GrRect::MakeEmpty();
1400
1401 if (needsTextureDomain) {
1402 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001403 GrScalar left, top, right, bottom;
1404 if (srcRect.width() > 1) {
1405 GrScalar border = GR_ScalarHalf / bitmap.width();
1406 left = paintRect.left() + border;
1407 right = paintRect.right() - border;
1408 } else {
1409 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1410 }
1411 if (srcRect.height() > 1) {
1412 GrScalar border = GR_ScalarHalf / bitmap.height();
1413 top = paintRect.top() + border;
1414 bottom = paintRect.bottom() - border;
1415 } else {
1416 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1417 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001418 textureDomain.setLTRB(left, top, right, bottom);
junov@google.com6acc9b32011-05-16 18:32:07 +00001419 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001420 sampler->setTextureDomain(textureDomain);
junov@google.com6acc9b32011-05-16 18:32:07 +00001421
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001422 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001423}
1424
reed@google.com8926b162012-03-23 15:36:36 +00001425static GrTexture* filter_texture(GrContext* context, GrTexture* texture,
1426 SkImageFilter* filter, const GrRect& rect) {
1427 GrAssert(filter);
1428
1429 SkSize blurSize;
1430 SkISize radius;
1431
1432 const GrTextureDesc desc = {
1433 kRenderTarget_GrTextureFlagBit,
1434 rect.width(),
1435 rect.height(),
1436 kRGBA_8888_PM_GrPixelConfig,
bsalomon@google.comb9014f42012-03-30 14:22:41 +00001437 0 // samples
reed@google.com8926b162012-03-23 15:36:36 +00001438 };
1439
1440 if (filter->asABlur(&blurSize)) {
1441 GrAutoScratchTexture temp1, temp2;
1442 texture = context->gaussianBlur(texture, &temp1, &temp2, rect,
1443 blurSize.width(),
1444 blurSize.height());
1445 texture->ref();
1446 } else if (filter->asADilate(&radius)) {
1447 GrAutoScratchTexture temp1(context, desc), temp2(context, desc);
1448 texture = context->applyMorphology(texture, rect,
1449 temp1.texture(), temp2.texture(),
1450 GrSamplerState::kDilate_Filter,
1451 radius);
1452 texture->ref();
1453 } else if (filter->asAnErode(&radius)) {
1454 GrAutoScratchTexture temp1(context, desc), temp2(context, desc);
1455 texture = context->applyMorphology(texture, rect,
1456 temp1.texture(), temp2.texture(),
1457 GrSamplerState::kErode_Filter,
1458 radius);
1459 texture->ref();
1460 }
1461 return texture;
1462}
1463
reed@google.comac10a2d2010-12-22 21:39:39 +00001464void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1465 int left, int top, const SkPaint& paint) {
1466 CHECK_SHOULD_DRAW(draw);
1467
reed@google.com8926b162012-03-23 15:36:36 +00001468 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001469 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1470 return;
1471 }
1472
reed@google.com76dd2772012-01-05 21:15:07 +00001473 int w = bitmap.width();
1474 int h = bitmap.height();
1475
bsalomon@google.com5782d712011-01-21 21:03:59 +00001476 GrPaint grPaint;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001477 if(!skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001478 return;
1479 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001480
bsalomon@google.com5782d712011-01-21 21:03:59 +00001481 GrAutoMatrix avm(fContext, GrMatrix::I());
1482
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001483 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001484
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001485 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001486 sampler->reset();
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001487 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001488 grPaint.setTexture(kBitmapTextureIdx, texture);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001489
reed@google.com8926b162012-03-23 15:36:36 +00001490 SkImageFilter* filter = paint.getImageFilter();
1491 if (NULL != filter) {
1492 GrTexture* filteredTexture = filter_texture(fContext, texture, filter,
1493 GrRect::MakeWH(w, h));
1494 if (filteredTexture) {
1495 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1496 texture = filteredTexture;
1497 filteredTexture->unref();
1498 }
reed@google.com76dd2772012-01-05 21:15:07 +00001499 }
reed@google.com8926b162012-03-23 15:36:36 +00001500
bsalomon@google.com5782d712011-01-21 21:03:59 +00001501 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001502 GrRect::MakeXYWH(GrIntToScalar(left),
1503 GrIntToScalar(top),
1504 GrIntToScalar(w),
1505 GrIntToScalar(h)),
1506 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1507 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001508}
1509
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001510void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001511 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001512 // clear of the source device must occur before CHECK_SHOULD_DRAW
1513 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1514 if (dev->fNeedClear) {
1515 // TODO: could check here whether we really need to draw at all
1516 dev->clear(0x0);
1517 }
1518
reed@google.comac10a2d2010-12-22 21:39:39 +00001519 CHECK_SHOULD_DRAW(draw);
1520
bsalomon@google.com5782d712011-01-21 21:03:59 +00001521 GrPaint grPaint;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001522 if (!dev->bindDeviceAsTexture(&grPaint) ||
bsalomon@google.com84405e02012-03-05 19:57:21 +00001523 !skPaint2GrPaintNoShader(paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001524 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001525 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001526
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001527 GrTexture* devTex = grPaint.getTexture(0);
1528 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001529
reed@google.com8926b162012-03-23 15:36:36 +00001530 SkImageFilter* filter = paint.getImageFilter();
1531 if (NULL != filter) {
1532 GrRect rect = GrRect::MakeWH(devTex->width(), devTex->height());
1533 GrTexture* filteredTexture = filter_texture(fContext, devTex, filter,
1534 rect);
1535 if (filteredTexture) {
1536 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1537 devTex = filteredTexture;
1538 filteredTexture->unref();
1539 }
1540 }
1541
bsalomon@google.com5782d712011-01-21 21:03:59 +00001542 const SkBitmap& bm = dev->accessBitmap(false);
1543 int w = bm.width();
1544 int h = bm.height();
1545
1546 GrAutoMatrix avm(fContext, GrMatrix::I());
1547
bsalomon@google.com97912912011-12-06 16:30:36 +00001548 grPaint.textureSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com5782d712011-01-21 21:03:59 +00001549
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001550 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1551 GrIntToScalar(y),
1552 GrIntToScalar(w),
1553 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001554
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001555 // The device being drawn may not fill up its texture (saveLayer uses
1556 // the approximate ).
1557 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1558 GR_Scalar1 * h / devTex->height());
1559
1560 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001561}
1562
reed@google.com8926b162012-03-23 15:36:36 +00001563bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
reed@google.com76dd2772012-01-05 21:15:07 +00001564 SkSize size;
senorblanco@chromium.org05054f12012-03-02 21:05:45 +00001565 SkISize radius;
1566 if (!filter->asABlur(&size) && !filter->asADilate(&radius) && !filter->asAnErode(&radius)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001567 return false;
1568 }
reed@google.com8926b162012-03-23 15:36:36 +00001569 return true;
1570}
1571
1572bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1573 const SkMatrix& ctm,
1574 SkBitmap* result, SkIPoint* offset) {
1575 // want explicitly our impl, so guard against a subclass of us overriding it
1576 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001577 return false;
1578 }
reed@google.com8926b162012-03-23 15:36:36 +00001579
1580 SkAutoLockPixels alp(src, !src.getTexture());
1581 if (!src.getTexture() && !src.readyToDraw()) {
1582 return false;
1583 }
1584
1585 GrPaint paint;
1586 paint.reset();
1587
1588 GrSamplerState* sampler = paint.textureSampler(kBitmapTextureIdx);
1589
1590 GrTexture* texture;
1591 SkAutoCachedTexture act(this, src, sampler, &texture);
1592
1593 result->setConfig(src.config(), src.width(), src.height());
1594 GrRect rect = GrRect::MakeWH(src.width(), src.height());
1595 GrTexture* resultTexture = filter_texture(fContext, texture, filter, rect);
1596 if (resultTexture) {
1597 result->setPixelRef(new SkGrTexturePixelRef(resultTexture))->unref();
1598 resultTexture->unref();
1599 }
reed@google.com76dd2772012-01-05 21:15:07 +00001600 return true;
1601}
1602
reed@google.comac10a2d2010-12-22 21:39:39 +00001603///////////////////////////////////////////////////////////////////////////////
1604
1605// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001606static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1607 kTriangles_PrimitiveType,
1608 kTriangleStrip_PrimitiveType,
1609 kTriangleFan_PrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001610};
1611
1612void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1613 int vertexCount, const SkPoint vertices[],
1614 const SkPoint texs[], const SkColor colors[],
1615 SkXfermode* xmode,
1616 const uint16_t indices[], int indexCount,
1617 const SkPaint& paint) {
1618 CHECK_SHOULD_DRAW(draw);
1619
bsalomon@google.com5782d712011-01-21 21:03:59 +00001620 GrPaint grPaint;
1621 SkAutoCachedTexture act;
1622 // we ignore the shader if texs is null.
1623 if (NULL == texs) {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001624 if (!skPaint2GrPaintNoShader(paint,
1625 false,
1626 NULL == colors,
1627 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001628 return;
1629 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001630 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001631 if (!skPaint2GrPaintShader(this,
1632 paint,
1633 *draw.fMatrix,
1634 NULL == colors,
1635 &act,
1636 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001637 return;
1638 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001639 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001640
1641 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001642 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001643 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1644#if 0
1645 return
1646#endif
1647 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001648 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001649
bsalomon@google.com498776a2011-08-16 19:20:44 +00001650 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1651 if (NULL != colors) {
1652 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001653 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001654 for (int i = 0; i < vertexCount; ++i) {
1655 convertedColors[i] = SkGr::SkColor2GrColor(colors[i]);
1656 }
1657 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001658 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001659 fContext->drawVertices(grPaint,
1660 gVertexMode2PrimitiveType[vmode],
1661 vertexCount,
1662 (GrPoint*) vertices,
1663 (GrPoint*) texs,
1664 colors,
1665 indices,
1666 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001667}
1668
1669///////////////////////////////////////////////////////////////////////////////
1670
1671static void GlyphCacheAuxProc(void* data) {
1672 delete (GrFontScaler*)data;
1673}
1674
1675static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1676 void* auxData;
1677 GrFontScaler* scaler = NULL;
1678 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1679 scaler = (GrFontScaler*)auxData;
1680 }
1681 if (NULL == scaler) {
1682 scaler = new SkGrFontScaler(cache);
1683 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1684 }
1685 return scaler;
1686}
1687
1688static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1689 SkFixed fx, SkFixed fy,
1690 const SkGlyph& glyph) {
1691 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1692
bungeman@google.com15865a72012-01-11 16:28:04 +00001693 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001694
1695 if (NULL == procs->fFontScaler) {
1696 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1697 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001698
bungeman@google.com15865a72012-01-11 16:28:04 +00001699 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1700 glyph.getSubXFixed(),
1701 glyph.getSubYFixed()),
1702 SkFixedFloorToFixed(fx),
1703 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001704 procs->fFontScaler);
1705}
1706
bsalomon@google.com5782d712011-01-21 21:03:59 +00001707SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001708
1709 // deferred allocation
1710 if (NULL == fDrawProcs) {
1711 fDrawProcs = new GrSkDrawProcs;
1712 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1713 fDrawProcs->fContext = fContext;
1714 }
1715
1716 // init our (and GL's) state
1717 fDrawProcs->fTextContext = context;
1718 fDrawProcs->fFontScaler = NULL;
1719 return fDrawProcs;
1720}
1721
1722void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1723 size_t byteLength, SkScalar x, SkScalar y,
1724 const SkPaint& paint) {
1725 CHECK_SHOULD_DRAW(draw);
1726
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001727 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001728 // this guy will just call our drawPath()
1729 draw.drawText((const char*)text, byteLength, x, y, paint);
1730 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001731 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001732
1733 GrPaint grPaint;
1734 SkAutoCachedTexture act;
1735
bsalomon@google.com84405e02012-03-05 19:57:21 +00001736 if (!skPaint2GrPaintShader(this,
1737 paint,
1738 *draw.fMatrix,
1739 true,
1740 &act,
1741 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001742 return;
1743 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001744 GrTextContext::AutoFinish txtCtxAF(this->getTextContext(), fContext,
1745 grPaint, draw.fExtMatrix);
1746 myDraw.fProcs = this->initDrawForText(txtCtxAF.getTextContext());
reed@google.comac10a2d2010-12-22 21:39:39 +00001747 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1748 }
1749}
1750
1751void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1752 size_t byteLength, const SkScalar pos[],
1753 SkScalar constY, int scalarsPerPos,
1754 const SkPaint& paint) {
1755 CHECK_SHOULD_DRAW(draw);
1756
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001757 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001758 // this guy will just call our drawPath()
1759 draw.drawPosText((const char*)text, byteLength, pos, constY,
1760 scalarsPerPos, paint);
1761 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001762 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001763
1764 GrPaint grPaint;
1765 SkAutoCachedTexture act;
bsalomon@google.com84405e02012-03-05 19:57:21 +00001766 if (!skPaint2GrPaintShader(this,
1767 paint,
1768 *draw.fMatrix,
1769 true,
1770 &act,
1771 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001772 return;
1773 }
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001774 GrTextContext::AutoFinish txtCtxAF(this->getTextContext(), fContext,
1775 grPaint, draw.fExtMatrix);
1776 myDraw.fProcs = this->initDrawForText(txtCtxAF.getTextContext());
reed@google.comac10a2d2010-12-22 21:39:39 +00001777 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1778 scalarsPerPos, paint);
1779 }
1780}
1781
1782void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1783 size_t len, const SkPath& path,
1784 const SkMatrix* m, const SkPaint& paint) {
1785 CHECK_SHOULD_DRAW(draw);
1786
1787 SkASSERT(draw.fDevice == this);
1788 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1789}
1790
1791///////////////////////////////////////////////////////////////////////////////
1792
reed@google.comf67e4cf2011-03-15 20:56:58 +00001793bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1794 if (!paint.isLCDRenderText()) {
1795 // we're cool with the paint as is
1796 return false;
1797 }
1798
1799 if (paint.getShader() ||
1800 paint.getXfermode() || // unless its srcover
1801 paint.getMaskFilter() ||
1802 paint.getRasterizer() ||
1803 paint.getColorFilter() ||
1804 paint.getPathEffect() ||
1805 paint.isFakeBoldText() ||
1806 paint.getStyle() != SkPaint::kFill_Style) {
1807 // turn off lcd
1808 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1809 flags->fHinting = paint.getHinting();
1810 return true;
1811 }
1812 // we're cool with the paint as is
1813 return false;
1814}
1815
reed@google.com75d939b2011-12-07 15:07:23 +00001816void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001817 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001818 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001819}
1820
reed@google.comf67e4cf2011-03-15 20:56:58 +00001821///////////////////////////////////////////////////////////////////////////////
1822
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001823SkGpuDevice::TexCache SkGpuDevice::lockCachedTexture(
1824 const SkBitmap& bitmap,
1825 const GrSamplerState* sampler) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001826 GrContext::TextureCacheEntry entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001827 GrContext* ctx = this->context();
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001828
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001829 if (!bitmap.isVolatile()) {
1830 GrContext::TextureKey key = bitmap.getGenerationID();
1831 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001832
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001833 entry = ctx->findAndLockTexture(key, bitmap.width(),
1834 bitmap.height(), sampler);
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001835 if (NULL == entry.texture()) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001836 entry = sk_gr_create_bitmap_texture(ctx, key, sampler,
1837 bitmap);
bsalomon@google.com18bbb8b2012-03-30 18:29:01 +00001838 }
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001839 } else {
1840 entry = sk_gr_create_bitmap_texture(ctx, gUNCACHED_KEY,
1841 sampler, bitmap);
1842 }
1843 if (NULL == entry.texture()) {
1844 GrPrintf("---- failed to create texture for cache [%d %d]\n",
1845 bitmap.width(), bitmap.height());
reed@google.comac10a2d2010-12-22 21:39:39 +00001846 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001847 return entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001848}
1849
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001850void SkGpuDevice::unlockCachedTexture(TexCache cache) {
1851 this->context()->unlockTexture(cache);
reed@google.comac10a2d2010-12-22 21:39:39 +00001852}
1853
bsalomon@google.comfb309512011-11-30 14:13:48 +00001854bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
1855 const GrSamplerState& sampler) const {
1856 GrContext::TextureKey key = bitmap.getGenerationID();
1857 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
1858 return this->context()->isTextureInCache(key, bitmap.width(),
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001859 bitmap.height(), &sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001860
1861}
1862
1863
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001864SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1865 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001866 bool isOpaque,
1867 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001868 GrTextureDesc desc;
1869 desc.fConfig = fRenderTarget->config();
1870 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1871 desc.fWidth = width;
1872 desc.fHeight = height;
1873 desc.fSampleCnt = fRenderTarget->numSamples();
1874
1875 GrContext::TextureCacheEntry cacheEntry;
1876 GrTexture* texture;
1877 SkAutoTUnref<GrTexture> tunref;
1878 // Skia's convention is to only clear a device if it is a non-opaque layer.
1879 bool needClear = !isOpaque && kSaveLayer_Usage == usage;
1880
1881#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1882 // layers are never draw in repeat modes, so we can request an approx
1883 // match and ignore any padding.
1884 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1885 GrContext::kApprox_ScratchTexMatch :
1886 GrContext::kExact_ScratchTexMatch;
1887 cacheEntry = fContext->lockScratchTexture(desc, matchType);
1888 texture = cacheEntry.texture();
1889#else
1890 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1891 texture = tunref.get();
1892#endif
1893 if (texture) {
1894 return SkNEW_ARGS(SkGpuDevice,(fContext,
1895 texture,
1896 cacheEntry,
1897 needClear));
1898 } else {
1899 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1900 width, height);
1901 return NULL;
1902 }
1903}
1904
1905SkGpuDevice::SkGpuDevice(GrContext* context,
1906 GrTexture* texture,
1907 TexCache cacheEntry,
1908 bool needClear)
1909 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1910 GrAssert(texture && texture->asRenderTarget());
1911 GrAssert(NULL == cacheEntry.texture() || texture == cacheEntry.texture());
1912 this->initFromRenderTarget(context, texture->asRenderTarget());
1913 fCache = cacheEntry;
1914 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001915}
1916
bsalomon@google.comf4a9c822012-03-16 14:02:46 +00001917GrTextContext* SkGpuDevice::getTextContext() {
1918 if (NULL == fTextContext) {
1919 fTextContext = new GrDefaultTextContext();
1920 }
1921 return fTextContext;
1922}