blob: e7fd8c4205fd24d61bc4f96698fe0644fd80fa55 [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
rmistry@google.comd6176b02012-08-23 18:14:13 +000062// requiring texture domain clamping to prevent color bleeding when drawing
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000063// 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:
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000084 SkAutoCachedTexture()
85 : fDevice(NULL)
86 , fTexture(NULL) {
rmistry@google.comd6176b02012-08-23 18:14:13 +000087 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000088
bsalomon@google.com84405e02012-03-05 19:57:21 +000089 SkAutoCachedTexture(SkGpuDevice* device,
90 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +000091 const GrTextureParams* params,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000092 GrTexture** texture)
93 : fDevice(NULL)
94 , fTexture(NULL) {
95 GrAssert(NULL != texture);
bsalomon@google.comb8670992012-07-25 21:27:09 +000096 *texture = this->set(device, bitmap, params);
reed@google.comac10a2d2010-12-22 21:39:39 +000097 }
reed@google.comac10a2d2010-12-22 21:39:39 +000098
bsalomon@google.com84405e02012-03-05 19:57:21 +000099 ~SkAutoCachedTexture() {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000100 if (NULL != fTexture) {
101 GrUnlockCachedBitmapTexture(fTexture);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000102 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000103 }
bsalomon@google.com84405e02012-03-05 19:57:21 +0000104
105 GrTexture* set(SkGpuDevice* device,
106 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000107 const GrTextureParams* params) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000108 if (NULL != fTexture) {
109 GrUnlockCachedBitmapTexture(fTexture);
110 fTexture = NULL;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000111 }
112 fDevice = device;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000113 GrTexture* result = (GrTexture*)bitmap.getTexture();
114 if (NULL == result) {
115 // Cannot return the native texture so look it up in our cache
116 fTexture = GrLockCachedBitmapTexture(device->context(), bitmap, params);
117 result = fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000118 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000119 return result;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000120 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000121
bsalomon@google.com84405e02012-03-05 19:57:21 +0000122private:
123 SkGpuDevice* fDevice;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000124 GrTexture* fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000125};
reed@google.comac10a2d2010-12-22 21:39:39 +0000126
127///////////////////////////////////////////////////////////////////////////////
128
129bool gDoTraceDraw;
130
131struct GrSkDrawProcs : public SkDrawProcs {
132public:
133 GrContext* fContext;
134 GrTextContext* fTextContext;
135 GrFontScaler* fFontScaler; // cached in the skia glyphcache
136};
137
138///////////////////////////////////////////////////////////////////////////////
139
reed@google.comaf951c92011-06-16 19:10:39 +0000140static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
141 switch (config) {
142 case kAlpha_8_GrPixelConfig:
143 *isOpaque = false;
144 return SkBitmap::kA8_Config;
145 case kRGB_565_GrPixelConfig:
146 *isOpaque = true;
147 return SkBitmap::kRGB_565_Config;
148 case kRGBA_4444_GrPixelConfig:
149 *isOpaque = false;
150 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000151 case kSkia8888_PM_GrPixelConfig:
152 // we don't currently have a way of knowing whether
153 // a 8888 is opaque based on the config.
154 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000155 return SkBitmap::kARGB_8888_Config;
156 default:
157 *isOpaque = false;
158 return SkBitmap::kNo_Config;
159 }
160}
reed@google.comac10a2d2010-12-22 21:39:39 +0000161
reed@google.comaf951c92011-06-16 19:10:39 +0000162static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000163 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000164
165 bool isOpaque;
166 SkBitmap bitmap;
167 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
168 renderTarget->width(), renderTarget->height());
169 bitmap.setIsOpaque(isOpaque);
170 return bitmap;
171}
172
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000173SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000174: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000175 this->initFromRenderTarget(context, texture->asRenderTarget(), false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000176}
177
reed@google.comaf951c92011-06-16 19:10:39 +0000178SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000179: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000180 this->initFromRenderTarget(context, renderTarget, false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000181}
182
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000183void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.com8090e652012-08-28 15:07:11 +0000184 GrRenderTarget* renderTarget,
185 bool cached) {
reed@google.comaf951c92011-06-16 19:10:39 +0000186 fNeedPrepareRenderTarget = false;
187 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000188
reed@google.comaf951c92011-06-16 19:10:39 +0000189 fContext = context;
190 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000191
reed@google.comaf951c92011-06-16 19:10:39 +0000192 fRenderTarget = NULL;
193 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000194
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000195 GrAssert(NULL != renderTarget);
196 fRenderTarget = renderTarget;
197 fRenderTarget->ref();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000198
bsalomon@google.coma2921122012-08-28 12:34:17 +0000199 // Hold onto to the texture in the pixel ref (if there is one) because the texture holds a ref
200 // on the RT but not vice-versa.
201 // TODO: Remove this trickery once we figure out how to make SkGrPixelRef do this without
202 // busting chrome (for a currently unknown reason).
203 GrSurface* surface = fRenderTarget->asTexture();
204 if (NULL == surface) {
205 surface = fRenderTarget;
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000206 }
bsalomon@google.com8090e652012-08-28 15:07:11 +0000207 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (surface, cached));
bsalomon@google.coma2921122012-08-28 12:34:17 +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 fRenderTarget = NULL;
225 fNeedClear = false;
226
reed@google.comaf951c92011-06-16 19:10:39 +0000227 if (config != SkBitmap::kRGB_565_Config) {
228 config = SkBitmap::kARGB_8888_Config;
229 }
230 SkBitmap bm;
231 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000232
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000233 GrTextureDesc desc;
234 desc.fFlags = kRenderTarget_GrTextureFlagBit;
235 desc.fWidth = width;
236 desc.fHeight = height;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000237 desc.fConfig = SkBitmapConfig2GrPixelConfig(bm.config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000238
bsalomon@google.coma2921122012-08-28 12:34:17 +0000239 SkAutoTUnref<GrTexture> texture(fContext->createUncachedTexture(desc, NULL, 0));
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000240
bsalomon@google.coma2921122012-08-28 12:34:17 +0000241 if (NULL != texture) {
242 fRenderTarget = texture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000243 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000244
reed@google.comaf951c92011-06-16 19:10:39 +0000245 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000246
reed@google.comaf951c92011-06-16 19:10:39 +0000247 // wrap the bitmap with a pixelref to expose our texture
bsalomon@google.coma2921122012-08-28 12:34:17 +0000248 SkGrPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (texture));
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000249 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000250 } else {
251 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
252 width, height);
253 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000254 }
255}
256
257SkGpuDevice::~SkGpuDevice() {
258 if (fDrawProcs) {
259 delete fDrawProcs;
260 }
261
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000262 // The SkGpuDevice gives the context the render target (e.g., in gainFocus)
rmistry@google.comd6176b02012-08-23 18:14:13 +0000263 // This call gives the context a chance to relinquish it
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000264 fContext->setRenderTarget(NULL);
265
bsalomon@google.coma2921122012-08-28 12:34:17 +0000266 SkSafeUnref(fRenderTarget);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000267 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000268}
269
reed@google.comac10a2d2010-12-22 21:39:39 +0000270///////////////////////////////////////////////////////////////////////////////
271
272void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000273 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000274 fContext->setRenderTarget(fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000275 fNeedPrepareRenderTarget = true;
276}
277
278///////////////////////////////////////////////////////////////////////////////
279
bsalomon@google.comc4364992011-11-07 15:54:49 +0000280namespace {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000281GrPixelConfig config8888_to_grconfig_and_flags(SkCanvas::Config8888 config8888, uint32_t* flags) {
bsalomon@google.comc4364992011-11-07 15:54:49 +0000282 switch (config8888) {
283 case SkCanvas::kNative_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000284 *flags = 0;
285 return kSkia8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000286 case SkCanvas::kNative_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000287 *flags = GrContext::kUnpremul_PixelOpsFlag;
288 return kSkia8888_PM_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000289 case SkCanvas::kBGRA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000290 *flags = 0;
291 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000292 case SkCanvas::kBGRA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000293 *flags = GrContext::kUnpremul_PixelOpsFlag;
294 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000295 case SkCanvas::kRGBA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000296 *flags = 0;
297 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000298 case SkCanvas::kRGBA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000299 *flags = GrContext::kUnpremul_PixelOpsFlag;
300 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000301 default:
302 GrCrash("Unexpected Config8888.");
303 return kSkia8888_PM_GrPixelConfig;
304 }
305}
306}
307
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000308bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
309 int x, int y,
310 SkCanvas::Config8888 config8888) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000311 DO_DEFERRED_CLEAR;
bsalomon@google.com910267d2011-11-02 20:06:25 +0000312 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
313 SkASSERT(!bitmap.isNull());
314 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000315
bsalomon@google.com910267d2011-11-02 20:06:25 +0000316 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000317 GrPixelConfig config;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000318 uint32_t flags;
319 config = config8888_to_grconfig_and_flags(config8888, &flags);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000320 return fContext->readRenderTargetPixels(fRenderTarget,
321 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000322 bitmap.width(),
323 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000324 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000325 bitmap.getPixels(),
bsalomon@google.com0342a852012-08-20 19:22:38 +0000326 bitmap.rowBytes(),
327 flags);
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;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000338 uint32_t flags;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000339 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000340 config = config8888_to_grconfig_and_flags(config8888, &flags);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000341 } else {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000342 flags = 0;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000343 config= SkBitmapConfig2GrPixelConfig(bitmap.config());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000344 }
345
bsalomon@google.com6f379512011-11-16 20:36:03 +0000346 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
bsalomon@google.com0342a852012-08-20 19:22:38 +0000347 config, bitmap.getPixels(), bitmap.rowBytes(), flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000348}
349
robertphillips@google.com46f93502012-08-07 15:38:08 +0000350namespace {
351void purgeClipCB(int genID, void* data) {
352 GrContext* context = (GrContext*) data;
353
354 if (SkClipStack::kInvalidGenID == genID ||
355 SkClipStack::kEmptyGenID == genID ||
356 SkClipStack::kWideOpenGenID == genID) {
357 // none of these cases will have a cached clip mask
358 return;
359 }
360
361}
362};
363
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000364void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
365 INHERITED::onAttachToCanvas(canvas);
366
367 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000368 fClipData.fClipStack = canvas->getClipStack();
robertphillips@google.com46f93502012-08-07 15:38:08 +0000369
370 fClipData.fClipStack->addPurgeClipCallback(purgeClipCB, fContext);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000371}
372
373void SkGpuDevice::onDetachFromCanvas() {
374 INHERITED::onDetachFromCanvas();
375
robertphillips@google.com46f93502012-08-07 15:38:08 +0000376 // TODO: iterate through the clip stack and clean up any cached clip masks
377 fClipData.fClipStack->removePurgeClipCallback(purgeClipCB, fContext);
378
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000379 fClipData.fClipStack = NULL;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000380}
381
robertphillips@google.com607fe072012-07-24 13:54:00 +0000382#ifdef SK_DEBUG
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000383static void check_bounds(const GrClipData& clipData,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000384 const SkRegion& clipRegion,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000385 int renderTargetWidth,
386 int renderTargetHeight) {
387
robertphillips@google.com7b112892012-07-31 15:18:21 +0000388 SkIRect devBound;
389
390 devBound.setLTRB(0, 0, renderTargetWidth, renderTargetHeight);
391
robertphillips@google.com607fe072012-07-24 13:54:00 +0000392 SkClipStack::BoundsType boundType;
robertphillips@google.com7b112892012-07-31 15:18:21 +0000393 SkRect canvTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000394
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000395 clipData.fClipStack->getBounds(&canvTemp, &boundType);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000396 if (SkClipStack::kNormal_BoundsType == boundType) {
robertphillips@google.com7b112892012-07-31 15:18:21 +0000397 SkIRect devTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000398
robertphillips@google.com7b112892012-07-31 15:18:21 +0000399 canvTemp.roundOut(&devTemp);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000400
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000401 devTemp.offset(-clipData.fOrigin.fX, -clipData.fOrigin.fY);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000402
robertphillips@google.com7b112892012-07-31 15:18:21 +0000403 if (!devBound.intersect(devTemp)) {
404 devBound.setEmpty();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000405 }
406 }
407
robertphillips@google.com768fee82012-08-02 12:42:43 +0000408 GrAssert(devBound.contains(clipRegion.getBounds()));
robertphillips@google.com607fe072012-07-24 13:54:00 +0000409}
410#endif
411
reed@google.comac10a2d2010-12-22 21:39:39 +0000412///////////////////////////////////////////////////////////////////////////////
413
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000414static void set_matrix_and_clip(GrContext* context, const SkMatrix& matrix,
415 GrClipData& clipData,
416 const SkRegion& clipRegion,
417 const SkIPoint& origin,
418 int renderTargetWidth, int renderTargetHeight) {
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000419 context->setMatrix(matrix);
reed@google.comac10a2d2010-12-22 21:39:39 +0000420
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000421 clipData.fOrigin = origin;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000422
423#ifdef SK_DEBUG
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000424 check_bounds(clipData, clipRegion,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000425 renderTargetWidth, renderTargetHeight);
426#endif
427
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000428 context->setClip(&clipData);
reed@google.comac10a2d2010-12-22 21:39:39 +0000429}
430
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000431// call this every draw call, to ensure that the context reflects our state,
reed@google.comac10a2d2010-12-22 21:39:39 +0000432// and not the state from some other canvas/device
433void SkGpuDevice::prepareRenderTarget(const SkDraw& draw) {
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000434 GrAssert(NULL != fClipData.fClipStack);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000435
reed@google.comac10a2d2010-12-22 21:39:39 +0000436 if (fNeedPrepareRenderTarget ||
bsalomon@google.com5782d712011-01-21 21:03:59 +0000437 fContext->getRenderTarget() != fRenderTarget) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000438
439 fContext->setRenderTarget(fRenderTarget);
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000440 SkASSERT(draw.fClipStack && draw.fClipStack == fClipData.fClipStack);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000441
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000442 set_matrix_and_clip(fContext, *draw.fMatrix,
443 fClipData, *draw.fClip, this->getOrigin(),
444 fRenderTarget->width(), fRenderTarget->height());
reed@google.comac10a2d2010-12-22 21:39:39 +0000445 fNeedPrepareRenderTarget = false;
446 }
447}
448
tomhudson@google.com8a0b0292011-09-13 14:41:06 +0000449void SkGpuDevice::setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
450 const SkClipStack& clipStack) {
451 this->INHERITED::setMatrixClip(matrix, clip, clipStack);
452 // We don't need to set them now because the context may not reflect this device.
bsalomon@google.coma7bf6e22011-04-11 19:20:46 +0000453 fNeedPrepareRenderTarget = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000454}
455
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000456void SkGpuDevice::gainFocus(const SkMatrix& matrix, const SkRegion& clip) {
457
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000458 GrAssert(NULL != fClipData.fClipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000459
reed@google.comac10a2d2010-12-22 21:39:39 +0000460 fContext->setRenderTarget(fRenderTarget);
461
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000462 this->INHERITED::gainFocus(matrix, clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000463
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000464 set_matrix_and_clip(fContext, matrix, fClipData, clip, this->getOrigin(),
465 fRenderTarget->width(), fRenderTarget->height());
reed@google.comac10a2d2010-12-22 21:39:39 +0000466
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000467 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000468}
469
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000470SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000471 DO_DEFERRED_CLEAR;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000472 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000473}
474
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000475bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
bsalomon@google.coma2921122012-08-28 12:34:17 +0000476 GrTexture* texture = fRenderTarget->asTexture();
477 if (NULL != texture) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000478 paint->textureSampler(kBitmapTextureIdx)->setCustomStage(
bsalomon@google.coma2921122012-08-28 12:34:17 +0000479 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000480 return true;
481 }
482 return false;
483}
484
485///////////////////////////////////////////////////////////////////////////////
486
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000487SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
488SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
489SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
490SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
491SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
492 shader_type_mismatch);
rileya@google.com3e332582012-07-03 13:43:35 +0000493SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5,
494 shader_type_mismatch);
rileya@google.com22e57f92012-07-19 15:16:19 +0000495SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch);
496SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000497
bsalomon@google.com84405e02012-03-05 19:57:21 +0000498namespace {
499
500// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
501// justAlpha indicates that skPaint's alpha should be used rather than the color
502// Callers may subsequently modify the GrPaint. Setting constantColor indicates
503// that the final paint will draw the same color at every pixel. This allows
504// an optimization where the the color filter can be applied to the skPaint's
twiz@google.com58071162012-07-18 21:41:50 +0000505// color once while converting to GrPaint and then ignored.
506inline bool skPaint2GrPaintNoShader(SkGpuDevice* dev,
507 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000508 bool justAlpha,
509 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000510 SkGpuDevice::SkAutoCachedTexture* act,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000511 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000512
513 grPaint->fDither = skPaint.isDither();
514 grPaint->fAntiAlias = skPaint.isAntiAlias();
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000515 grPaint->fCoverage = 0xFF;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000516
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000517 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
518 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000519
520 SkXfermode* mode = skPaint.getXfermode();
521 if (mode) {
522 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000523 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000524#if 0
525 return false;
526#endif
527 }
528 }
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000529 grPaint->fSrcBlendCoeff = sk_blend_to_grblend(sm);
530 grPaint->fDstBlendCoeff = sk_blend_to_grblend(dm);
531
bsalomon@google.com5782d712011-01-21 21:03:59 +0000532 if (justAlpha) {
533 uint8_t alpha = skPaint.getAlpha();
534 grPaint->fColor = GrColorPackRGBA(alpha, alpha, alpha, alpha);
Scroggod757df22011-05-16 13:11:16 +0000535 // justAlpha is currently set to true only if there is a texture,
536 // so constantColor should not also be true.
537 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000538 } else {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000539 grPaint->fColor = SkColor2GrColor(skPaint.getColor());
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000540 GrAssert(!grPaint->isTextureStageEnabled(kShaderTextureIdx));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000541 }
Scroggo97c88c22011-05-11 14:05:25 +0000542 SkColorFilter* colorFilter = skPaint.getColorFilter();
543 SkColor color;
544 SkXfermode::Mode filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000545 SkScalar matrix[20];
twiz@google.com58071162012-07-18 21:41:50 +0000546 SkBitmap colorTransformTable;
bsalomon@google.com0d944822012-08-16 15:06:57 +0000547 grPaint->resetColorFilter();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000548 // TODO: SkColorFilter::asCustomStage()
Scroggo97c88c22011-05-11 14:05:25 +0000549 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000550 grPaint->fColorMatrixEnabled = false;
Scroggod757df22011-05-16 13:11:16 +0000551 if (!constantColor) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000552 grPaint->fColorFilterColor = SkColor2GrColor(color);
Scroggod757df22011-05-16 13:11:16 +0000553 grPaint->fColorFilterXfermode = filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000554 } else {
555 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
rileya@google.com24f3ad12012-07-18 21:47:40 +0000556 grPaint->fColor = SkColor2GrColor(filtered);
Scroggod757df22011-05-16 13:11:16 +0000557 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000558 } else if (colorFilter != NULL && colorFilter->asColorMatrix(matrix)) {
559 grPaint->fColorMatrixEnabled = true;
560 memcpy(grPaint->fColorMatrix, matrix, sizeof(matrix));
561 grPaint->fColorFilterXfermode = SkXfermode::kDst_Mode;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000562 } else if (colorFilter != NULL && colorFilter->asComponentTable(&colorTransformTable)) {
twiz@google.com58071162012-07-18 21:41:50 +0000563 grPaint->resetColorFilter();
564
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000565 // pass NULL because the color table effect doesn't use tiling or filtering.
566 GrTexture* texture = act->set(dev, colorTransformTable, NULL);
twiz@google.com58071162012-07-18 21:41:50 +0000567 GrSamplerState* colorSampler = grPaint->textureSampler(kColorFilterTextureIdx);
bsalomon@google.comb8670992012-07-25 21:27:09 +0000568 colorSampler->reset();
bsalomon@google.comcbd0ad92012-07-20 15:09:31 +0000569 colorSampler->setCustomStage(SkNEW_ARGS(GrColorTableEffect, (texture)))->unref();
Scroggo97c88c22011-05-11 14:05:25 +0000570 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000571 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000572}
573
bsalomon@google.com84405e02012-03-05 19:57:21 +0000574// This function is similar to skPaint2GrPaintNoShader but also converts
575// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
576// be used is set on grPaint and returned in param act. constantColor has the
577// same meaning as in skPaint2GrPaintNoShader.
578inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
579 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000580 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000581 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxTextures],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000582 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000583 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000584 if (NULL == shader) {
twiz@google.com58071162012-07-18 21:41:50 +0000585 return skPaint2GrPaintNoShader(dev,
586 skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000587 false,
588 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000589 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000590 grPaint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000591 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false,
twiz@google.com58071162012-07-18 21:41:50 +0000592 &textures[kColorFilterTextureIdx], grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000593 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000594 }
595
rileya@google.com91f319c2012-07-25 17:18:31 +0000596 GrSamplerState* sampler = grPaint->textureSampler(kShaderTextureIdx);
597 GrCustomStage* stage = shader->asNewCustomStage(dev->context(), sampler);
598
599 if (NULL != stage) {
600 sampler->setCustomStage(stage)->unref();
601 SkMatrix localM;
602 if (shader->getLocalMatrix(&localM)) {
603 SkMatrix inverse;
604 if (localM.invert(&inverse)) {
605 sampler->matrix()->preConcat(inverse);
606 }
607 }
608 return true;
609 }
610
reed@google.comac10a2d2010-12-22 21:39:39 +0000611 SkBitmap bitmap;
rileya@google.com91f319c2012-07-25 17:18:31 +0000612 SkMatrix* matrix = sampler->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000613 SkShader::TileMode tileModes[2];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000614 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
rileya@google.com91f319c2012-07-25 17:18:31 +0000615 tileModes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000616
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000617 if (SkShader::kNone_BitmapType == bmptype) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000618 SkShader::GradientInfo info;
619 SkColor color;
620
621 info.fColors = &color;
622 info.fColorOffsets = NULL;
623 info.fColorCount = 1;
624 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
625 SkPaint copy(skPaint);
626 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000627 // modulate the paint alpha by the shader's solid color alpha
628 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
629 copy.setColor(SkColorSetA(color, newA));
twiz@google.com58071162012-07-18 21:41:50 +0000630 return skPaint2GrPaintNoShader(dev,
631 copy,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000632 false,
633 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000634 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000635 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000636 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000637 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000638 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000639
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000640 // Must set wrap and filter on the sampler before requesting a texture.
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000641 GrTextureParams params(tileModes, skPaint.isFilterBitmap());
642 GrTexture* texture = textures[kShaderTextureIdx].set(dev, bitmap, &params);
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000643
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000644 if (NULL == texture) {
645 SkDebugf("Couldn't convert bitmap to texture.\n");
646 return false;
647 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000648
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000649 sampler->reset();
650 sampler->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000651
reed@google.comac10a2d2010-12-22 21:39:39 +0000652 // since our texture coords will be in local space, we wack the texture
653 // matrix to map them back into 0...1 before we load it
654 SkMatrix localM;
655 if (shader->getLocalMatrix(&localM)) {
656 SkMatrix inverse;
657 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000658 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000659 }
660 }
661 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000662 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
663 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000664 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000665 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000666
667 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000668}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000669}
reed@google.comac10a2d2010-12-22 21:39:39 +0000670
671///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com398109c2011-04-14 18:40:27 +0000672void SkGpuDevice::clear(SkColor color) {
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000673 fContext->clear(NULL, color, fRenderTarget);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000674}
675
reed@google.comac10a2d2010-12-22 21:39:39 +0000676void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
677 CHECK_SHOULD_DRAW(draw);
678
bsalomon@google.com5782d712011-01-21 21:03:59 +0000679 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000680 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000681 if (!skPaint2GrPaintShader(this,
682 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000683 true,
twiz@google.com58071162012-07-18 21:41:50 +0000684 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000685 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000686 return;
687 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000688
689 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000690}
691
692// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000693static const GrPrimitiveType gPointMode2PrimtiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +0000694 kPoints_GrPrimitiveType,
695 kLines_GrPrimitiveType,
696 kLineStrip_GrPrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000697};
698
699void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000700 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000701 CHECK_SHOULD_DRAW(draw);
702
703 SkScalar width = paint.getStrokeWidth();
704 if (width < 0) {
705 return;
706 }
707
bsalomon@google.comb702c0f2012-06-18 12:52:56 +0000708 // we only handle hairlines and paints without path effects or mask filters,
709 // else we let the SkDraw call our drawPath()
710 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000711 draw.drawPoints(mode, count, pts, paint, true);
712 return;
713 }
714
bsalomon@google.com5782d712011-01-21 21:03:59 +0000715 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000716 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000717 if (!skPaint2GrPaintShader(this,
718 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000719 true,
twiz@google.com58071162012-07-18 21:41:50 +0000720 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000721 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000722 return;
723 }
724
bsalomon@google.com5782d712011-01-21 21:03:59 +0000725 fContext->drawVertices(grPaint,
726 gPointMode2PrimtiveType[mode],
727 count,
728 (GrPoint*)pts,
729 NULL,
730 NULL,
731 NULL,
732 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000733}
734
reed@google.comc9aa5872011-04-05 21:05:37 +0000735///////////////////////////////////////////////////////////////////////////////
736
reed@google.comac10a2d2010-12-22 21:39:39 +0000737void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
738 const SkPaint& paint) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000739 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000740 CHECK_SHOULD_DRAW(draw);
741
bungeman@google.com79bd8772011-07-18 15:34:08 +0000742 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000743 SkScalar width = paint.getStrokeWidth();
744
745 /*
746 We have special code for hairline strokes, miter-strokes, and fills.
747 Anything else we just call our path code.
748 */
749 bool usePath = doStroke && width > 0 &&
750 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000751 // another two reasons we might need to call drawPath...
752 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000753 usePath = true;
754 }
reed@google.com67db6642011-05-26 11:46:35 +0000755 // until we aa rotated rects...
756 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
757 usePath = true;
758 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000759 // small miter limit means right angles show bevel...
760 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
761 paint.getStrokeMiter() < SK_ScalarSqrt2)
762 {
763 usePath = true;
764 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000765 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000766 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
767 usePath = true;
768 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000769
770 if (usePath) {
771 SkPath path;
772 path.addRect(rect);
773 this->drawPath(draw, path, paint, NULL, true);
774 return;
775 }
776
777 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000778 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000779 if (!skPaint2GrPaintShader(this,
780 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000781 true,
twiz@google.com58071162012-07-18 21:41:50 +0000782 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000783 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000784 return;
785 }
reed@google.com20efde72011-05-09 17:00:02 +0000786 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000787}
788
reed@google.com69302852011-02-16 18:08:07 +0000789#include "SkMaskFilter.h"
790#include "SkBounder.h"
791
bsalomon@google.com85003222012-03-28 14:44:37 +0000792///////////////////////////////////////////////////////////////////////////////
793
794// helpers for applying mask filters
795namespace {
796
797GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000798 switch (fillType) {
799 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000800 return kWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000801 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000802 return kEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000803 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000804 return kInverseWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000805 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000806 return kInverseEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000807 default:
808 SkDebugf("Unsupported path fill type\n");
bsalomon@google.com47059542012-06-06 20:51:20 +0000809 return kHairLine_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000810 }
811}
812
bsalomon@google.com85003222012-03-28 14:44:37 +0000813// We prefer to blur small rect with small radius via CPU.
814#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
815#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
816inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
817 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
818 rect.height() <= MIN_GPU_BLUR_SIZE &&
819 radius <= MIN_GPU_BLUR_RADIUS) {
820 return true;
821 }
822 return false;
823}
824
825bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
826 SkMaskFilter* filter, const SkMatrix& matrix,
827 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000828 GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000829#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000830 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000831#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000832 SkMaskFilter::BlurInfo info;
833 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000834 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000835 return false;
836 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000837 SkScalar radius = info.fIgnoreTransform ? info.fRadius
838 : matrix.mapRadius(info.fRadius);
839 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000840 if (radius <= 0) {
841 return false;
842 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000843
844 SkRect srcRect = path.getBounds();
845 if (shouldDrawBlurWithCPU(srcRect, radius)) {
846 return false;
847 }
848
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000849 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000850 float sigma3 = sigma * 3.0f;
851
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000852 SkRect clipRect;
853 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000854
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000855 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000856 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
857 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000858 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000859 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000860 SkIRect finalIRect;
861 finalRect.roundOut(&finalIRect);
862 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000863 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000864 }
865 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000866 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000867 }
868 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000869 srcRect.offset(offset);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000870 GrTextureDesc desc;
871 desc.fFlags = kRenderTarget_GrTextureFlagBit;
872 desc.fWidth = SkScalarCeilToInt(srcRect.width());
873 desc.fHeight = SkScalarCeilToInt(srcRect.height());
874 // We actually only need A8, but it often isn't supported as a
875 // render target so default to RGBA_8888
bsalomon@google.com0342a852012-08-20 19:22:38 +0000876 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000877
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000878 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
879 desc.fConfig = kAlpha_8_GrPixelConfig;
880 }
881
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000882 GrAutoScratchTexture pathEntry(context, desc);
883 GrTexture* pathTexture = pathEntry.texture();
884 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000885 return false;
886 }
887 GrRenderTarget* oldRenderTarget = context->getRenderTarget();
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000888 // Once this code moves into GrContext, this should be changed to use
889 // an AutoClipRestore.
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000890 const GrClipData* oldClipData = context->getClip();
891
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000892 context->setRenderTarget(pathTexture->asRenderTarget());
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000893
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000894 SkClipStack newClipStack(srcRect);
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000895 GrClipData newClipData;
896 newClipData.fClipStack = &newClipStack;
897 context->setClip(&newClipData);
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000898
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000899 context->clear(NULL, 0);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000900 GrPaint tempPaint;
901 tempPaint.reset();
902
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000903 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000904 tempPaint.fAntiAlias = grp->fAntiAlias;
905 if (tempPaint.fAntiAlias) {
906 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
907 // blend coeff of zero requires dual source blending support in order
908 // to properly blend partially covered pixels. This means the AA
909 // code path may not be taken. So we use a dst blend coeff of ISA. We
910 // could special case AA draws to a dst surface with known alpha=0 to
911 // use a zero dst coeff when dual source blending isn't available.
bsalomon@google.com47059542012-06-06 20:51:20 +0000912 tempPaint.fSrcBlendCoeff = kOne_GrBlendCoeff;
913 tempPaint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000914 }
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000915 // Draw hard shadow to pathTexture with path topleft at origin 0,0.
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000916 context->drawPath(tempPaint, path, pathFillType, &offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000917
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000918 // If we're doing a normal blur, we can clobber the pathTexture in the
919 // gaussianBlur. Otherwise, we need to save it for later compositing.
920 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +0000921 SkAutoTUnref<GrTexture> blurTexture(context->gaussianBlur(
922 pathTexture, isNormalBlur, srcRect, sigma, sigma));
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000923
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000924 if (!isNormalBlur) {
925 GrPaint paint;
926 paint.reset();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000927 paint.textureSampler(0)->matrix()->setIDiv(pathTexture->width(),
928 pathTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000929 // Blend pathTexture over blurTexture.
930 context->setRenderTarget(blurTexture->asRenderTarget());
tomhudson@google.com1e8f0162012-07-20 16:25:18 +0000931 paint.textureSampler(0)->setCustomStage(SkNEW_ARGS
932 (GrSingleTextureEffect, (pathTexture)))->unref();
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000933 if (SkMaskFilter::kInner_BlurType == blurType) {
934 // inner: dst = dst * src
bsalomon@google.com47059542012-06-06 20:51:20 +0000935 paint.fSrcBlendCoeff = kDC_GrBlendCoeff;
936 paint.fDstBlendCoeff = kZero_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000937 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
938 // solid: dst = src + dst - src * dst
939 // = (1 - dst) * src + 1 * dst
bsalomon@google.com47059542012-06-06 20:51:20 +0000940 paint.fSrcBlendCoeff = kIDC_GrBlendCoeff;
941 paint.fDstBlendCoeff = kOne_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000942 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
943 // outer: dst = dst * (1 - src)
944 // = 0 * src + (1 - src) * dst
bsalomon@google.com47059542012-06-06 20:51:20 +0000945 paint.fSrcBlendCoeff = kZero_GrBlendCoeff;
946 paint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000947 }
948 context->drawRect(paint, srcRect);
949 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000950 context->setRenderTarget(oldRenderTarget);
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000951 context->setClip(oldClipData);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000952
bsalomon@google.come3d32162012-07-20 13:37:06 +0000953 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
954 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000955 }
956
957 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
958 // we assume the last mask index is available for use
tomhudson@google.comf13f5882012-06-25 17:27:28 +0000959 GrAssert(!grp->isMaskStageEnabled(MASK_IDX));
bsalomon@google.com97912912011-12-06 16:30:36 +0000960 grp->maskSampler(MASK_IDX)->reset();
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000961 grp->maskSampler(MASK_IDX)->setCustomStage(
962 SkNEW_ARGS(GrSingleTextureEffect, (blurTexture)))->unref();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000963 grp->maskSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
964 -finalRect.fTop);
965 grp->maskSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
966 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000967 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000968 return true;
969}
970
bsalomon@google.com85003222012-03-28 14:44:37 +0000971bool drawWithMaskFilter(GrContext* context, const SkPath& path,
972 SkMaskFilter* filter, const SkMatrix& matrix,
973 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000974 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000975 SkMask srcM, dstM;
976
977 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +0000978 SkMask::kComputeBoundsAndRenderImage_CreateMode,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000979 style)) {
reed@google.com69302852011-02-16 18:08:07 +0000980 return false;
981 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000982 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000983
984 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
985 return false;
986 }
987 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000988 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000989
990 if (clip.quickReject(dstM.fBounds)) {
991 return false;
992 }
993 if (bounder && !bounder->doIRect(dstM.fBounds)) {
994 return false;
995 }
996
997 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
998 // the current clip (and identity matrix) and grpaint settings
999
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001000 GrContext::AutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +00001001
bsalomon@google.come3d32162012-07-20 13:37:06 +00001002 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
1003 return false;
1004 }
1005
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001006 GrTextureDesc desc;
1007 desc.fWidth = dstM.fBounds.width();
1008 desc.fHeight = dstM.fBounds.height();
1009 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +00001010
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001011 GrAutoScratchTexture ast(context, desc);
1012 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001013
reed@google.com69302852011-02-16 18:08:07 +00001014 if (NULL == texture) {
1015 return false;
1016 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001017 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001018 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +00001019
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001020 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
1021 // we assume the last mask index is available for use
tomhudson@google.comf13f5882012-06-25 17:27:28 +00001022 GrAssert(!grp->isMaskStageEnabled(MASK_IDX));
bsalomon@google.com97912912011-12-06 16:30:36 +00001023 grp->maskSampler(MASK_IDX)->reset();
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001024 grp->maskSampler(MASK_IDX)->setCustomStage(
1025 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001026 GrRect d;
1027 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +00001028 GrIntToScalar(dstM.fBounds.fTop),
1029 GrIntToScalar(dstM.fBounds.fRight),
1030 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001031
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001032 GrMatrix* m = grp->maskSampler(MASK_IDX)->matrix();
1033 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1034 -dstM.fBounds.fTop*SK_Scalar1);
1035 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001036 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +00001037 return true;
1038}
reed@google.com69302852011-02-16 18:08:07 +00001039
bsalomon@google.com85003222012-03-28 14:44:37 +00001040}
1041
1042///////////////////////////////////////////////////////////////////////////////
1043
reed@google.com0c219b62011-02-16 21:31:18 +00001044void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001045 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +00001046 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +00001047 CHECK_FOR_NODRAW_ANNOTATION(paint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001048 CHECK_SHOULD_DRAW(draw);
1049
reed@google.comfe626382011-09-21 13:50:35 +00001050 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001051
bsalomon@google.com5782d712011-01-21 21:03:59 +00001052 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001053 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001054 if (!skPaint2GrPaintShader(this,
1055 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001056 true,
twiz@google.com58071162012-07-18 21:41:50 +00001057 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001058 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001059 return;
1060 }
1061
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001062 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1063 // if we can, we draw lots faster (raster device does this same test)
1064 SkScalar hairlineCoverage;
1065 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
1066 doFill = false;
1067 grPaint.fCoverage = SkScalarRoundToInt(hairlineCoverage *
1068 grPaint.fCoverage);
1069 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001070
reed@google.comfe626382011-09-21 13:50:35 +00001071 // If we have a prematrix, apply it to the path, optimizing for the case
1072 // where the original path can in fact be modified in place (even though
1073 // its parameter type is const).
1074 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1075 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001076
1077 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001078 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001079
reed@google.come3445642011-02-16 23:20:39 +00001080 if (!pathIsMutable) {
1081 result = &tmpPath;
1082 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001083 }
reed@google.come3445642011-02-16 23:20:39 +00001084 // should I push prePathMatrix on our MV stack temporarily, instead
1085 // of applying it here? See SkDraw.cpp
1086 pathPtr->transform(*prePathMatrix, result);
1087 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001088 }
reed@google.com0c219b62011-02-16 21:31:18 +00001089 // at this point we're done with prePathMatrix
1090 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001091
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001092 if (paint.getPathEffect() ||
1093 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001094 // it is safe to use tmpPath here, even if we already used it for the
1095 // prepathmatrix, since getFillPath can take the same object for its
1096 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001097 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001098 pathPtr = &tmpPath;
1099 }
1100
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001101 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001102 // avoid possibly allocating a new path in transform if we can
1103 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1104
1105 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001106 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001107 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001108 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001109 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001110 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001111 &grPaint, pathFillType)) {
rmistry@google.comd6176b02012-08-23 18:14:13 +00001112 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001113 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001114 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001115 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001116 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001117 }
reed@google.com69302852011-02-16 18:08:07 +00001118 return;
1119 }
reed@google.com69302852011-02-16 18:08:07 +00001120
bsalomon@google.com47059542012-06-06 20:51:20 +00001121 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001122
reed@google.com0c219b62011-02-16 21:31:18 +00001123 if (doFill) {
1124 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001125 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001126 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001127 break;
1128 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001129 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001130 break;
1131 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001132 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001133 break;
1134 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001135 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001136 break;
1137 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001138 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001139 return;
1140 }
1141 }
1142
reed@google.com07f3ee12011-05-16 17:21:57 +00001143 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001144}
1145
bsalomon@google.comfb309512011-11-30 14:13:48 +00001146namespace {
1147
1148inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1149 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1150 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1151 return tilesX * tilesY;
1152}
1153
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001154inline int determine_tile_size(const SkBitmap& bitmap,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001155 const SkIRect* srcRectPtr,
1156 int maxTextureSize) {
1157 static const int kSmallTileSize = 1 << 10;
1158 if (maxTextureSize <= kSmallTileSize) {
1159 return maxTextureSize;
1160 }
1161
1162 size_t maxTexTotalTileSize;
1163 size_t smallTotalTileSize;
1164
1165 if (NULL == srcRectPtr) {
1166 int w = bitmap.width();
1167 int h = bitmap.height();
1168 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1169 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1170 } else {
1171 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1172 srcRectPtr->fTop,
1173 srcRectPtr->fRight,
1174 srcRectPtr->fBottom,
1175 maxTextureSize);
1176 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1177 srcRectPtr->fTop,
1178 srcRectPtr->fRight,
1179 srcRectPtr->fBottom,
1180 kSmallTileSize);
1181 }
1182 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1183 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1184
1185 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1186 return kSmallTileSize;
1187 } else {
1188 return maxTextureSize;
1189 }
1190}
1191}
1192
1193bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001194 const GrTextureParams& params,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001195 const SkIRect* srcRectPtr,
1196 int* tileSize) const {
1197 SkASSERT(NULL != tileSize);
1198
1199 // if bitmap is explictly texture backed then just use the texture
1200 if (NULL != bitmap.getTexture()) {
1201 return false;
1202 }
1203 // if it's larger than the max texture size, then we have no choice but
1204 // tiling
1205 const int maxTextureSize = fContext->getMaxTextureSize();
1206 if (bitmap.width() > maxTextureSize ||
1207 bitmap.height() > maxTextureSize) {
1208 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1209 return true;
1210 }
1211 // if we are going to have to draw the whole thing, then don't tile
1212 if (NULL == srcRectPtr) {
1213 return false;
1214 }
1215 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.comb8670992012-07-25 21:27:09 +00001216 if (this->isBitmapInTextureCache(bitmap, params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001217 return false;
1218 }
1219
1220 // At this point we know we could do the draw by uploading the entire bitmap
1221 // as a texture. However, if the texture would be large compared to the
1222 // cache size and we don't require most of it for this draw then tile to
1223 // reduce the amount of upload and cache spill.
1224
1225 // assumption here is that sw bitmap size is a good proxy for its size as
1226 // a texture
1227 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001228 size_t cacheSize;
1229 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001230 if (bmpSize < cacheSize / 2) {
1231 return false;
1232 }
1233
1234 SkFixed fracUsed =
1235 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1236 (srcRectPtr->height() << 16) / bitmap.height());
1237 if (fracUsed <= SK_FixedHalf) {
1238 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1239 return true;
1240 } else {
1241 return false;
1242 }
1243}
1244
reed@google.comac10a2d2010-12-22 21:39:39 +00001245void SkGpuDevice::drawBitmap(const SkDraw& draw,
1246 const SkBitmap& bitmap,
1247 const SkIRect* srcRectPtr,
1248 const SkMatrix& m,
1249 const SkPaint& paint) {
1250 CHECK_SHOULD_DRAW(draw);
1251
1252 SkIRect srcRect;
1253 if (NULL == srcRectPtr) {
1254 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1255 } else {
1256 srcRect = *srcRectPtr;
1257 }
1258
junov@google.comd935cfb2011-06-27 20:48:23 +00001259 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001260 // Convert the bitmap to a shader so that the rect can be drawn
1261 // through drawRect, which supports mask filters.
1262 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001263 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001264 if (srcRectPtr) {
1265 if (!bitmap.extractSubset(&tmp, srcRect)) {
1266 return; // extraction failed
1267 }
1268 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001269 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001270 }
1271 SkPaint paintWithTexture(paint);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001272 paintWithTexture.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
junov@google.comd935cfb2011-06-27 20:48:23 +00001273 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001274 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001275 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001276
junov@google.com1d329782011-07-28 20:10:09 +00001277 // Transform 'm' needs to be concatenated to the draw matrix,
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001278 // rather than transforming the primitive directly, so that 'm' will
junov@google.com1d329782011-07-28 20:10:09 +00001279 // also affect the behavior of the mask filter.
1280 SkMatrix drawMatrix;
1281 drawMatrix.setConcat(*draw.fMatrix, m);
1282 SkDraw transformedDraw(draw);
1283 transformedDraw.fMatrix = &drawMatrix;
1284
1285 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1286
junov@google.comd935cfb2011-06-27 20:48:23 +00001287 return;
1288 }
1289
bsalomon@google.com5782d712011-01-21 21:03:59 +00001290 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001291 SkAutoCachedTexture colorLutTexture;
1292 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001293 return;
1294 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001295 GrTextureParams params;
1296 params.setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001297
bsalomon@google.comfb309512011-11-30 14:13:48 +00001298 int tileSize;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001299 if (!this->shouldTileBitmap(bitmap, params, srcRectPtr, &tileSize)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001300 // take the simple case
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001301 this->internalDrawBitmap(draw, bitmap, srcRect, m, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001302 return;
1303 }
1304
1305 // undo the translate done by SkCanvas
1306 int DX = SkMax32(0, srcRect.fLeft);
1307 int DY = SkMax32(0, srcRect.fTop);
1308 // compute clip bounds in local coordinates
1309 SkIRect clipRect;
1310 {
1311 SkRect r;
1312 r.set(draw.fClip->getBounds());
1313 SkMatrix matrix, inverse;
1314 matrix.setConcat(*draw.fMatrix, m);
1315 if (!matrix.invert(&inverse)) {
1316 return;
1317 }
1318 inverse.mapRect(&r);
1319 r.roundOut(&clipRect);
1320 // apply the canvas' translate to our local clip
1321 clipRect.offset(DX, DY);
1322 }
1323
bsalomon@google.comfb309512011-11-30 14:13:48 +00001324 int nx = bitmap.width() / tileSize;
1325 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001326 for (int x = 0; x <= nx; x++) {
1327 for (int y = 0; y <= ny; y++) {
1328 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001329 tileR.set(x * tileSize, y * tileSize,
1330 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001331 if (!SkIRect::Intersects(tileR, clipRect)) {
1332 continue;
1333 }
1334
1335 SkIRect srcR = tileR;
1336 if (!srcR.intersect(srcRect)) {
1337 continue;
1338 }
1339
1340 SkBitmap tmpB;
1341 if (bitmap.extractSubset(&tmpB, tileR)) {
1342 // now offset it to make it "local" to our tmp bitmap
1343 srcR.offset(-tileR.fLeft, -tileR.fTop);
1344
1345 SkMatrix tmpM(m);
1346 {
1347 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1348 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1349 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1350 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001351 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001352 }
1353 }
1354 }
1355}
1356
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001357namespace {
1358
1359bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1360 // detect pixel disalignment
1361 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1362 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
rmistry@google.comd6176b02012-08-23 18:14:13 +00001363 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001364 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1365 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1366 COLOR_BLEED_TOLERANCE &&
1367 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1368 COLOR_BLEED_TOLERANCE) {
1369 return true;
1370 }
1371 return false;
1372}
1373
1374bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1375 const SkMatrix& m) {
1376 // Only gets called if hasAlignedSamples returned false.
1377 // So we can assume that sampling is axis aligned but not texel aligned.
1378 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
rmistry@google.comd6176b02012-08-23 18:14:13 +00001379 SkRect innerSrcRect(srcRect), innerTransformedRect,
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001380 outerTransformedRect(transformedRect);
1381 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1382 m.mapRect(&innerTransformedRect, innerSrcRect);
1383
1384 // The gap between outerTransformedRect and innerTransformedRect
1385 // represents the projection of the source border area, which is
1386 // problematic for color bleeding. We must check whether any
1387 // destination pixels sample the border area.
1388 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1389 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1390 SkIRect outer, inner;
1391 outerTransformedRect.round(&outer);
1392 innerTransformedRect.round(&inner);
1393 // If the inner and outer rects round to the same result, it means the
1394 // border does not overlap any pixel centers. Yay!
1395 return inner != outer;
1396}
1397
1398} // unnamed namespace
1399
reed@google.comac10a2d2010-12-22 21:39:39 +00001400/*
1401 * This is called by drawBitmap(), which has to handle images that may be too
1402 * large to be represented by a single texture.
1403 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001404 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1405 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001406 */
1407void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1408 const SkBitmap& bitmap,
1409 const SkIRect& srcRect,
1410 const SkMatrix& m,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001411 const GrTextureParams& params,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001412 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001413 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1414 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001415
reed@google.com9c49bc32011-07-07 13:42:37 +00001416 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001417 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001418 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001419 return;
1420 }
1421
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001422 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001423
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001424 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001425
1426 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001427 SkAutoCachedTexture act(this, bitmap, &params, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001428 if (NULL == texture) {
1429 return;
1430 }
1431
reed@google.com20efde72011-05-09 17:00:02 +00001432 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1433 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001434 GrRect paintRect;
bsalomon@google.com91832162012-03-08 19:53:02 +00001435 float wInv = 1.f / bitmap.width();
1436 float hInv = 1.f / bitmap.height();
1437 paintRect.setLTRB(SkFloatToScalar(srcRect.fLeft * wInv),
1438 SkFloatToScalar(srcRect.fTop * hInv),
1439 SkFloatToScalar(srcRect.fRight * wInv),
1440 SkFloatToScalar(srcRect.fBottom * hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001441
rmistry@google.comd6176b02012-08-23 18:14:13 +00001442 bool needsTextureDomain = false;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001443 if (params.isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001444 // Need texture domain if drawing a sub rect.
bsalomon@google.comb8670992012-07-25 21:27:09 +00001445 needsTextureDomain = srcRect.width() < bitmap.width() || srcRect.height() < bitmap.height();
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001446 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1447 // sampling is axis-aligned
1448 GrRect floatSrcRect, transformedRect;
1449 floatSrcRect.set(srcRect);
1450 SkMatrix srcToDeviceMatrix(m);
1451 srcToDeviceMatrix.postConcat(*draw.fMatrix);
1452 srcToDeviceMatrix.mapRect(&transformedRect, floatSrcRect);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001453
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001454 if (hasAlignedSamples(floatSrcRect, transformedRect)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001455 // We could also turn off filtering here (but we already did a cache lookup with
1456 // params).
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001457 needsTextureDomain = false;
1458 } else {
1459 needsTextureDomain = needsTextureDomain &&
1460 mayColorBleed(floatSrcRect, transformedRect, m);
1461 }
1462 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001463 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001464
1465 GrRect textureDomain = GrRect::MakeEmpty();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001466 SkAutoTUnref<GrCustomStage> stage;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001467 if (needsTextureDomain) {
1468 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001469 GrScalar left, top, right, bottom;
1470 if (srcRect.width() > 1) {
1471 GrScalar border = GR_ScalarHalf / bitmap.width();
1472 left = paintRect.left() + border;
1473 right = paintRect.right() - border;
1474 } else {
1475 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1476 }
1477 if (srcRect.height() > 1) {
1478 GrScalar border = GR_ScalarHalf / bitmap.height();
1479 top = paintRect.top() + border;
1480 bottom = paintRect.bottom() - border;
1481 } else {
1482 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1483 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001484 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001485 stage.reset(SkNEW_ARGS(GrTextureDomainEffect, (texture, textureDomain, params)));
1486 } else {
1487 stage.reset(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)));
junov@google.com6acc9b32011-05-16 18:32:07 +00001488 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001489 grPaint->textureSampler(kBitmapTextureIdx)->setCustomStage(stage);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001490 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001491}
1492
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001493namespace {
1494
1495void apply_custom_stage(GrContext* context,
1496 GrTexture* srcTexture,
1497 GrTexture* dstTexture,
1498 const GrRect& rect,
1499 GrCustomStage* stage) {
1500 SkASSERT(srcTexture && srcTexture->getContext() == context);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001501 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001502 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001503 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001504
1505 GrMatrix sampleM;
1506 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1507 GrPaint paint;
1508 paint.reset();
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001509 paint.textureSampler(0)->reset(sampleM);
1510 paint.textureSampler(0)->setCustomStage(stage);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001511 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001512}
1513
1514};
1515
reed@google.com8926b162012-03-23 15:36:36 +00001516static GrTexture* filter_texture(GrContext* context, GrTexture* texture,
1517 SkImageFilter* filter, const GrRect& rect) {
1518 GrAssert(filter);
1519
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001520 GrTextureDesc desc;
1521 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1522 desc.fWidth = SkScalarCeilToInt(rect.width());
1523 desc.fHeight = SkScalarCeilToInt(rect.height());
bsalomon@google.com0342a852012-08-20 19:22:38 +00001524 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001525 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001526
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001527 if (filter->canFilterImageGPU()) {
1528 texture = filter->onFilterImageGPU(texture, rect);
1529 } else if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001530 GrAutoScratchTexture dst(context, desc);
1531 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1532 texture = dst.detach();
1533 stage->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001534 }
1535 return texture;
1536}
1537
reed@google.comac10a2d2010-12-22 21:39:39 +00001538void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1539 int left, int top, const SkPaint& paint) {
1540 CHECK_SHOULD_DRAW(draw);
1541
reed@google.com8926b162012-03-23 15:36:36 +00001542 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001543 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1544 return;
1545 }
1546
reed@google.com76dd2772012-01-05 21:15:07 +00001547 int w = bitmap.width();
1548 int h = bitmap.height();
1549
bsalomon@google.com5782d712011-01-21 21:03:59 +00001550 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001551 SkAutoCachedTexture colorLutTexture;
1552 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001553 return;
1554 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001555
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001556 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001557
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001558 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001559
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001560 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001561 sampler->reset();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001562 // draw sprite uses the default texture params
1563 SkAutoCachedTexture act(this, bitmap, NULL, &texture);
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001564 grPaint.textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1565 (GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001566
reed@google.com8926b162012-03-23 15:36:36 +00001567 SkImageFilter* filter = paint.getImageFilter();
1568 if (NULL != filter) {
1569 GrTexture* filteredTexture = filter_texture(fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001570 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001571 if (filteredTexture) {
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001572 grPaint.textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1573 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001574 texture = filteredTexture;
1575 filteredTexture->unref();
1576 }
reed@google.com76dd2772012-01-05 21:15:07 +00001577 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001578
bsalomon@google.com5782d712011-01-21 21:03:59 +00001579 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001580 GrRect::MakeXYWH(GrIntToScalar(left),
1581 GrIntToScalar(top),
1582 GrIntToScalar(w),
1583 GrIntToScalar(h)),
1584 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1585 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001586}
1587
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001588void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001589 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001590 // clear of the source device must occur before CHECK_SHOULD_DRAW
1591 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1592 if (dev->fNeedClear) {
1593 // TODO: could check here whether we really need to draw at all
1594 dev->clear(0x0);
1595 }
1596
reed@google.comac10a2d2010-12-22 21:39:39 +00001597 CHECK_SHOULD_DRAW(draw);
1598
bsalomon@google.com5782d712011-01-21 21:03:59 +00001599 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001600 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001601 grPaint.textureSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001602 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001603 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001604 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001605 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001606
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001607 GrTexture* devTex = grPaint.getTextureSampler(kBitmapTextureIdx).getCustomStage()->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001608 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001609
reed@google.com8926b162012-03-23 15:36:36 +00001610 SkImageFilter* filter = paint.getImageFilter();
1611 if (NULL != filter) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001612 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001613 SkIntToScalar(devTex->height()));
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001614 GrTexture* filteredTexture = filter_texture(fContext, devTex, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001615 if (filteredTexture) {
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001616 grPaint.textureSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
1617 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001618 devTex = filteredTexture;
1619 filteredTexture->unref();
1620 }
1621 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001622
bsalomon@google.com5782d712011-01-21 21:03:59 +00001623 const SkBitmap& bm = dev->accessBitmap(false);
1624 int w = bm.width();
1625 int h = bm.height();
1626
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001627 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001628 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1629 GrIntToScalar(y),
1630 GrIntToScalar(w),
1631 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001632
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001633 // The device being drawn may not fill up its texture (saveLayer uses
1634 // the approximate ).
1635 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1636 GR_Scalar1 * h / devTex->height());
1637
1638 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001639}
1640
reed@google.com8926b162012-03-23 15:36:36 +00001641bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001642 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001643 !filter->canFilterImageGPU()) {
reed@google.com76dd2772012-01-05 21:15:07 +00001644 return false;
1645 }
reed@google.com8926b162012-03-23 15:36:36 +00001646 return true;
1647}
1648
1649bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1650 const SkMatrix& ctm,
1651 SkBitmap* result, SkIPoint* offset) {
1652 // want explicitly our impl, so guard against a subclass of us overriding it
1653 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001654 return false;
1655 }
reed@google.com8926b162012-03-23 15:36:36 +00001656
1657 SkAutoLockPixels alp(src, !src.getTexture());
1658 if (!src.getTexture() && !src.readyToDraw()) {
1659 return false;
1660 }
1661
1662 GrPaint paint;
1663 paint.reset();
1664
1665 GrSamplerState* sampler = paint.textureSampler(kBitmapTextureIdx);
1666
1667 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001668 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1669 // must be pushed upstack.
1670 SkAutoCachedTexture act(this, src, NULL, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001671
1672 result->setConfig(src.config(), src.width(), src.height());
rmistry@google.comd6176b02012-08-23 18:14:13 +00001673 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001674 SkIntToScalar(src.height()));
reed@google.com8926b162012-03-23 15:36:36 +00001675 GrTexture* resultTexture = filter_texture(fContext, texture, filter, rect);
1676 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001677 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1678 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001679 resultTexture->unref();
1680 }
reed@google.com76dd2772012-01-05 21:15:07 +00001681 return true;
1682}
1683
reed@google.comac10a2d2010-12-22 21:39:39 +00001684///////////////////////////////////////////////////////////////////////////////
1685
1686// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001687static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001688 kTriangles_GrPrimitiveType,
1689 kTriangleStrip_GrPrimitiveType,
1690 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001691};
1692
1693void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1694 int vertexCount, const SkPoint vertices[],
1695 const SkPoint texs[], const SkColor colors[],
1696 SkXfermode* xmode,
1697 const uint16_t indices[], int indexCount,
1698 const SkPaint& paint) {
1699 CHECK_SHOULD_DRAW(draw);
1700
bsalomon@google.com5782d712011-01-21 21:03:59 +00001701 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001702 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001703 // we ignore the shader if texs is null.
1704 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001705 if (!skPaint2GrPaintNoShader(this,
1706 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001707 false,
1708 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001709 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001710 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001711 return;
1712 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001713 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001714 if (!skPaint2GrPaintShader(this,
1715 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001716 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001717 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001718 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001719 return;
1720 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001721 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001722
1723 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001724 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001725 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1726#if 0
1727 return
1728#endif
1729 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001730 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001731
bsalomon@google.com498776a2011-08-16 19:20:44 +00001732 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1733 if (NULL != colors) {
1734 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001735 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001736 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001737 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001738 }
1739 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001740 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001741 fContext->drawVertices(grPaint,
1742 gVertexMode2PrimitiveType[vmode],
1743 vertexCount,
1744 (GrPoint*) vertices,
1745 (GrPoint*) texs,
1746 colors,
1747 indices,
1748 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001749}
1750
1751///////////////////////////////////////////////////////////////////////////////
1752
1753static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001754 GrFontScaler* scaler = (GrFontScaler*)data;
1755 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001756}
1757
1758static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1759 void* auxData;
1760 GrFontScaler* scaler = NULL;
1761 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1762 scaler = (GrFontScaler*)auxData;
1763 }
1764 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001765 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001766 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1767 }
1768 return scaler;
1769}
1770
1771static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1772 SkFixed fx, SkFixed fy,
1773 const SkGlyph& glyph) {
1774 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1775
bungeman@google.com15865a72012-01-11 16:28:04 +00001776 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001777
1778 if (NULL == procs->fFontScaler) {
1779 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1780 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001781
bungeman@google.com15865a72012-01-11 16:28:04 +00001782 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1783 glyph.getSubXFixed(),
1784 glyph.getSubYFixed()),
1785 SkFixedFloorToFixed(fx),
1786 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001787 procs->fFontScaler);
1788}
1789
bsalomon@google.com5782d712011-01-21 21:03:59 +00001790SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001791
1792 // deferred allocation
1793 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001794 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001795 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1796 fDrawProcs->fContext = fContext;
1797 }
1798
1799 // init our (and GL's) state
1800 fDrawProcs->fTextContext = context;
1801 fDrawProcs->fFontScaler = NULL;
1802 return fDrawProcs;
1803}
1804
1805void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1806 size_t byteLength, SkScalar x, SkScalar y,
1807 const SkPaint& paint) {
1808 CHECK_SHOULD_DRAW(draw);
1809
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001810 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001811 // this guy will just call our drawPath()
1812 draw.drawText((const char*)text, byteLength, x, y, paint);
1813 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001814 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001815
1816 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001817 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001818 if (!skPaint2GrPaintShader(this,
1819 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001820 true,
twiz@google.com58071162012-07-18 21:41:50 +00001821 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001822 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001823 return;
1824 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001825 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1826 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001827 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1828 }
1829}
1830
1831void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1832 size_t byteLength, const SkScalar pos[],
1833 SkScalar constY, int scalarsPerPos,
1834 const SkPaint& paint) {
1835 CHECK_SHOULD_DRAW(draw);
1836
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001837 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001838 // this guy will just call our drawPath()
1839 draw.drawPosText((const char*)text, byteLength, pos, constY,
1840 scalarsPerPos, paint);
1841 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001842 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001843
1844 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001845 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001846 if (!skPaint2GrPaintShader(this,
1847 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001848 true,
twiz@google.com58071162012-07-18 21:41:50 +00001849 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001850 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001851 return;
1852 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001853 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1854 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001855 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1856 scalarsPerPos, paint);
1857 }
1858}
1859
1860void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1861 size_t len, const SkPath& path,
1862 const SkMatrix* m, const SkPaint& paint) {
1863 CHECK_SHOULD_DRAW(draw);
1864
1865 SkASSERT(draw.fDevice == this);
1866 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1867}
1868
1869///////////////////////////////////////////////////////////////////////////////
1870
reed@google.comf67e4cf2011-03-15 20:56:58 +00001871bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1872 if (!paint.isLCDRenderText()) {
1873 // we're cool with the paint as is
1874 return false;
1875 }
1876
1877 if (paint.getShader() ||
1878 paint.getXfermode() || // unless its srcover
1879 paint.getMaskFilter() ||
1880 paint.getRasterizer() ||
1881 paint.getColorFilter() ||
1882 paint.getPathEffect() ||
1883 paint.isFakeBoldText() ||
1884 paint.getStyle() != SkPaint::kFill_Style) {
1885 // turn off lcd
1886 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1887 flags->fHinting = paint.getHinting();
1888 return true;
1889 }
1890 // we're cool with the paint as is
1891 return false;
1892}
1893
reed@google.com75d939b2011-12-07 15:07:23 +00001894void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001895 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001896 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001897}
1898
reed@google.comf67e4cf2011-03-15 20:56:58 +00001899///////////////////////////////////////////////////////////////////////////////
1900
bsalomon@google.comfb309512011-11-30 14:13:48 +00001901bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001902 const GrTextureParams& params) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001903 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001904 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001905
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001906 GrTextureDesc desc;
1907 desc.fWidth = bitmap.width();
1908 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001909 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001910
robertphillips@google.com9c2ea842012-08-13 17:47:59 +00001911 GrCacheData cacheData(key);
1912
1913 return this->context()->isTextureInCache(desc, cacheData, &params);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001914}
1915
1916
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001917SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1918 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001919 bool isOpaque,
1920 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001921 GrTextureDesc desc;
1922 desc.fConfig = fRenderTarget->config();
1923 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1924 desc.fWidth = width;
1925 desc.fHeight = height;
1926 desc.fSampleCnt = fRenderTarget->numSamples();
1927
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001928 GrTexture* texture;
1929 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001930 // Skia's convention is to only clear a device if it is non-opaque.
1931 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001932
1933#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1934 // layers are never draw in repeat modes, so we can request an approx
1935 // match and ignore any padding.
1936 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1937 GrContext::kApprox_ScratchTexMatch :
1938 GrContext::kExact_ScratchTexMatch;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001939 texture = fContext->lockScratchTexture(desc, matchType);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001940#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,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001947 needClear));
1948 } else {
1949 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1950 width, height);
1951 return NULL;
1952 }
1953}
1954
1955SkGpuDevice::SkGpuDevice(GrContext* context,
1956 GrTexture* texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001957 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00001958 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1959
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001960 GrAssert(texture && texture->asRenderTarget());
bsalomon@google.com8090e652012-08-28 15:07:11 +00001961 // This constructor is called from onCreateCompatibleDevice. It has locked the RT in the texture
1962 // cache. We pass true for the third argument so that it will get unlocked.
1963 this->initFromRenderTarget(context, texture->asRenderTarget(), true);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001964 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001965}