blob: a792977ff8f4919fd09539278783848fb38ae140 [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"
senorblanco@chromium.org9c397442012-09-27 21:57:45 +000019#include "SkDeviceImageFilterProxy.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000020#include "SkDrawProcs.h"
21#include "SkGlyphCache.h"
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +000022#include "SkImageFilter.h"
reed@google.comfe626382011-09-21 13:50:35 +000023#include "SkTLazy.h"
reed@google.comc9aa5872011-04-05 21:05:37 +000024#include "SkUtils.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000025
bsalomon@google.com06cd7322012-03-30 18:45:35 +000026#define CACHE_COMPATIBLE_DEVICE_TEXTURES 1
reed@google.comac10a2d2010-12-22 21:39:39 +000027
28#if 0
29 extern bool (*gShouldDrawProc)();
30 #define CHECK_SHOULD_DRAW(draw) \
31 do { \
32 if (gShouldDrawProc && !gShouldDrawProc()) return; \
33 this->prepareRenderTarget(draw); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000034 GrAssert(!fNeedClear) \
reed@google.comac10a2d2010-12-22 21:39:39 +000035 } while (0)
36#else
bsalomon@google.com06cd7322012-03-30 18:45:35 +000037 #define CHECK_SHOULD_DRAW(draw) this->prepareRenderTarget(draw); \
38 GrAssert(!fNeedClear)
reed@google.comac10a2d2010-12-22 21:39:39 +000039#endif
40
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000041// we use the same texture slot on GrPaint for bitmaps and shaders
42// (since drawBitmap, drawSprite, and drawDevice ignore skia's shader)
43enum {
44 kBitmapTextureIdx = 0,
twiz@google.com58071162012-07-18 21:41:50 +000045 kShaderTextureIdx = 0,
46 kColorFilterTextureIdx = 1
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000047};
48
reed@google.comcde92112011-07-06 20:00:52 +000049
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000050#define MAX_BLUR_SIGMA 4.0f
51// FIXME: This value comes from from SkBlurMaskFilter.cpp.
52// Should probably be put in a common header someplace.
53#define MAX_BLUR_RADIUS SkIntToScalar(128)
54// This constant approximates the scaling done in the software path's
55// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
56// IMHO, it actually should be 1: we blur "less" than we should do
57// according to the CSS and canvas specs, simply because Safari does the same.
58// Firefox used to do the same too, until 4.0 where they fixed it. So at some
59// point we should probably get rid of these scaling constants and rebaseline
60// all the blur tests.
61#define BLUR_SIGMA_SCALE 0.6f
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000062// This constant represents the screen alignment criterion in texels for
rmistry@google.comd6176b02012-08-23 18:14:13 +000063// requiring texture domain clamping to prevent color bleeding when drawing
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000064// a sub region of a larger source image.
65#define COLOR_BLEED_TOLERANCE SkFloatToScalar(0.001f)
bsalomon@google.com06cd7322012-03-30 18:45:35 +000066
67#define DO_DEFERRED_CLEAR \
68 do { \
69 if (fNeedClear) { \
bsalomon@google.com730ca3b2012-04-03 13:25:12 +000070 this->clear(0x0); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000071 fNeedClear = false; \
72 } \
73 } while (false) \
74
reed@google.comac10a2d2010-12-22 21:39:39 +000075///////////////////////////////////////////////////////////////////////////////
76
reed@google.comb0a34d82012-07-11 19:57:55 +000077#define CHECK_FOR_NODRAW_ANNOTATION(paint) \
78 do { if (paint.isNoDrawAnnotation()) { return; } } while (0)
79
80///////////////////////////////////////////////////////////////////////////////
81
82
bsalomon@google.com84405e02012-03-05 19:57:21 +000083class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable {
84public:
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000085 SkAutoCachedTexture()
86 : fDevice(NULL)
87 , fTexture(NULL) {
rmistry@google.comd6176b02012-08-23 18:14:13 +000088 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000089
bsalomon@google.com84405e02012-03-05 19:57:21 +000090 SkAutoCachedTexture(SkGpuDevice* device,
91 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +000092 const GrTextureParams* params,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000093 GrTexture** texture)
94 : fDevice(NULL)
95 , fTexture(NULL) {
96 GrAssert(NULL != texture);
bsalomon@google.comb8670992012-07-25 21:27:09 +000097 *texture = this->set(device, bitmap, params);
reed@google.comac10a2d2010-12-22 21:39:39 +000098 }
reed@google.comac10a2d2010-12-22 21:39:39 +000099
bsalomon@google.com84405e02012-03-05 19:57:21 +0000100 ~SkAutoCachedTexture() {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000101 if (NULL != fTexture) {
102 GrUnlockCachedBitmapTexture(fTexture);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000103 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 }
bsalomon@google.com84405e02012-03-05 19:57:21 +0000105
106 GrTexture* set(SkGpuDevice* device,
107 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000108 const GrTextureParams* params) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000109 if (NULL != fTexture) {
110 GrUnlockCachedBitmapTexture(fTexture);
111 fTexture = NULL;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000112 }
113 fDevice = device;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000114 GrTexture* result = (GrTexture*)bitmap.getTexture();
115 if (NULL == result) {
116 // Cannot return the native texture so look it up in our cache
117 fTexture = GrLockCachedBitmapTexture(device->context(), bitmap, params);
118 result = fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000119 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000120 return result;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000121 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000122
bsalomon@google.com84405e02012-03-05 19:57:21 +0000123private:
124 SkGpuDevice* fDevice;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000125 GrTexture* fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000126};
reed@google.comac10a2d2010-12-22 21:39:39 +0000127
128///////////////////////////////////////////////////////////////////////////////
129
reed@google.comac10a2d2010-12-22 21:39:39 +0000130struct GrSkDrawProcs : public SkDrawProcs {
131public:
132 GrContext* fContext;
133 GrTextContext* fTextContext;
134 GrFontScaler* fFontScaler; // cached in the skia glyphcache
135};
136
137///////////////////////////////////////////////////////////////////////////////
138
reed@google.comaf951c92011-06-16 19:10:39 +0000139static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
140 switch (config) {
141 case kAlpha_8_GrPixelConfig:
142 *isOpaque = false;
143 return SkBitmap::kA8_Config;
144 case kRGB_565_GrPixelConfig:
145 *isOpaque = true;
146 return SkBitmap::kRGB_565_Config;
147 case kRGBA_4444_GrPixelConfig:
148 *isOpaque = false;
149 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000150 case kSkia8888_PM_GrPixelConfig:
151 // we don't currently have a way of knowing whether
152 // a 8888 is opaque based on the config.
153 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000154 return SkBitmap::kARGB_8888_Config;
155 default:
156 *isOpaque = false;
157 return SkBitmap::kNo_Config;
158 }
159}
reed@google.comac10a2d2010-12-22 21:39:39 +0000160
reed@google.comaf951c92011-06-16 19:10:39 +0000161static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000162 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000163
164 bool isOpaque;
165 SkBitmap bitmap;
166 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
167 renderTarget->width(), renderTarget->height());
168 bitmap.setIsOpaque(isOpaque);
169 return bitmap;
170}
171
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000172SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000173: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000174 this->initFromRenderTarget(context, texture->asRenderTarget(), false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000175}
176
reed@google.comaf951c92011-06-16 19:10:39 +0000177SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000178: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000179 this->initFromRenderTarget(context, renderTarget, false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000180}
181
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000182void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.com8090e652012-08-28 15:07:11 +0000183 GrRenderTarget* renderTarget,
184 bool cached) {
reed@google.comaf951c92011-06-16 19:10:39 +0000185 fNeedPrepareRenderTarget = false;
186 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000187
reed@google.comaf951c92011-06-16 19:10:39 +0000188 fContext = context;
189 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000190
reed@google.comaf951c92011-06-16 19:10:39 +0000191 fRenderTarget = NULL;
192 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000193
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000194 GrAssert(NULL != renderTarget);
195 fRenderTarget = renderTarget;
196 fRenderTarget->ref();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000197
bsalomon@google.coma2921122012-08-28 12:34:17 +0000198 // Hold onto to the texture in the pixel ref (if there is one) because the texture holds a ref
199 // on the RT but not vice-versa.
200 // TODO: Remove this trickery once we figure out how to make SkGrPixelRef do this without
201 // busting chrome (for a currently unknown reason).
202 GrSurface* surface = fRenderTarget->asTexture();
203 if (NULL == surface) {
204 surface = fRenderTarget;
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000205 }
bsalomon@google.com8090e652012-08-28 15:07:11 +0000206 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (surface, cached));
bsalomon@google.coma2921122012-08-28 12:34:17 +0000207
reed@google.comaf951c92011-06-16 19:10:39 +0000208 this->setPixelRef(pr, 0)->unref();
209}
210
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000211SkGpuDevice::SkGpuDevice(GrContext* context,
212 SkBitmap::Config config,
213 int width,
214 int height)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000215 : SkDevice(config, width, height, false /*isOpaque*/) {
216
reed@google.comac10a2d2010-12-22 21:39:39 +0000217 fNeedPrepareRenderTarget = false;
218 fDrawProcs = NULL;
219
reed@google.com7b201d22011-01-11 18:59:23 +0000220 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000221 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000222
reed@google.comac10a2d2010-12-22 21:39:39 +0000223 fRenderTarget = NULL;
224 fNeedClear = false;
225
reed@google.comaf951c92011-06-16 19:10:39 +0000226 if (config != SkBitmap::kRGB_565_Config) {
227 config = SkBitmap::kARGB_8888_Config;
228 }
229 SkBitmap bm;
230 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000231
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000232 GrTextureDesc desc;
233 desc.fFlags = kRenderTarget_GrTextureFlagBit;
234 desc.fWidth = width;
235 desc.fHeight = height;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000236 desc.fConfig = SkBitmapConfig2GrPixelConfig(bm.config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000237
bsalomon@google.coma2921122012-08-28 12:34:17 +0000238 SkAutoTUnref<GrTexture> texture(fContext->createUncachedTexture(desc, NULL, 0));
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000239
bsalomon@google.coma2921122012-08-28 12:34:17 +0000240 if (NULL != texture) {
241 fRenderTarget = texture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000242 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000243
reed@google.comaf951c92011-06-16 19:10:39 +0000244 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000245
reed@google.comaf951c92011-06-16 19:10:39 +0000246 // wrap the bitmap with a pixelref to expose our texture
bsalomon@google.coma2921122012-08-28 12:34:17 +0000247 SkGrPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (texture));
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000248 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000249 } else {
250 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
251 width, height);
252 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000253 }
254}
255
256SkGpuDevice::~SkGpuDevice() {
257 if (fDrawProcs) {
258 delete fDrawProcs;
259 }
260
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000261 // The SkGpuDevice gives the context the render target (e.g., in gainFocus)
rmistry@google.comd6176b02012-08-23 18:14:13 +0000262 // This call gives the context a chance to relinquish it
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000263 fContext->setRenderTarget(NULL);
264
bsalomon@google.coma2921122012-08-28 12:34:17 +0000265 SkSafeUnref(fRenderTarget);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000266 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000267}
268
reed@google.comac10a2d2010-12-22 21:39:39 +0000269///////////////////////////////////////////////////////////////////////////////
270
271void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000272 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000273 fContext->setRenderTarget(fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000274 fNeedPrepareRenderTarget = true;
275}
276
277///////////////////////////////////////////////////////////////////////////////
278
bsalomon@google.comc4364992011-11-07 15:54:49 +0000279namespace {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000280GrPixelConfig config8888_to_grconfig_and_flags(SkCanvas::Config8888 config8888, uint32_t* flags) {
bsalomon@google.comc4364992011-11-07 15:54:49 +0000281 switch (config8888) {
282 case SkCanvas::kNative_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000283 *flags = 0;
284 return kSkia8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000285 case SkCanvas::kNative_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000286 *flags = GrContext::kUnpremul_PixelOpsFlag;
287 return kSkia8888_PM_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000288 case SkCanvas::kBGRA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000289 *flags = 0;
290 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000291 case SkCanvas::kBGRA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000292 *flags = GrContext::kUnpremul_PixelOpsFlag;
293 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000294 case SkCanvas::kRGBA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000295 *flags = 0;
296 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000297 case SkCanvas::kRGBA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000298 *flags = GrContext::kUnpremul_PixelOpsFlag;
299 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000300 default:
301 GrCrash("Unexpected Config8888.");
bsalomon@google.comccaa0022012-09-25 19:55:07 +0000302 *flags = 0; // suppress warning
bsalomon@google.comc4364992011-11-07 15:54:49 +0000303 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.com88becf42012-10-05 14:54:42 +0000478 paint->colorSampler(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.com88becf42012-10-05 14:54:42 +0000540 GrAssert(!grPaint->isColorStageEnabled(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);
bsalomon@google.com88becf42012-10-05 14:54:42 +0000567 GrSamplerState* colorSampler = grPaint->colorSampler(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,
bsalomon@google.com88becf42012-10-05 14:54:42 +0000581 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxColorStages],
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
bsalomon@google.com88becf42012-10-05 14:54:42 +0000596 GrSamplerState* sampler = grPaint->colorSampler(kShaderTextureIdx);
rileya@google.com91f319c2012-07-25 17:18:31 +0000597 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;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000680 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
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;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000716 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
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;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000778 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
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 }
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000887
robertphillips@google.comccb39502012-10-01 18:25:13 +0000888 SkAutoTUnref<GrTexture> blurTexture;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000889
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000890 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000891
robertphillips@google.comccb39502012-10-01 18:25:13 +0000892 {
893 GrContext::AutoRenderTarget art(context, pathTexture->asRenderTarget());
894 GrContext::AutoClip ac(context, srcRect);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000895
robertphillips@google.comccb39502012-10-01 18:25:13 +0000896 context->clear(NULL, 0);
897 GrPaint tempPaint;
898 tempPaint.reset();
899
900 tempPaint.fAntiAlias = grp->fAntiAlias;
901 if (tempPaint.fAntiAlias) {
902 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
903 // blend coeff of zero requires dual source blending support in order
904 // to properly blend partially covered pixels. This means the AA
905 // code path may not be taken. So we use a dst blend coeff of ISA. We
906 // could special case AA draws to a dst surface with known alpha=0 to
907 // use a zero dst coeff when dual source blending isn't available.
908 tempPaint.fSrcBlendCoeff = kOne_GrBlendCoeff;
909 tempPaint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000910 }
robertphillips@google.comccb39502012-10-01 18:25:13 +0000911 // Draw hard shadow to pathTexture with path topleft at origin 0,0.
912 context->drawPath(tempPaint, path, pathFillType, &offset);
913
914 // If we're doing a normal blur, we can clobber the pathTexture in the
915 // gaussianBlur. Otherwise, we need to save it for later compositing.
916 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000917 blurTexture.reset(context->gaussianBlur(pathTexture, isNormalBlur,
robertphillips@google.comccb39502012-10-01 18:25:13 +0000918 srcRect, sigma, sigma));
919
920 if (!isNormalBlur) {
921 GrPaint paint;
922 paint.reset();
bsalomon@google.com88becf42012-10-05 14:54:42 +0000923 paint.colorSampler(0)->matrix()->setIDiv(pathTexture->width(),
robertphillips@google.comccb39502012-10-01 18:25:13 +0000924 pathTexture->height());
925 // Blend pathTexture over blurTexture.
926 context->setRenderTarget(blurTexture->asRenderTarget());
bsalomon@google.com88becf42012-10-05 14:54:42 +0000927 paint.colorSampler(0)->setCustomStage(SkNEW_ARGS
robertphillips@google.comccb39502012-10-01 18:25:13 +0000928 (GrSingleTextureEffect, (pathTexture)))->unref();
929 if (SkMaskFilter::kInner_BlurType == blurType) {
930 // inner: dst = dst * src
931 paint.fSrcBlendCoeff = kDC_GrBlendCoeff;
932 paint.fDstBlendCoeff = kZero_GrBlendCoeff;
933 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
934 // solid: dst = src + dst - src * dst
935 // = (1 - dst) * src + 1 * dst
936 paint.fSrcBlendCoeff = kIDC_GrBlendCoeff;
937 paint.fDstBlendCoeff = kOne_GrBlendCoeff;
938 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
939 // outer: dst = dst * (1 - src)
940 // = 0 * src + (1 - src) * dst
941 paint.fSrcBlendCoeff = kZero_GrBlendCoeff;
942 paint.fDstBlendCoeff = kISC_GrBlendCoeff;
943 }
944 context->drawRect(paint, srcRect);
945 }
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000946 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000947
bsalomon@google.come3d32162012-07-20 13:37:06 +0000948 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
949 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000950 }
951
bsalomon@google.com88becf42012-10-05 14:54:42 +0000952 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000953 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000954 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
955 grp->coverageSampler(MASK_IDX)->reset();
956 grp->coverageSampler(MASK_IDX)->setCustomStage(
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000957 SkNEW_ARGS(GrSingleTextureEffect, (blurTexture)))->unref();
bsalomon@google.com88becf42012-10-05 14:54:42 +0000958 grp->coverageSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000959 -finalRect.fTop);
bsalomon@google.com88becf42012-10-05 14:54:42 +0000960 grp->coverageSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000961 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000962 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000963 return true;
964}
965
bsalomon@google.com85003222012-03-28 14:44:37 +0000966bool drawWithMaskFilter(GrContext* context, const SkPath& path,
967 SkMaskFilter* filter, const SkMatrix& matrix,
968 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000969 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000970 SkMask srcM, dstM;
971
972 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +0000973 SkMask::kComputeBoundsAndRenderImage_CreateMode,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000974 style)) {
reed@google.com69302852011-02-16 18:08:07 +0000975 return false;
976 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000977 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000978
979 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
980 return false;
981 }
982 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000983 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000984
985 if (clip.quickReject(dstM.fBounds)) {
986 return false;
987 }
988 if (bounder && !bounder->doIRect(dstM.fBounds)) {
989 return false;
990 }
991
992 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
993 // the current clip (and identity matrix) and grpaint settings
994
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000995 GrContext::AutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +0000996
bsalomon@google.come3d32162012-07-20 13:37:06 +0000997 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
998 return false;
999 }
1000
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001001 GrTextureDesc desc;
1002 desc.fWidth = dstM.fBounds.width();
1003 desc.fHeight = dstM.fBounds.height();
1004 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +00001005
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001006 GrAutoScratchTexture ast(context, desc);
1007 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001008
reed@google.com69302852011-02-16 18:08:07 +00001009 if (NULL == texture) {
1010 return false;
1011 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001012 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001013 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +00001014
bsalomon@google.com88becf42012-10-05 14:54:42 +00001015 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001016 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +00001017 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
1018 grp->coverageSampler(MASK_IDX)->reset();
1019 grp->coverageSampler(MASK_IDX)->setCustomStage(
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001020 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001021 GrRect d;
1022 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +00001023 GrIntToScalar(dstM.fBounds.fTop),
1024 GrIntToScalar(dstM.fBounds.fRight),
1025 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001026
bsalomon@google.com88becf42012-10-05 14:54:42 +00001027 GrMatrix* m = grp->coverageSampler(MASK_IDX)->matrix();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001028 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1029 -dstM.fBounds.fTop*SK_Scalar1);
1030 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001031 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +00001032 return true;
1033}
reed@google.com69302852011-02-16 18:08:07 +00001034
bsalomon@google.com85003222012-03-28 14:44:37 +00001035}
1036
1037///////////////////////////////////////////////////////////////////////////////
1038
reed@google.com0c219b62011-02-16 21:31:18 +00001039void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001040 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +00001041 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +00001042 CHECK_FOR_NODRAW_ANNOTATION(paint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001043 CHECK_SHOULD_DRAW(draw);
1044
reed@google.comfe626382011-09-21 13:50:35 +00001045 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001046
bsalomon@google.com5782d712011-01-21 21:03:59 +00001047 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001048 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001049 if (!skPaint2GrPaintShader(this,
1050 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001051 true,
twiz@google.com58071162012-07-18 21:41:50 +00001052 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001053 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001054 return;
1055 }
1056
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001057 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1058 // if we can, we draw lots faster (raster device does this same test)
1059 SkScalar hairlineCoverage;
1060 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
1061 doFill = false;
1062 grPaint.fCoverage = SkScalarRoundToInt(hairlineCoverage *
1063 grPaint.fCoverage);
1064 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001065
reed@google.comfe626382011-09-21 13:50:35 +00001066 // If we have a prematrix, apply it to the path, optimizing for the case
1067 // where the original path can in fact be modified in place (even though
1068 // its parameter type is const).
1069 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1070 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001071
1072 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001073 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001074
reed@google.come3445642011-02-16 23:20:39 +00001075 if (!pathIsMutable) {
1076 result = &tmpPath;
1077 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001078 }
reed@google.come3445642011-02-16 23:20:39 +00001079 // should I push prePathMatrix on our MV stack temporarily, instead
1080 // of applying it here? See SkDraw.cpp
1081 pathPtr->transform(*prePathMatrix, result);
1082 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001083 }
reed@google.com0c219b62011-02-16 21:31:18 +00001084 // at this point we're done with prePathMatrix
1085 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001086
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001087 if (paint.getPathEffect() ||
1088 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001089 // it is safe to use tmpPath here, even if we already used it for the
1090 // prepathmatrix, since getFillPath can take the same object for its
1091 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001092 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001093 pathPtr = &tmpPath;
1094 }
1095
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001096 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001097 // avoid possibly allocating a new path in transform if we can
1098 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1099
1100 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001101 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001102 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001103 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001104 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001105 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001106 &grPaint, pathFillType)) {
rmistry@google.comd6176b02012-08-23 18:14:13 +00001107 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001108 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001109 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001110 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001111 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001112 }
reed@google.com69302852011-02-16 18:08:07 +00001113 return;
1114 }
reed@google.com69302852011-02-16 18:08:07 +00001115
bsalomon@google.com47059542012-06-06 20:51:20 +00001116 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001117
reed@google.com0c219b62011-02-16 21:31:18 +00001118 if (doFill) {
1119 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001120 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001121 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001122 break;
1123 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001124 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001125 break;
1126 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001127 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001128 break;
1129 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001130 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001131 break;
1132 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001133 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001134 return;
1135 }
1136 }
1137
reed@google.com07f3ee12011-05-16 17:21:57 +00001138 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001139}
1140
bsalomon@google.comfb309512011-11-30 14:13:48 +00001141namespace {
1142
1143inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1144 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1145 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1146 return tilesX * tilesY;
1147}
1148
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001149inline int determine_tile_size(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001150 const SkRect& src,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001151 int maxTextureSize) {
1152 static const int kSmallTileSize = 1 << 10;
1153 if (maxTextureSize <= kSmallTileSize) {
1154 return maxTextureSize;
1155 }
1156
1157 size_t maxTexTotalTileSize;
1158 size_t smallTotalTileSize;
1159
robertphillips@google.combac6b052012-09-28 18:06:49 +00001160 SkIRect iSrc;
1161 src.roundOut(&iSrc);
1162
1163 maxTexTotalTileSize = get_tile_count(iSrc.fLeft,
1164 iSrc.fTop,
1165 iSrc.fRight,
1166 iSrc.fBottom,
1167 maxTextureSize);
1168 smallTotalTileSize = get_tile_count(iSrc.fLeft,
1169 iSrc.fTop,
1170 iSrc.fRight,
1171 iSrc.fBottom,
1172 kSmallTileSize);
1173
bsalomon@google.comfb309512011-11-30 14:13:48 +00001174 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1175 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1176
1177 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1178 return kSmallTileSize;
1179 } else {
1180 return maxTextureSize;
1181 }
1182}
1183}
1184
1185bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001186 const GrTextureParams& params,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001187 const SkRect* srcRectPtr) const {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001188 // if bitmap is explictly texture backed then just use the texture
1189 if (NULL != bitmap.getTexture()) {
1190 return false;
1191 }
1192 // if it's larger than the max texture size, then we have no choice but
1193 // tiling
1194 const int maxTextureSize = fContext->getMaxTextureSize();
1195 if (bitmap.width() > maxTextureSize ||
1196 bitmap.height() > maxTextureSize) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001197 return true;
1198 }
1199 // if we are going to have to draw the whole thing, then don't tile
1200 if (NULL == srcRectPtr) {
1201 return false;
1202 }
1203 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.comb8670992012-07-25 21:27:09 +00001204 if (this->isBitmapInTextureCache(bitmap, params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001205 return false;
1206 }
1207
1208 // At this point we know we could do the draw by uploading the entire bitmap
1209 // as a texture. However, if the texture would be large compared to the
1210 // cache size and we don't require most of it for this draw then tile to
1211 // reduce the amount of upload and cache spill.
1212
1213 // assumption here is that sw bitmap size is a good proxy for its size as
1214 // a texture
1215 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001216 size_t cacheSize;
1217 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001218 if (bmpSize < cacheSize / 2) {
1219 return false;
1220 }
1221
robertphillips@google.combac6b052012-09-28 18:06:49 +00001222 SkScalar fracUsed = SkScalarMul(srcRectPtr->width() / bitmap.width(),
1223 srcRectPtr->height() / bitmap.height());
1224 if (fracUsed <= SK_ScalarHalf) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001225 return true;
1226 } else {
1227 return false;
1228 }
1229}
1230
reed@google.comac10a2d2010-12-22 21:39:39 +00001231void SkGpuDevice::drawBitmap(const SkDraw& draw,
1232 const SkBitmap& bitmap,
1233 const SkIRect* srcRectPtr,
1234 const SkMatrix& m,
1235 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001236
1237 SkRect tmp;
1238 SkRect* tmpPtr = NULL;
1239
1240 // convert from SkIRect to SkRect
1241 if (NULL != srcRectPtr) {
1242 tmp.set(*srcRectPtr);
1243 tmpPtr = &tmp;
1244 }
1245
1246 // We cannot call drawBitmapRect here since 'm' could be anything
1247 this->drawBitmapCommon(draw, bitmap, tmpPtr, m, paint);
1248}
1249
1250void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
1251 const SkBitmap& bitmap,
1252 const SkRect* srcRectPtr,
1253 const SkMatrix& m,
1254 const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001255 CHECK_SHOULD_DRAW(draw);
1256
robertphillips@google.combac6b052012-09-28 18:06:49 +00001257 SkRect srcRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001258 if (NULL == srcRectPtr) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001259 srcRect.set(0, 0, SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001260 } else {
1261 srcRect = *srcRectPtr;
1262 }
1263
junov@google.comd935cfb2011-06-27 20:48:23 +00001264 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001265 // Convert the bitmap to a shader so that the rect can be drawn
1266 // through drawRect, which supports mask filters.
robertphillips@google.combac6b052012-09-28 18:06:49 +00001267 SkMatrix newM(m);
junov@google.com1d329782011-07-28 20:10:09 +00001268 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001269 const SkBitmap* bitmapPtr = &bitmap;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001270 if (NULL != srcRectPtr) {
1271 SkIRect iSrc;
1272 srcRect.roundOut(&iSrc);
1273 if (!bitmap.extractSubset(&tmp, iSrc)) {
epoger@google.com9ef2d832011-07-01 21:12:20 +00001274 return; // extraction failed
1275 }
1276 bitmapPtr = &tmp;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001277 srcRect.offset(SkIntToScalar(-iSrc.fLeft), SkIntToScalar(-iSrc.fTop));
1278 // The source rect has changed so update the matrix
1279 newM.preTranslate(SkIntToScalar(iSrc.fLeft), SkIntToScalar(iSrc.fTop));
junov@google.comd935cfb2011-06-27 20:48:23 +00001280 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001281
junov@google.comd935cfb2011-06-27 20:48:23 +00001282 SkPaint paintWithTexture(paint);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001283 paintWithTexture.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
junov@google.comd935cfb2011-06-27 20:48:23 +00001284 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001285
robertphillips@google.combac6b052012-09-28 18:06:49 +00001286 // Transform 'newM' needs to be concatenated to the draw matrix,
1287 // rather than transforming the primitive directly, so that 'newM' will
junov@google.com1d329782011-07-28 20:10:09 +00001288 // also affect the behavior of the mask filter.
1289 SkMatrix drawMatrix;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001290 drawMatrix.setConcat(*draw.fMatrix, newM);
junov@google.com1d329782011-07-28 20:10:09 +00001291 SkDraw transformedDraw(draw);
1292 transformedDraw.fMatrix = &drawMatrix;
1293
robertphillips@google.combac6b052012-09-28 18:06:49 +00001294 this->drawRect(transformedDraw, srcRect, paintWithTexture);
junov@google.com1d329782011-07-28 20:10:09 +00001295
junov@google.comd935cfb2011-06-27 20:48:23 +00001296 return;
1297 }
1298
bsalomon@google.com5782d712011-01-21 21:03:59 +00001299 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001300 SkAutoCachedTexture colorLutTexture;
1301 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001302 return;
1303 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001304 GrTextureParams params;
1305 params.setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001306
robertphillips@google.combac6b052012-09-28 18:06:49 +00001307 if (!this->shouldTileBitmap(bitmap, params, srcRectPtr)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001308 // take the simple case
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001309 this->internalDrawBitmap(draw, bitmap, srcRect, m, params, &grPaint);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001310 } else {
1311 this->drawTiledBitmap(draw, bitmap, srcRect, m, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001312 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001313}
1314
1315// Break 'bitmap' into several tiles to draw it since it has already
1316// been determined to be too large to fit in VRAM
1317void SkGpuDevice::drawTiledBitmap(const SkDraw& draw,
1318 const SkBitmap& bitmap,
1319 const SkRect& srcRect,
1320 const SkMatrix& m,
1321 const GrTextureParams& params,
1322 GrPaint* grPaint) {
1323 const int maxTextureSize = fContext->getMaxTextureSize();
1324
1325 int tileSize = determine_tile_size(bitmap, srcRect, maxTextureSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001326
reed@google.comac10a2d2010-12-22 21:39:39 +00001327 // compute clip bounds in local coordinates
robertphillips@google.combac6b052012-09-28 18:06:49 +00001328 SkRect clipRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001329 {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001330 clipRect.set(draw.fClip->getBounds());
reed@google.comac10a2d2010-12-22 21:39:39 +00001331 SkMatrix matrix, inverse;
1332 matrix.setConcat(*draw.fMatrix, m);
1333 if (!matrix.invert(&inverse)) {
1334 return;
1335 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001336 inverse.mapRect(&clipRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001337 }
1338
bsalomon@google.comfb309512011-11-30 14:13:48 +00001339 int nx = bitmap.width() / tileSize;
1340 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001341 for (int x = 0; x <= nx; x++) {
1342 for (int y = 0; y <= ny; y++) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001343 SkRect tileR;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001344 tileR.set(SkIntToScalar(x * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001345 SkIntToScalar(y * tileSize),
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001346 SkIntToScalar((x + 1) * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001347 SkIntToScalar((y + 1) * tileSize));
1348
1349 if (!SkRect::Intersects(tileR, clipRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001350 continue;
1351 }
1352
robertphillips@google.combac6b052012-09-28 18:06:49 +00001353 if (!tileR.intersect(srcRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001354 continue;
1355 }
1356
1357 SkBitmap tmpB;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001358 SkIRect iTileR;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001359 tileR.roundOut(&iTileR);
1360 if (bitmap.extractSubset(&tmpB, iTileR)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001361 // now offset it to make it "local" to our tmp bitmap
robertphillips@google.combac6b052012-09-28 18:06:49 +00001362 tileR.offset(SkIntToScalar(-iTileR.fLeft), SkIntToScalar(-iTileR.fTop));
reed@google.comac10a2d2010-12-22 21:39:39 +00001363 SkMatrix tmpM(m);
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +00001364 tmpM.preTranslate(SkIntToScalar(iTileR.fLeft),
robertphillips@google.comffad46b2012-10-01 14:32:51 +00001365 SkIntToScalar(iTileR.fTop));
1366
robertphillips@google.combac6b052012-09-28 18:06:49 +00001367 this->internalDrawBitmap(draw, tmpB, tileR, tmpM, params, grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001368 }
1369 }
1370 }
1371}
1372
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001373namespace {
1374
1375bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1376 // detect pixel disalignment
1377 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1378 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
rmistry@google.comd6176b02012-08-23 18:14:13 +00001379 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001380 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1381 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1382 COLOR_BLEED_TOLERANCE &&
1383 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1384 COLOR_BLEED_TOLERANCE) {
1385 return true;
1386 }
1387 return false;
1388}
1389
1390bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1391 const SkMatrix& m) {
1392 // Only gets called if hasAlignedSamples returned false.
1393 // So we can assume that sampling is axis aligned but not texel aligned.
1394 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
rmistry@google.comd6176b02012-08-23 18:14:13 +00001395 SkRect innerSrcRect(srcRect), innerTransformedRect,
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001396 outerTransformedRect(transformedRect);
1397 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1398 m.mapRect(&innerTransformedRect, innerSrcRect);
1399
1400 // The gap between outerTransformedRect and innerTransformedRect
1401 // represents the projection of the source border area, which is
1402 // problematic for color bleeding. We must check whether any
1403 // destination pixels sample the border area.
1404 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1405 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1406 SkIRect outer, inner;
1407 outerTransformedRect.round(&outer);
1408 innerTransformedRect.round(&inner);
1409 // If the inner and outer rects round to the same result, it means the
1410 // border does not overlap any pixel centers. Yay!
1411 return inner != outer;
1412}
1413
1414} // unnamed namespace
1415
reed@google.comac10a2d2010-12-22 21:39:39 +00001416/*
1417 * This is called by drawBitmap(), which has to handle images that may be too
1418 * large to be represented by a single texture.
1419 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001420 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1421 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001422 */
1423void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1424 const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001425 const SkRect& srcRect,
reed@google.comac10a2d2010-12-22 21:39:39 +00001426 const SkMatrix& m,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001427 const GrTextureParams& params,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001428 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001429 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1430 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001431
reed@google.com9c49bc32011-07-07 13:42:37 +00001432 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001433 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001434 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001435 return;
1436 }
1437
bsalomon@google.com88becf42012-10-05 14:54:42 +00001438 GrSamplerState* sampler = grPaint->colorSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001439
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001440 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001441
1442 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001443 SkAutoCachedTexture act(this, bitmap, &params, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001444 if (NULL == texture) {
1445 return;
1446 }
1447
robertphillips@google.combac6b052012-09-28 18:06:49 +00001448 GrRect dstRect(srcRect);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001449 GrRect paintRect;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001450 SkScalar wInv = SkScalarInvert(SkIntToScalar(bitmap.width()));
1451 SkScalar hInv = SkScalarInvert(SkIntToScalar(bitmap.height()));
1452 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1453 SkScalarMul(srcRect.fTop, hInv),
1454 SkScalarMul(srcRect.fRight, wInv),
1455 SkScalarMul(srcRect.fBottom, hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001456
rmistry@google.comd6176b02012-08-23 18:14:13 +00001457 bool needsTextureDomain = false;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001458 if (params.isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001459 // Need texture domain if drawing a sub rect.
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001460 needsTextureDomain = srcRect.width() < bitmap.width() ||
robertphillips@google.combac6b052012-09-28 18:06:49 +00001461 srcRect.height() < bitmap.height();
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001462 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1463 // sampling is axis-aligned
robertphillips@google.combac6b052012-09-28 18:06:49 +00001464 GrRect transformedRect;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001465 SkMatrix srcToDeviceMatrix(m);
1466 srcToDeviceMatrix.postConcat(*draw.fMatrix);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001467 srcToDeviceMatrix.mapRect(&transformedRect, srcRect);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001468
robertphillips@google.combac6b052012-09-28 18:06:49 +00001469 if (hasAlignedSamples(srcRect, transformedRect)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001470 // We could also turn off filtering here (but we already did a cache lookup with
1471 // params).
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001472 needsTextureDomain = false;
1473 } else {
1474 needsTextureDomain = needsTextureDomain &&
robertphillips@google.combac6b052012-09-28 18:06:49 +00001475 mayColorBleed(srcRect, transformedRect, m);
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001476 }
1477 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001478 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001479
1480 GrRect textureDomain = GrRect::MakeEmpty();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001481 SkAutoTUnref<GrCustomStage> stage;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001482 if (needsTextureDomain) {
1483 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001484 GrScalar left, top, right, bottom;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001485 if (srcRect.width() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001486 GrScalar border = GR_ScalarHalf / bitmap.width();
1487 left = paintRect.left() + border;
1488 right = paintRect.right() - border;
1489 } else {
1490 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1491 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001492 if (srcRect.height() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001493 GrScalar border = GR_ScalarHalf / bitmap.height();
1494 top = paintRect.top() + border;
1495 bottom = paintRect.bottom() - border;
1496 } else {
1497 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1498 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001499 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001500 stage.reset(SkNEW_ARGS(GrTextureDomainEffect, (texture, textureDomain, params)));
1501 } else {
1502 stage.reset(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)));
junov@google.com6acc9b32011-05-16 18:32:07 +00001503 }
bsalomon@google.com88becf42012-10-05 14:54:42 +00001504 grPaint->colorSampler(kBitmapTextureIdx)->setCustomStage(stage);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001505 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001506}
1507
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001508namespace {
1509
1510void apply_custom_stage(GrContext* context,
1511 GrTexture* srcTexture,
1512 GrTexture* dstTexture,
1513 const GrRect& rect,
1514 GrCustomStage* stage) {
1515 SkASSERT(srcTexture && srcTexture->getContext() == context);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001516 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001517 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001518 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001519
1520 GrMatrix sampleM;
1521 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1522 GrPaint paint;
1523 paint.reset();
bsalomon@google.com88becf42012-10-05 14:54:42 +00001524 paint.colorSampler(0)->reset(sampleM);
1525 paint.colorSampler(0)->setCustomStage(stage);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001526 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001527}
1528
1529};
1530
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001531static GrTexture* filter_texture(SkDevice* device, GrContext* context,
1532 GrTexture* texture, SkImageFilter* filter,
1533 const GrRect& rect) {
reed@google.com8926b162012-03-23 15:36:36 +00001534 GrAssert(filter);
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001535 SkDeviceImageFilterProxy proxy(device);
reed@google.com8926b162012-03-23 15:36:36 +00001536
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001537 GrTextureDesc desc;
1538 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1539 desc.fWidth = SkScalarCeilToInt(rect.width());
1540 desc.fHeight = SkScalarCeilToInt(rect.height());
bsalomon@google.com0342a852012-08-20 19:22:38 +00001541 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001542 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001543
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001544 if (filter->canFilterImageGPU()) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001545 texture = filter->onFilterImageGPU(&proxy, texture, rect);
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001546 } else if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001547 GrAutoScratchTexture dst(context, desc);
1548 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1549 texture = dst.detach();
1550 stage->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001551 }
1552 return texture;
1553}
1554
reed@google.comac10a2d2010-12-22 21:39:39 +00001555void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1556 int left, int top, const SkPaint& paint) {
1557 CHECK_SHOULD_DRAW(draw);
1558
reed@google.com8926b162012-03-23 15:36:36 +00001559 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001560 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1561 return;
1562 }
1563
reed@google.com76dd2772012-01-05 21:15:07 +00001564 int w = bitmap.width();
1565 int h = bitmap.height();
1566
bsalomon@google.com5782d712011-01-21 21:03:59 +00001567 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001568 SkAutoCachedTexture colorLutTexture;
1569 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001570 return;
1571 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001572
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001573 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001574
bsalomon@google.com88becf42012-10-05 14:54:42 +00001575 GrSamplerState* sampler = grPaint.colorSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001576
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001577 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001578 sampler->reset();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001579 // draw sprite uses the default texture params
1580 SkAutoCachedTexture act(this, bitmap, NULL, &texture);
bsalomon@google.com88becf42012-10-05 14:54:42 +00001581 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001582 (GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001583
reed@google.com8926b162012-03-23 15:36:36 +00001584 SkImageFilter* filter = paint.getImageFilter();
1585 if (NULL != filter) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001586 GrTexture* filteredTexture = filter_texture(this, fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001587 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001588 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001589 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001590 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001591 texture = filteredTexture;
1592 filteredTexture->unref();
1593 }
reed@google.com76dd2772012-01-05 21:15:07 +00001594 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001595
bsalomon@google.com5782d712011-01-21 21:03:59 +00001596 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001597 GrRect::MakeXYWH(GrIntToScalar(left),
1598 GrIntToScalar(top),
1599 GrIntToScalar(w),
1600 GrIntToScalar(h)),
1601 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1602 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001603}
1604
reed@google.com33535f32012-09-25 15:37:50 +00001605void SkGpuDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1606 const SkRect* src, const SkRect& dst,
1607 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001608 SkMatrix matrix;
1609 SkRect bitmapBounds, tmpSrc;
1610
1611 bitmapBounds.set(0, 0,
1612 SkIntToScalar(bitmap.width()),
1613 SkIntToScalar(bitmap.height()));
1614
reed@google.com33535f32012-09-25 15:37:50 +00001615 // Compute matrix from the two rectangles
robertphillips@google.combac6b052012-09-28 18:06:49 +00001616 if (NULL != src) {
1617 tmpSrc = *src;
1618 } else {
1619 tmpSrc = bitmapBounds;
1620 }
1621 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1622
1623 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
1624 if (NULL != src) {
1625 if (!bitmapBounds.contains(tmpSrc)) {
1626 if (!tmpSrc.intersect(bitmapBounds)) {
1627 return; // nothing to draw
reed@google.com33535f32012-09-25 15:37:50 +00001628 }
reed@google.com33535f32012-09-25 15:37:50 +00001629 }
reed@google.com33535f32012-09-25 15:37:50 +00001630 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +00001631
robertphillips@google.combac6b052012-09-28 18:06:49 +00001632 this->drawBitmapCommon(draw, bitmap, &tmpSrc, matrix, paint);
reed@google.com33535f32012-09-25 15:37:50 +00001633}
1634
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001635void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001636 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001637 // clear of the source device must occur before CHECK_SHOULD_DRAW
1638 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1639 if (dev->fNeedClear) {
1640 // TODO: could check here whether we really need to draw at all
1641 dev->clear(0x0);
1642 }
1643
reed@google.comac10a2d2010-12-22 21:39:39 +00001644 CHECK_SHOULD_DRAW(draw);
1645
bsalomon@google.com5782d712011-01-21 21:03:59 +00001646 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001647 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001648 grPaint.colorSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001649 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001650 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001651 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001652 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001653
bsalomon@google.com88becf42012-10-05 14:54:42 +00001654 GrTexture* devTex = grPaint.getColorSampler(kBitmapTextureIdx).getCustomStage()->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001655 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001656
reed@google.com8926b162012-03-23 15:36:36 +00001657 SkImageFilter* filter = paint.getImageFilter();
1658 if (NULL != filter) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001659 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001660 SkIntToScalar(devTex->height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001661 GrTexture* filteredTexture = filter_texture(this, fContext, devTex, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001662 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001663 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001664 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001665 devTex = filteredTexture;
1666 filteredTexture->unref();
1667 }
1668 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001669
bsalomon@google.com5782d712011-01-21 21:03:59 +00001670 const SkBitmap& bm = dev->accessBitmap(false);
1671 int w = bm.width();
1672 int h = bm.height();
1673
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001674 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001675 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1676 GrIntToScalar(y),
1677 GrIntToScalar(w),
1678 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001679
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001680 // The device being drawn may not fill up its texture (saveLayer uses
1681 // the approximate ).
1682 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1683 GR_Scalar1 * h / devTex->height());
1684
1685 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001686}
1687
reed@google.com8926b162012-03-23 15:36:36 +00001688bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001689 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001690 !filter->canFilterImageGPU()) {
reed@google.com76dd2772012-01-05 21:15:07 +00001691 return false;
1692 }
reed@google.com8926b162012-03-23 15:36:36 +00001693 return true;
1694}
1695
1696bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1697 const SkMatrix& ctm,
1698 SkBitmap* result, SkIPoint* offset) {
1699 // want explicitly our impl, so guard against a subclass of us overriding it
1700 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001701 return false;
1702 }
reed@google.com8926b162012-03-23 15:36:36 +00001703
1704 SkAutoLockPixels alp(src, !src.getTexture());
1705 if (!src.getTexture() && !src.readyToDraw()) {
1706 return false;
1707 }
1708
1709 GrPaint paint;
1710 paint.reset();
1711
reed@google.com8926b162012-03-23 15:36:36 +00001712 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001713 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1714 // must be pushed upstack.
1715 SkAutoCachedTexture act(this, src, NULL, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001716
1717 result->setConfig(src.config(), src.width(), src.height());
rmistry@google.comd6176b02012-08-23 18:14:13 +00001718 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001719 SkIntToScalar(src.height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001720 GrTexture* resultTexture = filter_texture(this, fContext, texture, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001721 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001722 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1723 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001724 resultTexture->unref();
1725 }
reed@google.com76dd2772012-01-05 21:15:07 +00001726 return true;
1727}
1728
reed@google.comac10a2d2010-12-22 21:39:39 +00001729///////////////////////////////////////////////////////////////////////////////
1730
1731// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001732static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001733 kTriangles_GrPrimitiveType,
1734 kTriangleStrip_GrPrimitiveType,
1735 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001736};
1737
1738void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1739 int vertexCount, const SkPoint vertices[],
1740 const SkPoint texs[], const SkColor colors[],
1741 SkXfermode* xmode,
1742 const uint16_t indices[], int indexCount,
1743 const SkPaint& paint) {
1744 CHECK_SHOULD_DRAW(draw);
1745
bsalomon@google.com5782d712011-01-21 21:03:59 +00001746 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001747 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001748 // we ignore the shader if texs is null.
1749 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001750 if (!skPaint2GrPaintNoShader(this,
1751 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001752 false,
1753 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001754 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001755 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001756 return;
1757 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001758 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001759 if (!skPaint2GrPaintShader(this,
1760 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001761 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001762 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001763 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001764 return;
1765 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001766 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001767
1768 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001769 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001770 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1771#if 0
1772 return
1773#endif
1774 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001775 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001776
bsalomon@google.com498776a2011-08-16 19:20:44 +00001777 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1778 if (NULL != colors) {
1779 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001780 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001781 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001782 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001783 }
1784 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001785 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001786 fContext->drawVertices(grPaint,
1787 gVertexMode2PrimitiveType[vmode],
1788 vertexCount,
1789 (GrPoint*) vertices,
1790 (GrPoint*) texs,
1791 colors,
1792 indices,
1793 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001794}
1795
1796///////////////////////////////////////////////////////////////////////////////
1797
1798static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001799 GrFontScaler* scaler = (GrFontScaler*)data;
1800 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001801}
1802
1803static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1804 void* auxData;
1805 GrFontScaler* scaler = NULL;
1806 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1807 scaler = (GrFontScaler*)auxData;
1808 }
1809 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001810 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001811 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1812 }
1813 return scaler;
1814}
1815
1816static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1817 SkFixed fx, SkFixed fy,
1818 const SkGlyph& glyph) {
1819 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1820
bungeman@google.com15865a72012-01-11 16:28:04 +00001821 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001822
1823 if (NULL == procs->fFontScaler) {
1824 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1825 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001826
bungeman@google.com15865a72012-01-11 16:28:04 +00001827 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1828 glyph.getSubXFixed(),
1829 glyph.getSubYFixed()),
1830 SkFixedFloorToFixed(fx),
1831 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001832 procs->fFontScaler);
1833}
1834
bsalomon@google.com5782d712011-01-21 21:03:59 +00001835SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001836
1837 // deferred allocation
1838 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001839 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001840 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1841 fDrawProcs->fContext = fContext;
1842 }
1843
1844 // init our (and GL's) state
1845 fDrawProcs->fTextContext = context;
1846 fDrawProcs->fFontScaler = NULL;
1847 return fDrawProcs;
1848}
1849
1850void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1851 size_t byteLength, SkScalar x, SkScalar y,
1852 const SkPaint& paint) {
1853 CHECK_SHOULD_DRAW(draw);
1854
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001855 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001856 // this guy will just call our drawPath()
1857 draw.drawText((const char*)text, byteLength, x, y, paint);
1858 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001859 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001860
1861 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001862 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001863 if (!skPaint2GrPaintShader(this,
1864 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001865 true,
twiz@google.com58071162012-07-18 21:41:50 +00001866 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001867 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001868 return;
1869 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001870 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1871 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001872 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1873 }
1874}
1875
1876void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1877 size_t byteLength, const SkScalar pos[],
1878 SkScalar constY, int scalarsPerPos,
1879 const SkPaint& paint) {
1880 CHECK_SHOULD_DRAW(draw);
1881
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001882 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001883 // this guy will just call our drawPath()
1884 draw.drawPosText((const char*)text, byteLength, pos, constY,
1885 scalarsPerPos, paint);
1886 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001887 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001888
1889 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001890 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001891 if (!skPaint2GrPaintShader(this,
1892 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001893 true,
twiz@google.com58071162012-07-18 21:41:50 +00001894 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001895 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001896 return;
1897 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001898 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1899 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001900 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1901 scalarsPerPos, paint);
1902 }
1903}
1904
1905void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1906 size_t len, const SkPath& path,
1907 const SkMatrix* m, const SkPaint& paint) {
1908 CHECK_SHOULD_DRAW(draw);
1909
1910 SkASSERT(draw.fDevice == this);
1911 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1912}
1913
1914///////////////////////////////////////////////////////////////////////////////
1915
reed@google.comf67e4cf2011-03-15 20:56:58 +00001916bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1917 if (!paint.isLCDRenderText()) {
1918 // we're cool with the paint as is
1919 return false;
1920 }
1921
1922 if (paint.getShader() ||
1923 paint.getXfermode() || // unless its srcover
1924 paint.getMaskFilter() ||
1925 paint.getRasterizer() ||
1926 paint.getColorFilter() ||
1927 paint.getPathEffect() ||
1928 paint.isFakeBoldText() ||
1929 paint.getStyle() != SkPaint::kFill_Style) {
1930 // turn off lcd
1931 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1932 flags->fHinting = paint.getHinting();
1933 return true;
1934 }
1935 // we're cool with the paint as is
1936 return false;
1937}
1938
reed@google.com75d939b2011-12-07 15:07:23 +00001939void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001940 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001941 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001942}
1943
reed@google.comf67e4cf2011-03-15 20:56:58 +00001944///////////////////////////////////////////////////////////////////////////////
1945
bsalomon@google.comfb309512011-11-30 14:13:48 +00001946bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001947 const GrTextureParams& params) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001948 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001949 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001950
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001951 GrTextureDesc desc;
1952 desc.fWidth = bitmap.width();
1953 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001954 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001955
robertphillips@google.com9c2ea842012-08-13 17:47:59 +00001956 GrCacheData cacheData(key);
1957
1958 return this->context()->isTextureInCache(desc, cacheData, &params);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001959}
1960
1961
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001962SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1963 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001964 bool isOpaque,
1965 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001966 GrTextureDesc desc;
1967 desc.fConfig = fRenderTarget->config();
1968 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1969 desc.fWidth = width;
1970 desc.fHeight = height;
1971 desc.fSampleCnt = fRenderTarget->numSamples();
1972
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001973 GrTexture* texture;
1974 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001975 // Skia's convention is to only clear a device if it is non-opaque.
1976 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001977
1978#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1979 // layers are never draw in repeat modes, so we can request an approx
1980 // match and ignore any padding.
1981 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1982 GrContext::kApprox_ScratchTexMatch :
1983 GrContext::kExact_ScratchTexMatch;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001984 texture = fContext->lockScratchTexture(desc, matchType);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001985#else
1986 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1987 texture = tunref.get();
1988#endif
1989 if (texture) {
1990 return SkNEW_ARGS(SkGpuDevice,(fContext,
1991 texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001992 needClear));
1993 } else {
1994 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1995 width, height);
1996 return NULL;
1997 }
1998}
1999
2000SkGpuDevice::SkGpuDevice(GrContext* context,
2001 GrTexture* texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00002002 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00002003 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
2004
bsalomon@google.com06cd7322012-03-30 18:45:35 +00002005 GrAssert(texture && texture->asRenderTarget());
bsalomon@google.com8090e652012-08-28 15:07:11 +00002006 // This constructor is called from onCreateCompatibleDevice. It has locked the RT in the texture
2007 // cache. We pass true for the third argument so that it will get unlocked.
2008 this->initFromRenderTarget(context, texture->asRenderTarget(), true);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00002009 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00002010}