blob: 8860d6e6a56bc23e684ce3f6c13dc34dd04289d1 [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00006 */
7
tomhudson@google.com898e7b52012-06-01 20:42:15 +00008#include "SkGpuDevice.h"
reed@google.comac10a2d2010-12-22 21:39:39 +00009
twiz@google.com58071162012-07-18 21:41:50 +000010#include "effects/GrColorTableEffect.h"
tomhudson@google.com2f68e762012-07-17 18:43:21 +000011#include "effects/GrTextureDomainEffect.h"
epoger@google.comec3ed6a2011-07-28 14:26:00 +000012
reed@google.comac10a2d2010-12-22 21:39:39 +000013#include "GrContext.h"
14#include "GrTextContext.h"
15
robertphillips@google.come9c04692012-06-29 00:30:13 +000016#include "SkGrTexturePixelRef.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000017
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,
twiz@google.com58071162012-07-18 21:41:50 +000044 kShaderTextureIdx = 0,
45 kColorFilterTextureIdx = 1
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000046};
47
reed@google.comcde92112011-07-06 20:00:52 +000048
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000049#define MAX_BLUR_SIGMA 4.0f
50// FIXME: This value comes from from SkBlurMaskFilter.cpp.
51// Should probably be put in a common header someplace.
52#define MAX_BLUR_RADIUS SkIntToScalar(128)
53// This constant approximates the scaling done in the software path's
54// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
55// IMHO, it actually should be 1: we blur "less" than we should do
56// according to the CSS and canvas specs, simply because Safari does the same.
57// Firefox used to do the same too, until 4.0 where they fixed it. So at some
58// point we should probably get rid of these scaling constants and rebaseline
59// all the blur tests.
60#define BLUR_SIGMA_SCALE 0.6f
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000061// This constant represents the screen alignment criterion in texels for
62// requiring texture domain clamping to prevent color bleeding when drawing
63// a sub region of a larger source image.
64#define COLOR_BLEED_TOLERANCE SkFloatToScalar(0.001f)
bsalomon@google.com06cd7322012-03-30 18:45:35 +000065
66#define DO_DEFERRED_CLEAR \
67 do { \
68 if (fNeedClear) { \
bsalomon@google.com730ca3b2012-04-03 13:25:12 +000069 this->clear(0x0); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000070 fNeedClear = false; \
71 } \
72 } while (false) \
73
reed@google.comac10a2d2010-12-22 21:39:39 +000074///////////////////////////////////////////////////////////////////////////////
75
reed@google.comb0a34d82012-07-11 19:57:55 +000076#define CHECK_FOR_NODRAW_ANNOTATION(paint) \
77 do { if (paint.isNoDrawAnnotation()) { return; } } while (0)
78
79///////////////////////////////////////////////////////////////////////////////
80
81
bsalomon@google.com84405e02012-03-05 19:57:21 +000082class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable {
83public:
84 SkAutoCachedTexture() { }
85 SkAutoCachedTexture(SkGpuDevice* device,
86 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +000087 const GrTextureParams* params,
bsalomon@google.com84405e02012-03-05 19:57:21 +000088 GrTexture** texture) {
89 GrAssert(texture);
bsalomon@google.comb8670992012-07-25 21:27:09 +000090 *texture = this->set(device, bitmap, params);
reed@google.comac10a2d2010-12-22 21:39:39 +000091 }
reed@google.comac10a2d2010-12-22 21:39:39 +000092
bsalomon@google.com84405e02012-03-05 19:57:21 +000093 ~SkAutoCachedTexture() {
94 if (fTex.texture()) {
rileya@google.com24f3ad12012-07-18 21:47:40 +000095 GrUnlockCachedBitmapTexture(fDevice->context(), fTex);
bsalomon@google.com84405e02012-03-05 19:57:21 +000096 }
reed@google.comac10a2d2010-12-22 21:39:39 +000097 }
bsalomon@google.com84405e02012-03-05 19:57:21 +000098
99 GrTexture* set(SkGpuDevice* device,
100 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000101 const GrTextureParams* params) {
bsalomon@google.com84405e02012-03-05 19:57:21 +0000102 if (fTex.texture()) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000103 GrUnlockCachedBitmapTexture(fDevice->context(), fTex);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000104 }
105 fDevice = device;
106 GrTexture* texture = (GrTexture*)bitmap.getTexture();
107 if (texture) {
108 // return the native texture
109 fTex.reset();
110 } else {
111 // look it up in our cache
bsalomon@google.comb8670992012-07-25 21:27:09 +0000112 fTex = GrLockCachedBitmapTexture(device->context(), bitmap, params);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000113 texture = fTex.texture();
114 }
115 return texture;
116 }
117
118private:
119 SkGpuDevice* fDevice;
120 GrContext::TextureCacheEntry fTex;
121};
reed@google.comac10a2d2010-12-22 21:39:39 +0000122
123///////////////////////////////////////////////////////////////////////////////
124
125bool gDoTraceDraw;
126
127struct GrSkDrawProcs : public SkDrawProcs {
128public:
129 GrContext* fContext;
130 GrTextContext* fTextContext;
131 GrFontScaler* fFontScaler; // cached in the skia glyphcache
132};
133
134///////////////////////////////////////////////////////////////////////////////
135
reed@google.comaf951c92011-06-16 19:10:39 +0000136static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
137 switch (config) {
138 case kAlpha_8_GrPixelConfig:
139 *isOpaque = false;
140 return SkBitmap::kA8_Config;
141 case kRGB_565_GrPixelConfig:
142 *isOpaque = true;
143 return SkBitmap::kRGB_565_Config;
144 case kRGBA_4444_GrPixelConfig:
145 *isOpaque = false;
146 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000147 case kSkia8888_PM_GrPixelConfig:
148 // we don't currently have a way of knowing whether
149 // a 8888 is opaque based on the config.
150 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000151 return SkBitmap::kARGB_8888_Config;
152 default:
153 *isOpaque = false;
154 return SkBitmap::kNo_Config;
155 }
156}
reed@google.comac10a2d2010-12-22 21:39:39 +0000157
reed@google.comaf951c92011-06-16 19:10:39 +0000158static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000159 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000160
161 bool isOpaque;
162 SkBitmap bitmap;
163 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
164 renderTarget->width(), renderTarget->height());
165 bitmap.setIsOpaque(isOpaque);
166 return bitmap;
167}
168
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000169SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000170: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000171 this->initFromRenderTarget(context, texture->asRenderTarget());
172}
173
reed@google.comaf951c92011-06-16 19:10:39 +0000174SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000175: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000176 this->initFromRenderTarget(context, renderTarget);
177}
178
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000179void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000180 GrRenderTarget* renderTarget) {
reed@google.comaf951c92011-06-16 19:10:39 +0000181 fNeedPrepareRenderTarget = false;
182 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000183
reed@google.comaf951c92011-06-16 19:10:39 +0000184 fContext = context;
185 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000186
reed@google.comaf951c92011-06-16 19:10:39 +0000187 fTexture = NULL;
188 fRenderTarget = NULL;
189 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000190
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000191 GrAssert(NULL != renderTarget);
192 fRenderTarget = renderTarget;
193 fRenderTarget->ref();
194 // if this RT is also a texture, hold a ref on it
195 fTexture = fRenderTarget->asTexture();
196 SkSafeRef(fTexture);
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000197
198 // Create a pixel ref for the underlying SkBitmap. We prefer a texture pixel
199 // ref to a render target pixel reft. The pixel ref may get ref'ed outside
200 // the device via accessBitmap. This external ref may outlive the device.
201 // Since textures own their render targets (but not vice-versa) we
202 // are ensuring that both objects will live as long as the pixel ref.
203 SkPixelRef* pr;
204 if (fTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000205 pr = SkNEW_ARGS(SkGrTexturePixelRef, (fTexture));
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000206 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000207 pr = SkNEW_ARGS(SkGrRenderTargetPixelRef, (fRenderTarget));
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000208 }
reed@google.comaf951c92011-06-16 19:10:39 +0000209 this->setPixelRef(pr, 0)->unref();
210}
211
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000212SkGpuDevice::SkGpuDevice(GrContext* context,
213 SkBitmap::Config config,
214 int width,
215 int height)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000216 : SkDevice(config, width, height, false /*isOpaque*/) {
217
reed@google.comac10a2d2010-12-22 21:39:39 +0000218 fNeedPrepareRenderTarget = false;
219 fDrawProcs = NULL;
220
reed@google.com7b201d22011-01-11 18:59:23 +0000221 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000222 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000223
reed@google.comac10a2d2010-12-22 21:39:39 +0000224 fTexture = NULL;
225 fRenderTarget = NULL;
226 fNeedClear = false;
227
reed@google.comaf951c92011-06-16 19:10:39 +0000228 if (config != SkBitmap::kRGB_565_Config) {
229 config = SkBitmap::kARGB_8888_Config;
230 }
231 SkBitmap bm;
232 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000233
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000234 GrTextureDesc desc;
235 desc.fFlags = kRenderTarget_GrTextureFlagBit;
236 desc.fWidth = width;
237 desc.fHeight = height;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000238 desc.fConfig = SkBitmapConfig2GrPixelConfig(bm.config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000239
reed@google.comaf951c92011-06-16 19:10:39 +0000240 fTexture = fContext->createUncachedTexture(desc, NULL, 0);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000241
reed@google.comaf951c92011-06-16 19:10:39 +0000242 if (NULL != fTexture) {
243 fRenderTarget = fTexture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000244 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000245
reed@google.comaf951c92011-06-16 19:10:39 +0000246 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000247
reed@google.comaf951c92011-06-16 19:10:39 +0000248 // wrap the bitmap with a pixelref to expose our texture
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000249 SkGrTexturePixelRef* pr = SkNEW_ARGS(SkGrTexturePixelRef, (fTexture));
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000250 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000251 } else {
252 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
253 width, height);
254 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000255 }
256}
257
258SkGpuDevice::~SkGpuDevice() {
259 if (fDrawProcs) {
260 delete fDrawProcs;
261 }
262
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000263 // The SkGpuDevice gives the context the render target (e.g., in gainFocus)
264 // This call gives the context a chance to relinquish it
265 fContext->setRenderTarget(NULL);
266
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000267 SkSafeUnref(fTexture);
268 SkSafeUnref(fRenderTarget);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000269 if (fCache.texture()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000270 GrAssert(NULL != fTexture);
271 GrAssert(fRenderTarget == fTexture->asRenderTarget());
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000272 fContext->unlockTexture(fCache);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000273 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000274 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000275}
276
reed@google.comac10a2d2010-12-22 21:39:39 +0000277///////////////////////////////////////////////////////////////////////////////
278
279void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000280 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000281 fContext->setRenderTarget(fRenderTarget);
282 fContext->flush(true);
283 fNeedPrepareRenderTarget = true;
284}
285
286///////////////////////////////////////////////////////////////////////////////
287
bsalomon@google.comc4364992011-11-07 15:54:49 +0000288namespace {
289GrPixelConfig config8888_to_gr_config(SkCanvas::Config8888 config8888) {
290 switch (config8888) {
291 case SkCanvas::kNative_Premul_Config8888:
292 return kSkia8888_PM_GrPixelConfig;
293 case SkCanvas::kNative_Unpremul_Config8888:
294 return kSkia8888_UPM_GrPixelConfig;
295 case SkCanvas::kBGRA_Premul_Config8888:
296 return kBGRA_8888_PM_GrPixelConfig;
297 case SkCanvas::kBGRA_Unpremul_Config8888:
298 return kBGRA_8888_UPM_GrPixelConfig;
299 case SkCanvas::kRGBA_Premul_Config8888:
300 return kRGBA_8888_PM_GrPixelConfig;
301 case SkCanvas::kRGBA_Unpremul_Config8888:
302 return kRGBA_8888_UPM_GrPixelConfig;
303 default:
304 GrCrash("Unexpected Config8888.");
305 return kSkia8888_PM_GrPixelConfig;
306 }
307}
308}
309
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000310bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
311 int x, int y,
312 SkCanvas::Config8888 config8888) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000313 DO_DEFERRED_CLEAR;
bsalomon@google.com910267d2011-11-02 20:06:25 +0000314 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
315 SkASSERT(!bitmap.isNull());
316 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000317
bsalomon@google.com910267d2011-11-02 20:06:25 +0000318 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000319 GrPixelConfig config;
320 config = config8888_to_gr_config(config8888);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000321 return fContext->readRenderTargetPixels(fRenderTarget,
322 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000323 bitmap.width(),
324 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000325 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000326 bitmap.getPixels(),
327 bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000328}
329
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000330void SkGpuDevice::writePixels(const SkBitmap& bitmap, int x, int y,
331 SkCanvas::Config8888 config8888) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000332 SkAutoLockPixels alp(bitmap);
333 if (!bitmap.readyToDraw()) {
334 return;
335 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000336
337 GrPixelConfig config;
338 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
339 config = config8888_to_gr_config(config8888);
340 } else {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000341 config= SkBitmapConfig2GrPixelConfig(bitmap.config());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000342 }
343
bsalomon@google.com6f379512011-11-16 20:36:03 +0000344 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
345 config, bitmap.getPixels(), bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000346}
347
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000348void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
349 INHERITED::onAttachToCanvas(canvas);
350
351 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000352 fClipData.fClipStack = canvas->getClipStack();
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000353}
354
355void SkGpuDevice::onDetachFromCanvas() {
356 INHERITED::onDetachFromCanvas();
357
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000358 fClipData.fClipStack = NULL;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000359}
360
robertphillips@google.com607fe072012-07-24 13:54:00 +0000361#ifdef SK_DEBUG
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000362static void check_bounds(const GrClipData& clipData,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000363 const SkRegion& clipRegion,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000364 int renderTargetWidth,
365 int renderTargetHeight) {
366
robertphillips@google.com7b112892012-07-31 15:18:21 +0000367 SkIRect devBound;
368
369 devBound.setLTRB(0, 0, renderTargetWidth, renderTargetHeight);
370
robertphillips@google.com607fe072012-07-24 13:54:00 +0000371 SkClipStack::BoundsType boundType;
robertphillips@google.com7b112892012-07-31 15:18:21 +0000372 SkRect canvTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000373
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000374 clipData.fClipStack->getBounds(&canvTemp, &boundType);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000375 if (SkClipStack::kNormal_BoundsType == boundType) {
robertphillips@google.com7b112892012-07-31 15:18:21 +0000376 SkIRect devTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000377
robertphillips@google.com7b112892012-07-31 15:18:21 +0000378 canvTemp.roundOut(&devTemp);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000379
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000380 devTemp.offset(-clipData.fOrigin.fX, -clipData.fOrigin.fY);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000381
robertphillips@google.com7b112892012-07-31 15:18:21 +0000382 if (!devBound.intersect(devTemp)) {
383 devBound.setEmpty();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000384 }
385 }
386
robertphillips@google.com7b112892012-07-31 15:18:21 +0000387// GrAssert(devBound.contains(clipRegion.getBounds()));
robertphillips@google.com607fe072012-07-24 13:54:00 +0000388}
389#endif
390
reed@google.comac10a2d2010-12-22 21:39:39 +0000391///////////////////////////////////////////////////////////////////////////////
392
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000393static void set_matrix_and_clip(GrContext* context, const SkMatrix& matrix,
394 GrClipData& clipData,
395 const SkRegion& clipRegion,
396 const SkIPoint& origin,
397 int renderTargetWidth, int renderTargetHeight) {
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000398 context->setMatrix(matrix);
reed@google.comac10a2d2010-12-22 21:39:39 +0000399
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000400 clipData.fOrigin = origin;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000401
402#ifdef SK_DEBUG
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000403 check_bounds(clipData, clipRegion,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000404 renderTargetWidth, renderTargetHeight);
405#endif
406
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000407 context->setClip(&clipData);
reed@google.comac10a2d2010-12-22 21:39:39 +0000408}
409
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000410// call this every draw call, to ensure that the context reflects our state,
reed@google.comac10a2d2010-12-22 21:39:39 +0000411// and not the state from some other canvas/device
412void SkGpuDevice::prepareRenderTarget(const SkDraw& draw) {
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000413 GrAssert(NULL != fClipData.fClipStack);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000414
reed@google.comac10a2d2010-12-22 21:39:39 +0000415 if (fNeedPrepareRenderTarget ||
bsalomon@google.com5782d712011-01-21 21:03:59 +0000416 fContext->getRenderTarget() != fRenderTarget) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000417
418 fContext->setRenderTarget(fRenderTarget);
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000419 SkASSERT(draw.fClipStack && draw.fClipStack == fClipData.fClipStack);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000420
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000421 set_matrix_and_clip(fContext, *draw.fMatrix,
422 fClipData, *draw.fClip, this->getOrigin(),
423 fRenderTarget->width(), fRenderTarget->height());
reed@google.comac10a2d2010-12-22 21:39:39 +0000424 fNeedPrepareRenderTarget = false;
425 }
426}
427
tomhudson@google.com8a0b0292011-09-13 14:41:06 +0000428void SkGpuDevice::setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
429 const SkClipStack& clipStack) {
430 this->INHERITED::setMatrixClip(matrix, clip, clipStack);
431 // We don't need to set them now because the context may not reflect this device.
bsalomon@google.coma7bf6e22011-04-11 19:20:46 +0000432 fNeedPrepareRenderTarget = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000433}
434
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000435void SkGpuDevice::gainFocus(const SkMatrix& matrix, const SkRegion& clip) {
436
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000437 GrAssert(NULL != fClipData.fClipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000438
reed@google.comac10a2d2010-12-22 21:39:39 +0000439 fContext->setRenderTarget(fRenderTarget);
440
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000441 this->INHERITED::gainFocus(matrix, clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000442
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000443 set_matrix_and_clip(fContext, matrix, fClipData, clip, this->getOrigin(),
444 fRenderTarget->width(), fRenderTarget->height());
reed@google.comac10a2d2010-12-22 21:39:39 +0000445
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000446 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000447}
448
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000449SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000450 DO_DEFERRED_CLEAR;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000451 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000452}
453
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000454bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000455 if (NULL != fTexture) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000456 paint->textureSampler(kBitmapTextureIdx)->setCustomStage(
457 SkNEW_ARGS(GrSingleTextureEffect, (fTexture)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000458 return true;
459 }
460 return false;
461}
462
463///////////////////////////////////////////////////////////////////////////////
464
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000465SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
466SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
467SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
468SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
469SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
470 shader_type_mismatch);
rileya@google.com3e332582012-07-03 13:43:35 +0000471SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5,
472 shader_type_mismatch);
rileya@google.com22e57f92012-07-19 15:16:19 +0000473SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch);
474SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000475
bsalomon@google.com84405e02012-03-05 19:57:21 +0000476namespace {
477
478// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
479// justAlpha indicates that skPaint's alpha should be used rather than the color
480// Callers may subsequently modify the GrPaint. Setting constantColor indicates
481// that the final paint will draw the same color at every pixel. This allows
482// an optimization where the the color filter can be applied to the skPaint's
twiz@google.com58071162012-07-18 21:41:50 +0000483// color once while converting to GrPaint and then ignored.
484inline bool skPaint2GrPaintNoShader(SkGpuDevice* dev,
485 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000486 bool justAlpha,
487 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000488 SkGpuDevice::SkAutoCachedTexture* act,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000489 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000490
491 grPaint->fDither = skPaint.isDither();
492 grPaint->fAntiAlias = skPaint.isAntiAlias();
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000493 grPaint->fCoverage = 0xFF;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000494
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000495 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
496 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000497
498 SkXfermode* mode = skPaint.getXfermode();
499 if (mode) {
500 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000501 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000502#if 0
503 return false;
504#endif
505 }
506 }
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000507 grPaint->fSrcBlendCoeff = sk_blend_to_grblend(sm);
508 grPaint->fDstBlendCoeff = sk_blend_to_grblend(dm);
509
bsalomon@google.com5782d712011-01-21 21:03:59 +0000510 if (justAlpha) {
511 uint8_t alpha = skPaint.getAlpha();
512 grPaint->fColor = GrColorPackRGBA(alpha, alpha, alpha, alpha);
Scroggod757df22011-05-16 13:11:16 +0000513 // justAlpha is currently set to true only if there is a texture,
514 // so constantColor should not also be true.
515 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000516 } else {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000517 grPaint->fColor = SkColor2GrColor(skPaint.getColor());
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000518 GrAssert(!grPaint->isTextureStageEnabled(kShaderTextureIdx));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000519 }
Scroggo97c88c22011-05-11 14:05:25 +0000520 SkColorFilter* colorFilter = skPaint.getColorFilter();
521 SkColor color;
522 SkXfermode::Mode filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000523 SkScalar matrix[20];
twiz@google.com58071162012-07-18 21:41:50 +0000524 SkBitmap colorTransformTable;
Scroggo97c88c22011-05-11 14:05:25 +0000525 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000526 grPaint->fColorMatrixEnabled = false;
Scroggod757df22011-05-16 13:11:16 +0000527 if (!constantColor) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000528 grPaint->fColorFilterColor = SkColor2GrColor(color);
Scroggod757df22011-05-16 13:11:16 +0000529 grPaint->fColorFilterXfermode = filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000530 } else {
531 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
rileya@google.com24f3ad12012-07-18 21:47:40 +0000532 grPaint->fColor = SkColor2GrColor(filtered);
senorblanco@chromium.orgb3c20fa2012-01-03 21:20:19 +0000533 grPaint->resetColorFilter();
Scroggod757df22011-05-16 13:11:16 +0000534 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000535 } else if (colorFilter != NULL && colorFilter->asColorMatrix(matrix)) {
536 grPaint->fColorMatrixEnabled = true;
537 memcpy(grPaint->fColorMatrix, matrix, sizeof(matrix));
538 grPaint->fColorFilterXfermode = SkXfermode::kDst_Mode;
twiz@google.com58071162012-07-18 21:41:50 +0000539 } else if (colorFilter != NULL && colorFilter->asComponentTable(
540 &colorTransformTable)) {
541 grPaint->resetColorFilter();
542
543 GrSamplerState* colorSampler = grPaint->textureSampler(kColorFilterTextureIdx);
bsalomon@google.comb8670992012-07-25 21:27:09 +0000544 GrTexture* texture = act->set(dev, colorTransformTable, colorSampler->textureParams());
twiz@google.com58071162012-07-18 21:41:50 +0000545
bsalomon@google.comb8670992012-07-25 21:27:09 +0000546 colorSampler->reset();
bsalomon@google.comcbd0ad92012-07-20 15:09:31 +0000547 colorSampler->setCustomStage(SkNEW_ARGS(GrColorTableEffect, (texture)))->unref();
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000548 } else {
549 grPaint->resetColorFilter();
Scroggo97c88c22011-05-11 14:05:25 +0000550 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000551 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000552}
553
bsalomon@google.com84405e02012-03-05 19:57:21 +0000554// This function is similar to skPaint2GrPaintNoShader but also converts
555// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
556// be used is set on grPaint and returned in param act. constantColor has the
557// same meaning as in skPaint2GrPaintNoShader.
558inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
559 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000560 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000561 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxTextures],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000562 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000563 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000564 if (NULL == shader) {
twiz@google.com58071162012-07-18 21:41:50 +0000565 return skPaint2GrPaintNoShader(dev,
566 skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000567 false,
568 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000569 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000570 grPaint);
twiz@google.com58071162012-07-18 21:41:50 +0000571 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false,
572 &textures[kColorFilterTextureIdx], grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000573 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000574 }
575
rileya@google.com91f319c2012-07-25 17:18:31 +0000576 GrSamplerState* sampler = grPaint->textureSampler(kShaderTextureIdx);
577 GrCustomStage* stage = shader->asNewCustomStage(dev->context(), sampler);
578
579 if (NULL != stage) {
580 sampler->setCustomStage(stage)->unref();
581 SkMatrix localM;
582 if (shader->getLocalMatrix(&localM)) {
583 SkMatrix inverse;
584 if (localM.invert(&inverse)) {
585 sampler->matrix()->preConcat(inverse);
586 }
587 }
588 return true;
589 }
590
reed@google.comac10a2d2010-12-22 21:39:39 +0000591 SkBitmap bitmap;
rileya@google.com91f319c2012-07-25 17:18:31 +0000592 SkMatrix* matrix = sampler->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000593 SkShader::TileMode tileModes[2];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000594 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
rileya@google.com91f319c2012-07-25 17:18:31 +0000595 tileModes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000596
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000597 if (SkShader::kNone_BitmapType == bmptype) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000598 SkShader::GradientInfo info;
599 SkColor color;
600
601 info.fColors = &color;
602 info.fColorOffsets = NULL;
603 info.fColorCount = 1;
604 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
605 SkPaint copy(skPaint);
606 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000607 // modulate the paint alpha by the shader's solid color alpha
608 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
609 copy.setColor(SkColorSetA(color, newA));
twiz@google.com58071162012-07-18 21:41:50 +0000610 return skPaint2GrPaintNoShader(dev,
611 copy,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000612 false,
613 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000614 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000615 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000616 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000617 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000618 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000619
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000620 // Must set wrap and filter on the sampler before requesting a texture.
bsalomon@google.comb8670992012-07-25 21:27:09 +0000621 sampler->textureParams()->reset(tileModes, skPaint.isFilterBitmap());
622 GrTexture* texture = textures[kShaderTextureIdx].set(dev, bitmap, sampler->textureParams());
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000623
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000624 if (NULL == texture) {
625 SkDebugf("Couldn't convert bitmap to texture.\n");
626 return false;
627 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000628
rileya@google.com91f319c2012-07-25 17:18:31 +0000629 sampler->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000630
reed@google.comac10a2d2010-12-22 21:39:39 +0000631 // since our texture coords will be in local space, we wack the texture
632 // matrix to map them back into 0...1 before we load it
633 SkMatrix localM;
634 if (shader->getLocalMatrix(&localM)) {
635 SkMatrix inverse;
636 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000637 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000638 }
639 }
640 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000641 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
642 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000643 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000644 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000645
646 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000647}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000648}
reed@google.comac10a2d2010-12-22 21:39:39 +0000649
650///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com398109c2011-04-14 18:40:27 +0000651void SkGpuDevice::clear(SkColor color) {
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000652 fContext->clear(NULL, color, fRenderTarget);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000653}
654
reed@google.comac10a2d2010-12-22 21:39:39 +0000655void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
656 CHECK_SHOULD_DRAW(draw);
657
bsalomon@google.com5782d712011-01-21 21:03:59 +0000658 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000659 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000660 if (!skPaint2GrPaintShader(this,
661 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000662 true,
twiz@google.com58071162012-07-18 21:41:50 +0000663 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000664 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000665 return;
666 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000667
668 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000669}
670
671// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000672static const GrPrimitiveType gPointMode2PrimtiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +0000673 kPoints_GrPrimitiveType,
674 kLines_GrPrimitiveType,
675 kLineStrip_GrPrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000676};
677
678void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000679 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000680 CHECK_SHOULD_DRAW(draw);
681
682 SkScalar width = paint.getStrokeWidth();
683 if (width < 0) {
684 return;
685 }
686
bsalomon@google.comb702c0f2012-06-18 12:52:56 +0000687 // we only handle hairlines and paints without path effects or mask filters,
688 // else we let the SkDraw call our drawPath()
689 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000690 draw.drawPoints(mode, count, pts, paint, true);
691 return;
692 }
693
bsalomon@google.com5782d712011-01-21 21:03:59 +0000694 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000695 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000696 if (!skPaint2GrPaintShader(this,
697 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000698 true,
twiz@google.com58071162012-07-18 21:41:50 +0000699 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000700 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000701 return;
702 }
703
bsalomon@google.com5782d712011-01-21 21:03:59 +0000704 fContext->drawVertices(grPaint,
705 gPointMode2PrimtiveType[mode],
706 count,
707 (GrPoint*)pts,
708 NULL,
709 NULL,
710 NULL,
711 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000712}
713
reed@google.comc9aa5872011-04-05 21:05:37 +0000714///////////////////////////////////////////////////////////////////////////////
715
reed@google.comac10a2d2010-12-22 21:39:39 +0000716void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
717 const SkPaint& paint) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000718 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000719 CHECK_SHOULD_DRAW(draw);
720
bungeman@google.com79bd8772011-07-18 15:34:08 +0000721 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000722 SkScalar width = paint.getStrokeWidth();
723
724 /*
725 We have special code for hairline strokes, miter-strokes, and fills.
726 Anything else we just call our path code.
727 */
728 bool usePath = doStroke && width > 0 &&
729 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000730 // another two reasons we might need to call drawPath...
731 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000732 usePath = true;
733 }
reed@google.com67db6642011-05-26 11:46:35 +0000734 // until we aa rotated rects...
735 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
736 usePath = true;
737 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000738 // small miter limit means right angles show bevel...
739 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
740 paint.getStrokeMiter() < SK_ScalarSqrt2)
741 {
742 usePath = true;
743 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000744 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000745 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
746 usePath = true;
747 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000748
749 if (usePath) {
750 SkPath path;
751 path.addRect(rect);
752 this->drawPath(draw, path, paint, NULL, true);
753 return;
754 }
755
756 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000757 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000758 if (!skPaint2GrPaintShader(this,
759 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000760 true,
twiz@google.com58071162012-07-18 21:41:50 +0000761 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000762 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000763 return;
764 }
reed@google.com20efde72011-05-09 17:00:02 +0000765 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000766}
767
reed@google.com69302852011-02-16 18:08:07 +0000768#include "SkMaskFilter.h"
769#include "SkBounder.h"
770
bsalomon@google.com85003222012-03-28 14:44:37 +0000771///////////////////////////////////////////////////////////////////////////////
772
773// helpers for applying mask filters
774namespace {
775
776GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000777 switch (fillType) {
778 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000779 return kWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000780 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000781 return kEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000782 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000783 return kInverseWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000784 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000785 return kInverseEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000786 default:
787 SkDebugf("Unsupported path fill type\n");
bsalomon@google.com47059542012-06-06 20:51:20 +0000788 return kHairLine_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000789 }
790}
791
bsalomon@google.com85003222012-03-28 14:44:37 +0000792// We prefer to blur small rect with small radius via CPU.
793#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
794#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
795inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
796 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
797 rect.height() <= MIN_GPU_BLUR_SIZE &&
798 radius <= MIN_GPU_BLUR_RADIUS) {
799 return true;
800 }
801 return false;
802}
803
804bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
805 SkMaskFilter* filter, const SkMatrix& matrix,
806 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000807 GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000808#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000809 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000810#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000811 SkMaskFilter::BlurInfo info;
812 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000813 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000814 return false;
815 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000816 SkScalar radius = info.fIgnoreTransform ? info.fRadius
817 : matrix.mapRadius(info.fRadius);
818 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000819 if (radius <= 0) {
820 return false;
821 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000822
823 SkRect srcRect = path.getBounds();
824 if (shouldDrawBlurWithCPU(srcRect, radius)) {
825 return false;
826 }
827
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000828 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000829 float sigma3 = sigma * 3.0f;
830
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000831 SkRect clipRect;
832 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000833
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000834 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000835 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
836 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000837 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000838 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000839 SkIRect finalIRect;
840 finalRect.roundOut(&finalIRect);
841 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000842 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000843 }
844 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000845 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000846 }
847 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000848 srcRect.offset(offset);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000849 GrTextureDesc desc;
850 desc.fFlags = kRenderTarget_GrTextureFlagBit;
851 desc.fWidth = SkScalarCeilToInt(srcRect.width());
852 desc.fHeight = SkScalarCeilToInt(srcRect.height());
853 // We actually only need A8, but it often isn't supported as a
854 // render target so default to RGBA_8888
855 desc.fConfig = kRGBA_8888_PM_GrPixelConfig;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000856
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000857 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
858 desc.fConfig = kAlpha_8_GrPixelConfig;
859 }
860
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000861 GrAutoScratchTexture pathEntry(context, desc);
862 GrTexture* pathTexture = pathEntry.texture();
863 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000864 return false;
865 }
866 GrRenderTarget* oldRenderTarget = context->getRenderTarget();
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000867 // Once this code moves into GrContext, this should be changed to use
868 // an AutoClipRestore.
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000869 const GrClipData* oldClipData = context->getClip();
870
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000871 context->setRenderTarget(pathTexture->asRenderTarget());
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000872
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000873 SkClipStack newClipStack(srcRect);
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000874 GrClipData newClipData;
875 newClipData.fClipStack = &newClipStack;
876 context->setClip(&newClipData);
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000877
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000878 context->clear(NULL, 0);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000879 GrPaint tempPaint;
880 tempPaint.reset();
881
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000882 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000883 tempPaint.fAntiAlias = grp->fAntiAlias;
884 if (tempPaint.fAntiAlias) {
885 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
886 // blend coeff of zero requires dual source blending support in order
887 // to properly blend partially covered pixels. This means the AA
888 // code path may not be taken. So we use a dst blend coeff of ISA. We
889 // could special case AA draws to a dst surface with known alpha=0 to
890 // use a zero dst coeff when dual source blending isn't available.
bsalomon@google.com47059542012-06-06 20:51:20 +0000891 tempPaint.fSrcBlendCoeff = kOne_GrBlendCoeff;
892 tempPaint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000893 }
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000894 // Draw hard shadow to pathTexture with path topleft at origin 0,0.
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000895 context->drawPath(tempPaint, path, pathFillType, &offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000896
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000897 // If we're doing a normal blur, we can clobber the pathTexture in the
898 // gaussianBlur. Otherwise, we need to save it for later compositing.
899 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +0000900 SkAutoTUnref<GrTexture> blurTexture(context->gaussianBlur(
901 pathTexture, isNormalBlur, srcRect, sigma, sigma));
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000902
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000903 if (!isNormalBlur) {
904 GrPaint paint;
905 paint.reset();
bsalomon@google.comb8670992012-07-25 21:27:09 +0000906 paint.textureSampler(0)->textureParams()->setClampNoFilter();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000907 paint.textureSampler(0)->matrix()->setIDiv(pathTexture->width(),
908 pathTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000909 // Blend pathTexture over blurTexture.
910 context->setRenderTarget(blurTexture->asRenderTarget());
tomhudson@google.com1e8f0162012-07-20 16:25:18 +0000911 paint.textureSampler(0)->setCustomStage(SkNEW_ARGS
912 (GrSingleTextureEffect, (pathTexture)))->unref();
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000913 if (SkMaskFilter::kInner_BlurType == blurType) {
914 // inner: dst = dst * src
bsalomon@google.com47059542012-06-06 20:51:20 +0000915 paint.fSrcBlendCoeff = kDC_GrBlendCoeff;
916 paint.fDstBlendCoeff = kZero_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000917 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
918 // solid: dst = src + dst - src * dst
919 // = (1 - dst) * src + 1 * dst
bsalomon@google.com47059542012-06-06 20:51:20 +0000920 paint.fSrcBlendCoeff = kIDC_GrBlendCoeff;
921 paint.fDstBlendCoeff = kOne_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000922 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
923 // outer: dst = dst * (1 - src)
924 // = 0 * src + (1 - src) * dst
bsalomon@google.com47059542012-06-06 20:51:20 +0000925 paint.fSrcBlendCoeff = kZero_GrBlendCoeff;
926 paint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000927 }
928 context->drawRect(paint, srcRect);
929 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000930 context->setRenderTarget(oldRenderTarget);
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000931 context->setClip(oldClipData);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000932
bsalomon@google.come3d32162012-07-20 13:37:06 +0000933 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
934 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000935 }
936
937 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
938 // we assume the last mask index is available for use
tomhudson@google.comf13f5882012-06-25 17:27:28 +0000939 GrAssert(!grp->isMaskStageEnabled(MASK_IDX));
bsalomon@google.com97912912011-12-06 16:30:36 +0000940 grp->maskSampler(MASK_IDX)->reset();
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000941 grp->maskSampler(MASK_IDX)->setCustomStage(
942 SkNEW_ARGS(GrSingleTextureEffect, (blurTexture)))->unref();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000943 grp->maskSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
944 -finalRect.fTop);
945 grp->maskSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
946 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000947 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000948 return true;
949}
950
bsalomon@google.com85003222012-03-28 14:44:37 +0000951bool drawWithMaskFilter(GrContext* context, const SkPath& path,
952 SkMaskFilter* filter, const SkMatrix& matrix,
953 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000954 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000955 SkMask srcM, dstM;
956
957 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +0000958 SkMask::kComputeBoundsAndRenderImage_CreateMode,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000959 style)) {
reed@google.com69302852011-02-16 18:08:07 +0000960 return false;
961 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000962 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000963
964 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
965 return false;
966 }
967 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000968 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000969
970 if (clip.quickReject(dstM.fBounds)) {
971 return false;
972 }
973 if (bounder && !bounder->doIRect(dstM.fBounds)) {
974 return false;
975 }
976
977 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
978 // the current clip (and identity matrix) and grpaint settings
979
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000980 GrContext::AutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +0000981
bsalomon@google.come3d32162012-07-20 13:37:06 +0000982 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
983 return false;
984 }
985
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000986 GrTextureDesc desc;
987 desc.fWidth = dstM.fBounds.width();
988 desc.fHeight = dstM.fBounds.height();
989 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +0000990
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000991 GrAutoScratchTexture ast(context, desc);
992 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000993
reed@google.com69302852011-02-16 18:08:07 +0000994 if (NULL == texture) {
995 return false;
996 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000997 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000998 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +0000999
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001000 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
1001 // we assume the last mask index is available for use
tomhudson@google.comf13f5882012-06-25 17:27:28 +00001002 GrAssert(!grp->isMaskStageEnabled(MASK_IDX));
bsalomon@google.com97912912011-12-06 16:30:36 +00001003 grp->maskSampler(MASK_IDX)->reset();
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001004 grp->maskSampler(MASK_IDX)->setCustomStage(
1005 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001006 GrRect d;
1007 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +00001008 GrIntToScalar(dstM.fBounds.fTop),
1009 GrIntToScalar(dstM.fBounds.fRight),
1010 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001011
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001012 GrMatrix* m = grp->maskSampler(MASK_IDX)->matrix();
1013 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1014 -dstM.fBounds.fTop*SK_Scalar1);
1015 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001016 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +00001017 return true;
1018}
reed@google.com69302852011-02-16 18:08:07 +00001019
bsalomon@google.com85003222012-03-28 14:44:37 +00001020}
1021
1022///////////////////////////////////////////////////////////////////////////////
1023
reed@google.com0c219b62011-02-16 21:31:18 +00001024void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001025 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +00001026 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +00001027 CHECK_FOR_NODRAW_ANNOTATION(paint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001028 CHECK_SHOULD_DRAW(draw);
1029
reed@google.comfe626382011-09-21 13:50:35 +00001030 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001031
bsalomon@google.com5782d712011-01-21 21:03:59 +00001032 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001033 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001034 if (!skPaint2GrPaintShader(this,
1035 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001036 true,
twiz@google.com58071162012-07-18 21:41:50 +00001037 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001038 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001039 return;
1040 }
1041
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001042 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1043 // if we can, we draw lots faster (raster device does this same test)
1044 SkScalar hairlineCoverage;
1045 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
1046 doFill = false;
1047 grPaint.fCoverage = SkScalarRoundToInt(hairlineCoverage *
1048 grPaint.fCoverage);
1049 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001050
reed@google.comfe626382011-09-21 13:50:35 +00001051 // If we have a prematrix, apply it to the path, optimizing for the case
1052 // where the original path can in fact be modified in place (even though
1053 // its parameter type is const).
1054 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1055 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001056
1057 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001058 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001059
reed@google.come3445642011-02-16 23:20:39 +00001060 if (!pathIsMutable) {
1061 result = &tmpPath;
1062 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001063 }
reed@google.come3445642011-02-16 23:20:39 +00001064 // should I push prePathMatrix on our MV stack temporarily, instead
1065 // of applying it here? See SkDraw.cpp
1066 pathPtr->transform(*prePathMatrix, result);
1067 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001068 }
reed@google.com0c219b62011-02-16 21:31:18 +00001069 // at this point we're done with prePathMatrix
1070 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001071
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001072 if (paint.getPathEffect() ||
1073 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001074 // it is safe to use tmpPath here, even if we already used it for the
1075 // prepathmatrix, since getFillPath can take the same object for its
1076 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001077 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001078 pathPtr = &tmpPath;
1079 }
1080
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001081 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001082 // avoid possibly allocating a new path in transform if we can
1083 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1084
1085 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001086 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001087 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001088 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001089 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001090 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001091 &grPaint, pathFillType)) {
1092 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
1093 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001094 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001095 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001096 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001097 }
reed@google.com69302852011-02-16 18:08:07 +00001098 return;
1099 }
reed@google.com69302852011-02-16 18:08:07 +00001100
bsalomon@google.com47059542012-06-06 20:51:20 +00001101 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001102
reed@google.com0c219b62011-02-16 21:31:18 +00001103 if (doFill) {
1104 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001105 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001106 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001107 break;
1108 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001109 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001110 break;
1111 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001112 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001113 break;
1114 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001115 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001116 break;
1117 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001118 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001119 return;
1120 }
1121 }
1122
reed@google.com07f3ee12011-05-16 17:21:57 +00001123 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001124}
1125
bsalomon@google.comfb309512011-11-30 14:13:48 +00001126namespace {
1127
1128inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1129 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1130 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1131 return tilesX * tilesY;
1132}
1133
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001134inline int determine_tile_size(const SkBitmap& bitmap,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001135 const SkIRect* srcRectPtr,
1136 int maxTextureSize) {
1137 static const int kSmallTileSize = 1 << 10;
1138 if (maxTextureSize <= kSmallTileSize) {
1139 return maxTextureSize;
1140 }
1141
1142 size_t maxTexTotalTileSize;
1143 size_t smallTotalTileSize;
1144
1145 if (NULL == srcRectPtr) {
1146 int w = bitmap.width();
1147 int h = bitmap.height();
1148 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1149 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1150 } else {
1151 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1152 srcRectPtr->fTop,
1153 srcRectPtr->fRight,
1154 srcRectPtr->fBottom,
1155 maxTextureSize);
1156 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1157 srcRectPtr->fTop,
1158 srcRectPtr->fRight,
1159 srcRectPtr->fBottom,
1160 kSmallTileSize);
1161 }
1162 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1163 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1164
1165 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1166 return kSmallTileSize;
1167 } else {
1168 return maxTextureSize;
1169 }
1170}
1171}
1172
1173bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001174 const GrTextureParams& params,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001175 const SkIRect* srcRectPtr,
1176 int* tileSize) const {
1177 SkASSERT(NULL != tileSize);
1178
1179 // if bitmap is explictly texture backed then just use the texture
1180 if (NULL != bitmap.getTexture()) {
1181 return false;
1182 }
1183 // if it's larger than the max texture size, then we have no choice but
1184 // tiling
1185 const int maxTextureSize = fContext->getMaxTextureSize();
1186 if (bitmap.width() > maxTextureSize ||
1187 bitmap.height() > maxTextureSize) {
1188 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1189 return true;
1190 }
1191 // if we are going to have to draw the whole thing, then don't tile
1192 if (NULL == srcRectPtr) {
1193 return false;
1194 }
1195 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.comb8670992012-07-25 21:27:09 +00001196 if (this->isBitmapInTextureCache(bitmap, params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001197 return false;
1198 }
1199
1200 // At this point we know we could do the draw by uploading the entire bitmap
1201 // as a texture. However, if the texture would be large compared to the
1202 // cache size and we don't require most of it for this draw then tile to
1203 // reduce the amount of upload and cache spill.
1204
1205 // assumption here is that sw bitmap size is a good proxy for its size as
1206 // a texture
1207 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001208 size_t cacheSize;
1209 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001210 if (bmpSize < cacheSize / 2) {
1211 return false;
1212 }
1213
1214 SkFixed fracUsed =
1215 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1216 (srcRectPtr->height() << 16) / bitmap.height());
1217 if (fracUsed <= SK_FixedHalf) {
1218 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1219 return true;
1220 } else {
1221 return false;
1222 }
1223}
1224
reed@google.comac10a2d2010-12-22 21:39:39 +00001225void SkGpuDevice::drawBitmap(const SkDraw& draw,
1226 const SkBitmap& bitmap,
1227 const SkIRect* srcRectPtr,
1228 const SkMatrix& m,
1229 const SkPaint& paint) {
1230 CHECK_SHOULD_DRAW(draw);
1231
1232 SkIRect srcRect;
1233 if (NULL == srcRectPtr) {
1234 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1235 } else {
1236 srcRect = *srcRectPtr;
1237 }
1238
junov@google.comd935cfb2011-06-27 20:48:23 +00001239 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001240 // Convert the bitmap to a shader so that the rect can be drawn
1241 // through drawRect, which supports mask filters.
1242 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001243 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001244 if (srcRectPtr) {
1245 if (!bitmap.extractSubset(&tmp, srcRect)) {
1246 return; // extraction failed
1247 }
1248 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001249 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001250 }
1251 SkPaint paintWithTexture(paint);
1252 paintWithTexture.setShader(SkShader::CreateBitmapShader( *bitmapPtr,
1253 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001254 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001255 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001256
junov@google.com1d329782011-07-28 20:10:09 +00001257 // Transform 'm' needs to be concatenated to the draw matrix,
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001258 // rather than transforming the primitive directly, so that 'm' will
junov@google.com1d329782011-07-28 20:10:09 +00001259 // also affect the behavior of the mask filter.
1260 SkMatrix drawMatrix;
1261 drawMatrix.setConcat(*draw.fMatrix, m);
1262 SkDraw transformedDraw(draw);
1263 transformedDraw.fMatrix = &drawMatrix;
1264
1265 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1266
junov@google.comd935cfb2011-06-27 20:48:23 +00001267 return;
1268 }
1269
bsalomon@google.com5782d712011-01-21 21:03:59 +00001270 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001271 SkAutoCachedTexture colorLutTexture;
1272 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001273 return;
1274 }
bsalomon@google.comb8670992012-07-25 21:27:09 +00001275 GrTextureParams* params = grPaint.textureSampler(kBitmapTextureIdx)->textureParams();
1276 params->setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001277
bsalomon@google.comfb309512011-11-30 14:13:48 +00001278 int tileSize;
bsalomon@google.comb8670992012-07-25 21:27:09 +00001279 if (!this->shouldTileBitmap(bitmap, *params, srcRectPtr, &tileSize)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001280 // take the simple case
bsalomon@google.com5782d712011-01-21 21:03:59 +00001281 this->internalDrawBitmap(draw, bitmap, srcRect, m, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001282 return;
1283 }
1284
1285 // undo the translate done by SkCanvas
1286 int DX = SkMax32(0, srcRect.fLeft);
1287 int DY = SkMax32(0, srcRect.fTop);
1288 // compute clip bounds in local coordinates
1289 SkIRect clipRect;
1290 {
1291 SkRect r;
1292 r.set(draw.fClip->getBounds());
1293 SkMatrix matrix, inverse;
1294 matrix.setConcat(*draw.fMatrix, m);
1295 if (!matrix.invert(&inverse)) {
1296 return;
1297 }
1298 inverse.mapRect(&r);
1299 r.roundOut(&clipRect);
1300 // apply the canvas' translate to our local clip
1301 clipRect.offset(DX, DY);
1302 }
1303
bsalomon@google.comfb309512011-11-30 14:13:48 +00001304 int nx = bitmap.width() / tileSize;
1305 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001306 for (int x = 0; x <= nx; x++) {
1307 for (int y = 0; y <= ny; y++) {
1308 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001309 tileR.set(x * tileSize, y * tileSize,
1310 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001311 if (!SkIRect::Intersects(tileR, clipRect)) {
1312 continue;
1313 }
1314
1315 SkIRect srcR = tileR;
1316 if (!srcR.intersect(srcRect)) {
1317 continue;
1318 }
1319
1320 SkBitmap tmpB;
1321 if (bitmap.extractSubset(&tmpB, tileR)) {
1322 // now offset it to make it "local" to our tmp bitmap
1323 srcR.offset(-tileR.fLeft, -tileR.fTop);
1324
1325 SkMatrix tmpM(m);
1326 {
1327 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1328 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1329 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1330 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001331 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001332 }
1333 }
1334 }
1335}
1336
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001337namespace {
1338
1339bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1340 // detect pixel disalignment
1341 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1342 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
1343 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
1344 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1345 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1346 COLOR_BLEED_TOLERANCE &&
1347 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1348 COLOR_BLEED_TOLERANCE) {
1349 return true;
1350 }
1351 return false;
1352}
1353
1354bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1355 const SkMatrix& m) {
1356 // Only gets called if hasAlignedSamples returned false.
1357 // So we can assume that sampling is axis aligned but not texel aligned.
1358 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
1359 SkRect innerSrcRect(srcRect), innerTransformedRect,
1360 outerTransformedRect(transformedRect);
1361 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1362 m.mapRect(&innerTransformedRect, innerSrcRect);
1363
1364 // The gap between outerTransformedRect and innerTransformedRect
1365 // represents the projection of the source border area, which is
1366 // problematic for color bleeding. We must check whether any
1367 // destination pixels sample the border area.
1368 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1369 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1370 SkIRect outer, inner;
1371 outerTransformedRect.round(&outer);
1372 innerTransformedRect.round(&inner);
1373 // If the inner and outer rects round to the same result, it means the
1374 // border does not overlap any pixel centers. Yay!
1375 return inner != outer;
1376}
1377
1378} // unnamed namespace
1379
reed@google.comac10a2d2010-12-22 21:39:39 +00001380/*
1381 * This is called by drawBitmap(), which has to handle images that may be too
1382 * large to be represented by a single texture.
1383 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001384 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1385 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001386 */
1387void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1388 const SkBitmap& bitmap,
1389 const SkIRect& srcRect,
1390 const SkMatrix& m,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001391 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001392 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1393 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001394
reed@google.com9c49bc32011-07-07 13:42:37 +00001395 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001396 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001397 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001398 return;
1399 }
1400
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001401 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001402
bsalomon@google.comb8670992012-07-25 21:27:09 +00001403 sampler->textureParams()->setClamp();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001404 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001405
1406 GrTexture* texture;
bsalomon@google.comb8670992012-07-25 21:27:09 +00001407 SkAutoCachedTexture act(this, bitmap, sampler->textureParams(), &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001408 if (NULL == texture) {
1409 return;
1410 }
1411
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001412 grPaint->textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1413 (GrSingleTextureEffect, (texture)))->unref();
reed@google.com46799cd2011-02-22 20:56:26 +00001414
reed@google.com20efde72011-05-09 17:00:02 +00001415 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1416 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001417 GrRect paintRect;
bsalomon@google.com91832162012-03-08 19:53:02 +00001418 float wInv = 1.f / bitmap.width();
1419 float hInv = 1.f / bitmap.height();
1420 paintRect.setLTRB(SkFloatToScalar(srcRect.fLeft * wInv),
1421 SkFloatToScalar(srcRect.fTop * hInv),
1422 SkFloatToScalar(srcRect.fRight * wInv),
1423 SkFloatToScalar(srcRect.fBottom * hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001424
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001425 bool needsTextureDomain = false;
bsalomon@google.comb8670992012-07-25 21:27:09 +00001426 if (sampler->textureParams()->isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001427 // Need texture domain if drawing a sub rect.
bsalomon@google.comb8670992012-07-25 21:27:09 +00001428 needsTextureDomain = srcRect.width() < bitmap.width() || srcRect.height() < bitmap.height();
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001429 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1430 // sampling is axis-aligned
1431 GrRect floatSrcRect, transformedRect;
1432 floatSrcRect.set(srcRect);
1433 SkMatrix srcToDeviceMatrix(m);
1434 srcToDeviceMatrix.postConcat(*draw.fMatrix);
1435 srcToDeviceMatrix.mapRect(&transformedRect, floatSrcRect);
1436
1437 if (hasAlignedSamples(floatSrcRect, transformedRect)) {
1438 // Samples are texel-aligned, so filtering is futile
bsalomon@google.comb8670992012-07-25 21:27:09 +00001439 sampler->textureParams()->setBilerp(false);
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001440 needsTextureDomain = false;
1441 } else {
1442 needsTextureDomain = needsTextureDomain &&
1443 mayColorBleed(floatSrcRect, transformedRect, m);
1444 }
1445 }
1446 }
1447
1448 GrRect textureDomain = GrRect::MakeEmpty();
1449
1450 if (needsTextureDomain) {
1451 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001452 GrScalar left, top, right, bottom;
1453 if (srcRect.width() > 1) {
1454 GrScalar border = GR_ScalarHalf / bitmap.width();
1455 left = paintRect.left() + border;
1456 right = paintRect.right() - border;
1457 } else {
1458 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1459 }
1460 if (srcRect.height() > 1) {
1461 GrScalar border = GR_ScalarHalf / bitmap.height();
1462 top = paintRect.top() + border;
1463 bottom = paintRect.bottom() - border;
1464 } else {
1465 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1466 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001467 textureDomain.setLTRB(left, top, right, bottom);
tomhudson@google.com2f68e762012-07-17 18:43:21 +00001468 sampler->setCustomStage(SkNEW_ARGS(GrTextureDomainEffect,
1469 (texture,
1470 textureDomain)))->unref();
junov@google.com6acc9b32011-05-16 18:32:07 +00001471 }
1472
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001473 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001474}
1475
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001476namespace {
1477
1478void apply_custom_stage(GrContext* context,
1479 GrTexture* srcTexture,
1480 GrTexture* dstTexture,
1481 const GrRect& rect,
1482 GrCustomStage* stage) {
1483 SkASSERT(srcTexture && srcTexture->getContext() == context);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001484 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001485 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001486 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001487
1488 GrMatrix sampleM;
1489 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1490 GrPaint paint;
1491 paint.reset();
bsalomon@google.comb8670992012-07-25 21:27:09 +00001492 paint.textureSampler(0)->textureParams()->setBilerp(true);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001493 paint.textureSampler(0)->reset(sampleM);
1494 paint.textureSampler(0)->setCustomStage(stage);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001495 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001496}
1497
1498};
1499
reed@google.com8926b162012-03-23 15:36:36 +00001500static GrTexture* filter_texture(GrContext* context, GrTexture* texture,
1501 SkImageFilter* filter, const GrRect& rect) {
1502 GrAssert(filter);
1503
1504 SkSize blurSize;
1505 SkISize radius;
1506
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001507 GrTextureDesc desc;
1508 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1509 desc.fWidth = SkScalarCeilToInt(rect.width());
1510 desc.fHeight = SkScalarCeilToInt(rect.height());
1511 desc.fConfig = kRGBA_8888_PM_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001512 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001513
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001514 if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001515 GrAutoScratchTexture dst(context, desc);
1516 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1517 texture = dst.detach();
1518 stage->unref();
1519 } else if (filter->asABlur(&blurSize)) {
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001520 texture = context->gaussianBlur(texture, false, rect,
reed@google.com8926b162012-03-23 15:36:36 +00001521 blurSize.width(),
1522 blurSize.height());
reed@google.com8926b162012-03-23 15:36:36 +00001523 } else if (filter->asADilate(&radius)) {
reed@google.com8926b162012-03-23 15:36:36 +00001524 texture = context->applyMorphology(texture, rect,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001525 GrContext::kDilate_MorphologyType,
reed@google.com8926b162012-03-23 15:36:36 +00001526 radius);
reed@google.com8926b162012-03-23 15:36:36 +00001527 } else if (filter->asAnErode(&radius)) {
reed@google.com8926b162012-03-23 15:36:36 +00001528 texture = context->applyMorphology(texture, rect,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001529 GrContext::kErode_MorphologyType,
reed@google.com8926b162012-03-23 15:36:36 +00001530 radius);
reed@google.com8926b162012-03-23 15:36:36 +00001531 }
1532 return texture;
1533}
1534
reed@google.comac10a2d2010-12-22 21:39:39 +00001535void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1536 int left, int top, const SkPaint& paint) {
1537 CHECK_SHOULD_DRAW(draw);
1538
reed@google.com8926b162012-03-23 15:36:36 +00001539 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001540 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1541 return;
1542 }
1543
reed@google.com76dd2772012-01-05 21:15:07 +00001544 int w = bitmap.width();
1545 int h = bitmap.height();
1546
bsalomon@google.com5782d712011-01-21 21:03:59 +00001547 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001548 SkAutoCachedTexture colorLutTexture;
1549 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001550 return;
1551 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001552
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001553 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001554
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001555 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001556
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001557 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001558 sampler->reset();
bsalomon@google.comb8670992012-07-25 21:27:09 +00001559 SkAutoCachedTexture act(this, bitmap, sampler->textureParams(), &texture);
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001560 grPaint.textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1561 (GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001562
reed@google.com8926b162012-03-23 15:36:36 +00001563 SkImageFilter* filter = paint.getImageFilter();
1564 if (NULL != filter) {
1565 GrTexture* filteredTexture = filter_texture(fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001566 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001567 if (filteredTexture) {
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001568 grPaint.textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1569 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001570 texture = filteredTexture;
1571 filteredTexture->unref();
1572 }
reed@google.com76dd2772012-01-05 21:15:07 +00001573 }
reed@google.com8926b162012-03-23 15:36:36 +00001574
bsalomon@google.com5782d712011-01-21 21:03:59 +00001575 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001576 GrRect::MakeXYWH(GrIntToScalar(left),
1577 GrIntToScalar(top),
1578 GrIntToScalar(w),
1579 GrIntToScalar(h)),
1580 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1581 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001582}
1583
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001584void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001585 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001586 // clear of the source device must occur before CHECK_SHOULD_DRAW
1587 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1588 if (dev->fNeedClear) {
1589 // TODO: could check here whether we really need to draw at all
1590 dev->clear(0x0);
1591 }
1592
reed@google.comac10a2d2010-12-22 21:39:39 +00001593 CHECK_SHOULD_DRAW(draw);
1594
bsalomon@google.com5782d712011-01-21 21:03:59 +00001595 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001596 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001597 grPaint.textureSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001598 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001599 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001600 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001601 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001602
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001603 GrTexture* devTex = grPaint.getTextureSampler(kBitmapTextureIdx).getCustomStage()->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001604 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001605
reed@google.com8926b162012-03-23 15:36:36 +00001606 SkImageFilter* filter = paint.getImageFilter();
1607 if (NULL != filter) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001608 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001609 SkIntToScalar(devTex->height()));
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001610 GrTexture* filteredTexture = filter_texture(fContext, devTex, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001611 if (filteredTexture) {
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001612 grPaint.textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1613 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001614 devTex = filteredTexture;
1615 filteredTexture->unref();
1616 }
1617 }
1618
bsalomon@google.com5782d712011-01-21 21:03:59 +00001619 const SkBitmap& bm = dev->accessBitmap(false);
1620 int w = bm.width();
1621 int h = bm.height();
1622
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001623 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001624 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1625 GrIntToScalar(y),
1626 GrIntToScalar(w),
1627 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001628
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001629 // The device being drawn may not fill up its texture (saveLayer uses
1630 // the approximate ).
1631 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1632 GR_Scalar1 * h / devTex->height());
1633
1634 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001635}
1636
reed@google.com8926b162012-03-23 15:36:36 +00001637bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
reed@google.com76dd2772012-01-05 21:15:07 +00001638 SkSize size;
senorblanco@chromium.org05054f12012-03-02 21:05:45 +00001639 SkISize radius;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001640
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001641 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001642 !filter->asABlur(&size) &&
1643 !filter->asADilate(&radius) &&
1644 !filter->asAnErode(&radius)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001645 return false;
1646 }
reed@google.com8926b162012-03-23 15:36:36 +00001647 return true;
1648}
1649
1650bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1651 const SkMatrix& ctm,
1652 SkBitmap* result, SkIPoint* offset) {
1653 // want explicitly our impl, so guard against a subclass of us overriding it
1654 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001655 return false;
1656 }
reed@google.com8926b162012-03-23 15:36:36 +00001657
1658 SkAutoLockPixels alp(src, !src.getTexture());
1659 if (!src.getTexture() && !src.readyToDraw()) {
1660 return false;
1661 }
1662
1663 GrPaint paint;
1664 paint.reset();
1665
1666 GrSamplerState* sampler = paint.textureSampler(kBitmapTextureIdx);
1667
1668 GrTexture* texture;
bsalomon@google.comb8670992012-07-25 21:27:09 +00001669 SkAutoCachedTexture act(this, src, sampler->textureParams(), &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001670
1671 result->setConfig(src.config(), src.width(), src.height());
robertphillips@google.com8637a362012-04-10 18:32:35 +00001672 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
1673 SkIntToScalar(src.height()));
reed@google.com8926b162012-03-23 15:36:36 +00001674 GrTexture* resultTexture = filter_texture(fContext, texture, filter, rect);
1675 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001676 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1677 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001678 resultTexture->unref();
1679 }
reed@google.com76dd2772012-01-05 21:15:07 +00001680 return true;
1681}
1682
reed@google.comac10a2d2010-12-22 21:39:39 +00001683///////////////////////////////////////////////////////////////////////////////
1684
1685// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001686static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001687 kTriangles_GrPrimitiveType,
1688 kTriangleStrip_GrPrimitiveType,
1689 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001690};
1691
1692void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1693 int vertexCount, const SkPoint vertices[],
1694 const SkPoint texs[], const SkColor colors[],
1695 SkXfermode* xmode,
1696 const uint16_t indices[], int indexCount,
1697 const SkPaint& paint) {
1698 CHECK_SHOULD_DRAW(draw);
1699
bsalomon@google.com5782d712011-01-21 21:03:59 +00001700 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001701 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001702 // we ignore the shader if texs is null.
1703 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001704 if (!skPaint2GrPaintNoShader(this,
1705 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001706 false,
1707 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001708 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001709 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001710 return;
1711 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001712 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001713 if (!skPaint2GrPaintShader(this,
1714 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001715 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001716 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001717 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001718 return;
1719 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001720 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001721
1722 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001723 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001724 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1725#if 0
1726 return
1727#endif
1728 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001729 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001730
bsalomon@google.com498776a2011-08-16 19:20:44 +00001731 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1732 if (NULL != colors) {
1733 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001734 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001735 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001736 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001737 }
1738 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001739 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001740 fContext->drawVertices(grPaint,
1741 gVertexMode2PrimitiveType[vmode],
1742 vertexCount,
1743 (GrPoint*) vertices,
1744 (GrPoint*) texs,
1745 colors,
1746 indices,
1747 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001748}
1749
1750///////////////////////////////////////////////////////////////////////////////
1751
1752static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001753 GrFontScaler* scaler = (GrFontScaler*)data;
1754 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001755}
1756
1757static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1758 void* auxData;
1759 GrFontScaler* scaler = NULL;
1760 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1761 scaler = (GrFontScaler*)auxData;
1762 }
1763 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001764 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001765 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1766 }
1767 return scaler;
1768}
1769
1770static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1771 SkFixed fx, SkFixed fy,
1772 const SkGlyph& glyph) {
1773 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1774
bungeman@google.com15865a72012-01-11 16:28:04 +00001775 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001776
1777 if (NULL == procs->fFontScaler) {
1778 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1779 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001780
bungeman@google.com15865a72012-01-11 16:28:04 +00001781 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1782 glyph.getSubXFixed(),
1783 glyph.getSubYFixed()),
1784 SkFixedFloorToFixed(fx),
1785 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001786 procs->fFontScaler);
1787}
1788
bsalomon@google.com5782d712011-01-21 21:03:59 +00001789SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001790
1791 // deferred allocation
1792 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001793 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001794 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1795 fDrawProcs->fContext = fContext;
1796 }
1797
1798 // init our (and GL's) state
1799 fDrawProcs->fTextContext = context;
1800 fDrawProcs->fFontScaler = NULL;
1801 return fDrawProcs;
1802}
1803
1804void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1805 size_t byteLength, SkScalar x, SkScalar y,
1806 const SkPaint& paint) {
1807 CHECK_SHOULD_DRAW(draw);
1808
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001809 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001810 // this guy will just call our drawPath()
1811 draw.drawText((const char*)text, byteLength, x, y, paint);
1812 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001813 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001814
1815 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001816 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001817 if (!skPaint2GrPaintShader(this,
1818 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001819 true,
twiz@google.com58071162012-07-18 21:41:50 +00001820 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001821 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001822 return;
1823 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001824 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1825 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001826 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1827 }
1828}
1829
1830void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1831 size_t byteLength, const SkScalar pos[],
1832 SkScalar constY, int scalarsPerPos,
1833 const SkPaint& paint) {
1834 CHECK_SHOULD_DRAW(draw);
1835
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001836 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001837 // this guy will just call our drawPath()
1838 draw.drawPosText((const char*)text, byteLength, pos, constY,
1839 scalarsPerPos, paint);
1840 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001841 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001842
1843 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001844 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001845 if (!skPaint2GrPaintShader(this,
1846 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001847 true,
twiz@google.com58071162012-07-18 21:41:50 +00001848 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001849 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001850 return;
1851 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001852 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1853 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001854 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1855 scalarsPerPos, paint);
1856 }
1857}
1858
1859void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1860 size_t len, const SkPath& path,
1861 const SkMatrix* m, const SkPaint& paint) {
1862 CHECK_SHOULD_DRAW(draw);
1863
1864 SkASSERT(draw.fDevice == this);
1865 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1866}
1867
1868///////////////////////////////////////////////////////////////////////////////
1869
reed@google.comf67e4cf2011-03-15 20:56:58 +00001870bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1871 if (!paint.isLCDRenderText()) {
1872 // we're cool with the paint as is
1873 return false;
1874 }
1875
1876 if (paint.getShader() ||
1877 paint.getXfermode() || // unless its srcover
1878 paint.getMaskFilter() ||
1879 paint.getRasterizer() ||
1880 paint.getColorFilter() ||
1881 paint.getPathEffect() ||
1882 paint.isFakeBoldText() ||
1883 paint.getStyle() != SkPaint::kFill_Style) {
1884 // turn off lcd
1885 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1886 flags->fHinting = paint.getHinting();
1887 return true;
1888 }
1889 // we're cool with the paint as is
1890 return false;
1891}
1892
reed@google.com75d939b2011-12-07 15:07:23 +00001893void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001894 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001895 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001896}
1897
reed@google.comf67e4cf2011-03-15 20:56:58 +00001898///////////////////////////////////////////////////////////////////////////////
1899
bsalomon@google.comfb309512011-11-30 14:13:48 +00001900bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001901 const GrTextureParams& params) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001902 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001903 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001904
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001905 GrTextureDesc desc;
1906 desc.fWidth = bitmap.width();
1907 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001908 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001909 desc.fClientCacheID = key;
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001910
bsalomon@google.comb8670992012-07-25 21:27:09 +00001911 return this->context()->isTextureInCache(desc, &params);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001912}
1913
1914
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001915SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1916 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001917 bool isOpaque,
1918 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001919 GrTextureDesc desc;
1920 desc.fConfig = fRenderTarget->config();
1921 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1922 desc.fWidth = width;
1923 desc.fHeight = height;
1924 desc.fSampleCnt = fRenderTarget->numSamples();
1925
1926 GrContext::TextureCacheEntry cacheEntry;
1927 GrTexture* texture;
1928 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001929 // Skia's convention is to only clear a device if it is non-opaque.
1930 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001931
1932#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1933 // layers are never draw in repeat modes, so we can request an approx
1934 // match and ignore any padding.
1935 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1936 GrContext::kApprox_ScratchTexMatch :
1937 GrContext::kExact_ScratchTexMatch;
1938 cacheEntry = fContext->lockScratchTexture(desc, matchType);
1939 texture = cacheEntry.texture();
1940#else
1941 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1942 texture = tunref.get();
1943#endif
1944 if (texture) {
1945 return SkNEW_ARGS(SkGpuDevice,(fContext,
1946 texture,
1947 cacheEntry,
1948 needClear));
1949 } else {
1950 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1951 width, height);
1952 return NULL;
1953 }
1954}
1955
1956SkGpuDevice::SkGpuDevice(GrContext* context,
1957 GrTexture* texture,
1958 TexCache cacheEntry,
1959 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00001960 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1961
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001962 GrAssert(texture && texture->asRenderTarget());
1963 GrAssert(NULL == cacheEntry.texture() || texture == cacheEntry.texture());
1964 this->initFromRenderTarget(context, texture->asRenderTarget());
1965 fCache = cacheEntry;
1966 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001967}
1968