blob: 9a495c9703686cfc31df3f2eece7fed500c1d761 [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
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000513 grPaint->setDither(skPaint.isDither());
514 grPaint->setAntiAlias(skPaint.isAntiAlias());
bsalomon@google.com5782d712011-01-21 21:03:59 +0000515
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000516 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
517 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000518
519 SkXfermode* mode = skPaint.getXfermode();
520 if (mode) {
521 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000522 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000523#if 0
524 return false;
525#endif
526 }
527 }
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000528 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000529
bsalomon@google.com5782d712011-01-21 21:03:59 +0000530 if (justAlpha) {
531 uint8_t alpha = skPaint.getAlpha();
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000532 grPaint->setColor(GrColorPackRGBA(alpha, alpha, alpha, alpha));
Scroggod757df22011-05-16 13:11:16 +0000533 // justAlpha is currently set to true only if there is a texture,
534 // so constantColor should not also be true.
535 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000536 } else {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000537 grPaint->setColor(SkColor2GrColor(skPaint.getColor()));
bsalomon@google.com88becf42012-10-05 14:54:42 +0000538 GrAssert(!grPaint->isColorStageEnabled(kShaderTextureIdx));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000539 }
Scroggo97c88c22011-05-11 14:05:25 +0000540 SkColorFilter* colorFilter = skPaint.getColorFilter();
541 SkColor color;
542 SkXfermode::Mode filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000543 SkScalar matrix[20];
twiz@google.com58071162012-07-18 21:41:50 +0000544 SkBitmap colorTransformTable;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000545 // TODO: SkColorFilter::asCustomStage()
Scroggo97c88c22011-05-11 14:05:25 +0000546 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
Scroggod757df22011-05-16 13:11:16 +0000547 if (!constantColor) {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000548 grPaint->setXfermodeColorFilter(filterMode, SkColor2GrColor(color));
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000549 } else {
550 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000551 grPaint->setColor(SkColor2GrColor(filtered));
Scroggod757df22011-05-16 13:11:16 +0000552 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000553 } else if (colorFilter != NULL && colorFilter->asColorMatrix(matrix)) {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000554 grPaint->setColorMatrix(matrix);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000555 } else if (colorFilter != NULL && colorFilter->asComponentTable(&colorTransformTable)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000556 // pass NULL because the color table effect doesn't use tiling or filtering.
557 GrTexture* texture = act->set(dev, colorTransformTable, NULL);
bsalomon@google.com88becf42012-10-05 14:54:42 +0000558 GrSamplerState* colorSampler = grPaint->colorSampler(kColorFilterTextureIdx);
bsalomon@google.comb8670992012-07-25 21:27:09 +0000559 colorSampler->reset();
bsalomon@google.comcbd0ad92012-07-20 15:09:31 +0000560 colorSampler->setCustomStage(SkNEW_ARGS(GrColorTableEffect, (texture)))->unref();
Scroggo97c88c22011-05-11 14:05:25 +0000561 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000562 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000563}
564
bsalomon@google.com84405e02012-03-05 19:57:21 +0000565// This function is similar to skPaint2GrPaintNoShader but also converts
566// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
567// be used is set on grPaint and returned in param act. constantColor has the
568// same meaning as in skPaint2GrPaintNoShader.
569inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
570 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000571 bool constantColor,
bsalomon@google.com88becf42012-10-05 14:54:42 +0000572 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxColorStages],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000573 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000574 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000575 if (NULL == shader) {
twiz@google.com58071162012-07-18 21:41:50 +0000576 return skPaint2GrPaintNoShader(dev,
577 skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000578 false,
579 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000580 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000581 grPaint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000582 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false,
twiz@google.com58071162012-07-18 21:41:50 +0000583 &textures[kColorFilterTextureIdx], grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000584 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000585 }
586
bsalomon@google.com88becf42012-10-05 14:54:42 +0000587 GrSamplerState* sampler = grPaint->colorSampler(kShaderTextureIdx);
rileya@google.com91f319c2012-07-25 17:18:31 +0000588 GrCustomStage* stage = shader->asNewCustomStage(dev->context(), sampler);
589
590 if (NULL != stage) {
591 sampler->setCustomStage(stage)->unref();
592 SkMatrix localM;
593 if (shader->getLocalMatrix(&localM)) {
594 SkMatrix inverse;
595 if (localM.invert(&inverse)) {
596 sampler->matrix()->preConcat(inverse);
597 }
598 }
599 return true;
600 }
601
reed@google.comac10a2d2010-12-22 21:39:39 +0000602 SkBitmap bitmap;
rileya@google.com91f319c2012-07-25 17:18:31 +0000603 SkMatrix* matrix = sampler->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000604 SkShader::TileMode tileModes[2];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000605 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
rileya@google.com91f319c2012-07-25 17:18:31 +0000606 tileModes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000607
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000608 if (SkShader::kNone_BitmapType == bmptype) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000609 SkShader::GradientInfo info;
610 SkColor color;
611
612 info.fColors = &color;
613 info.fColorOffsets = NULL;
614 info.fColorCount = 1;
615 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
616 SkPaint copy(skPaint);
617 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000618 // modulate the paint alpha by the shader's solid color alpha
619 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
620 copy.setColor(SkColorSetA(color, newA));
twiz@google.com58071162012-07-18 21:41:50 +0000621 return skPaint2GrPaintNoShader(dev,
622 copy,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000623 false,
624 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000625 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000626 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000627 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000628 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000629 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000630
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000631 // Must set wrap and filter on the sampler before requesting a texture.
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000632 GrTextureParams params(tileModes, skPaint.isFilterBitmap());
633 GrTexture* texture = textures[kShaderTextureIdx].set(dev, bitmap, &params);
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000634
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000635 if (NULL == texture) {
636 SkDebugf("Couldn't convert bitmap to texture.\n");
637 return false;
638 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000639
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000640 sampler->reset();
641 sampler->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000642
reed@google.comac10a2d2010-12-22 21:39:39 +0000643 // since our texture coords will be in local space, we wack the texture
644 // matrix to map them back into 0...1 before we load it
645 SkMatrix localM;
646 if (shader->getLocalMatrix(&localM)) {
647 SkMatrix inverse;
648 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000649 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000650 }
651 }
652 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000653 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
654 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000655 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000656 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000657
658 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000659}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000660}
reed@google.comac10a2d2010-12-22 21:39:39 +0000661
662///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com398109c2011-04-14 18:40:27 +0000663void SkGpuDevice::clear(SkColor color) {
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000664 fContext->clear(NULL, color, fRenderTarget);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000665}
666
reed@google.comac10a2d2010-12-22 21:39:39 +0000667void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
668 CHECK_SHOULD_DRAW(draw);
669
bsalomon@google.com5782d712011-01-21 21:03:59 +0000670 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000671 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000672 if (!skPaint2GrPaintShader(this,
673 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000674 true,
twiz@google.com58071162012-07-18 21:41:50 +0000675 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000676 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000677 return;
678 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000679
680 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000681}
682
683// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000684static const GrPrimitiveType gPointMode2PrimtiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +0000685 kPoints_GrPrimitiveType,
686 kLines_GrPrimitiveType,
687 kLineStrip_GrPrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000688};
689
690void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000691 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000692 CHECK_SHOULD_DRAW(draw);
693
694 SkScalar width = paint.getStrokeWidth();
695 if (width < 0) {
696 return;
697 }
698
bsalomon@google.comb702c0f2012-06-18 12:52:56 +0000699 // we only handle hairlines and paints without path effects or mask filters,
700 // else we let the SkDraw call our drawPath()
701 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000702 draw.drawPoints(mode, count, pts, paint, true);
703 return;
704 }
705
bsalomon@google.com5782d712011-01-21 21:03:59 +0000706 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000707 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000708 if (!skPaint2GrPaintShader(this,
709 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000710 true,
twiz@google.com58071162012-07-18 21:41:50 +0000711 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000712 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000713 return;
714 }
715
bsalomon@google.com5782d712011-01-21 21:03:59 +0000716 fContext->drawVertices(grPaint,
717 gPointMode2PrimtiveType[mode],
718 count,
719 (GrPoint*)pts,
720 NULL,
721 NULL,
722 NULL,
723 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000724}
725
reed@google.comc9aa5872011-04-05 21:05:37 +0000726///////////////////////////////////////////////////////////////////////////////
727
reed@google.comac10a2d2010-12-22 21:39:39 +0000728void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
729 const SkPaint& paint) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000730 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000731 CHECK_SHOULD_DRAW(draw);
732
bungeman@google.com79bd8772011-07-18 15:34:08 +0000733 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000734 SkScalar width = paint.getStrokeWidth();
735
736 /*
737 We have special code for hairline strokes, miter-strokes, and fills.
738 Anything else we just call our path code.
739 */
740 bool usePath = doStroke && width > 0 &&
741 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000742 // another two reasons we might need to call drawPath...
743 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000744 usePath = true;
745 }
reed@google.com67db6642011-05-26 11:46:35 +0000746 // until we aa rotated rects...
747 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
748 usePath = true;
749 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000750 // small miter limit means right angles show bevel...
751 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
752 paint.getStrokeMiter() < SK_ScalarSqrt2)
753 {
754 usePath = true;
755 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000756 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000757 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
758 usePath = true;
759 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000760
761 if (usePath) {
762 SkPath path;
763 path.addRect(rect);
764 this->drawPath(draw, path, paint, NULL, true);
765 return;
766 }
767
768 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000769 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000770 if (!skPaint2GrPaintShader(this,
771 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000772 true,
twiz@google.com58071162012-07-18 21:41:50 +0000773 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000774 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000775 return;
776 }
reed@google.com20efde72011-05-09 17:00:02 +0000777 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000778}
779
reed@google.com69302852011-02-16 18:08:07 +0000780#include "SkMaskFilter.h"
781#include "SkBounder.h"
782
bsalomon@google.com85003222012-03-28 14:44:37 +0000783///////////////////////////////////////////////////////////////////////////////
784
785// helpers for applying mask filters
786namespace {
787
788GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000789 switch (fillType) {
790 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000791 return kWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000792 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000793 return kEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000794 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000795 return kInverseWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000796 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000797 return kInverseEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000798 default:
799 SkDebugf("Unsupported path fill type\n");
bsalomon@google.com47059542012-06-06 20:51:20 +0000800 return kHairLine_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000801 }
802}
803
bsalomon@google.com85003222012-03-28 14:44:37 +0000804// We prefer to blur small rect with small radius via CPU.
805#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
806#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
807inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
808 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
809 rect.height() <= MIN_GPU_BLUR_SIZE &&
810 radius <= MIN_GPU_BLUR_RADIUS) {
811 return true;
812 }
813 return false;
814}
815
816bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
817 SkMaskFilter* filter, const SkMatrix& matrix,
818 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000819 GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000820#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000821 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000822#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000823 SkMaskFilter::BlurInfo info;
824 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000825 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000826 return false;
827 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000828 SkScalar radius = info.fIgnoreTransform ? info.fRadius
829 : matrix.mapRadius(info.fRadius);
830 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000831 if (radius <= 0) {
832 return false;
833 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000834
835 SkRect srcRect = path.getBounds();
836 if (shouldDrawBlurWithCPU(srcRect, radius)) {
837 return false;
838 }
839
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000840 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000841 float sigma3 = sigma * 3.0f;
842
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000843 SkRect clipRect;
844 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000845
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000846 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000847 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
848 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000849 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000850 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000851 SkIRect finalIRect;
852 finalRect.roundOut(&finalIRect);
853 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000854 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000855 }
856 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000857 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000858 }
859 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000860 srcRect.offset(offset);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000861 GrTextureDesc desc;
862 desc.fFlags = kRenderTarget_GrTextureFlagBit;
863 desc.fWidth = SkScalarCeilToInt(srcRect.width());
864 desc.fHeight = SkScalarCeilToInt(srcRect.height());
865 // We actually only need A8, but it often isn't supported as a
866 // render target so default to RGBA_8888
bsalomon@google.com0342a852012-08-20 19:22:38 +0000867 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000868
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000869 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
870 desc.fConfig = kAlpha_8_GrPixelConfig;
871 }
872
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000873 GrAutoScratchTexture pathEntry(context, desc);
874 GrTexture* pathTexture = pathEntry.texture();
875 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000876 return false;
877 }
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000878
robertphillips@google.comccb39502012-10-01 18:25:13 +0000879 SkAutoTUnref<GrTexture> blurTexture;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000880
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000881 // We pass kPreserve here. We will replace the current matrix below.
882 GrContext::AutoMatrix avm(context, GrContext::AutoMatrix::kPreserve_InitialMatrix);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000883
robertphillips@google.comccb39502012-10-01 18:25:13 +0000884 {
885 GrContext::AutoRenderTarget art(context, pathTexture->asRenderTarget());
886 GrContext::AutoClip ac(context, srcRect);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000887
robertphillips@google.comccb39502012-10-01 18:25:13 +0000888 context->clear(NULL, 0);
889 GrPaint tempPaint;
robertphillips@google.comccb39502012-10-01 18:25:13 +0000890
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000891 if (grp->isAntiAlias()) {
892 tempPaint.setAntiAlias(true);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000893 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
894 // blend coeff of zero requires dual source blending support in order
895 // to properly blend partially covered pixels. This means the AA
896 // code path may not be taken. So we use a dst blend coeff of ISA. We
897 // could special case AA draws to a dst surface with known alpha=0 to
898 // use a zero dst coeff when dual source blending isn't available.
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000899 tempPaint.setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000900 }
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000901 // Draw hard shadow to pathTexture with path top-left at origin 0,0.
902 GrMatrix translate;
903 translate.setTranslate(offset.fX, offset.fY);
904 context->setMatrix(translate);
905 context->drawPath(tempPaint, path, pathFillType);
906
907 // switch to device coord drawing when going back to the main RT.
908 context->setIdentityMatrix();
robertphillips@google.comccb39502012-10-01 18:25:13 +0000909
910 // If we're doing a normal blur, we can clobber the pathTexture in the
911 // gaussianBlur. Otherwise, we need to save it for later compositing.
912 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000913 blurTexture.reset(context->gaussianBlur(pathTexture, isNormalBlur,
robertphillips@google.comccb39502012-10-01 18:25:13 +0000914 srcRect, sigma, sigma));
915
916 if (!isNormalBlur) {
917 GrPaint paint;
918 paint.reset();
bsalomon@google.com88becf42012-10-05 14:54:42 +0000919 paint.colorSampler(0)->matrix()->setIDiv(pathTexture->width(),
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000920 pathTexture->height());
robertphillips@google.comccb39502012-10-01 18:25:13 +0000921 // Blend pathTexture over blurTexture.
922 context->setRenderTarget(blurTexture->asRenderTarget());
bsalomon@google.com88becf42012-10-05 14:54:42 +0000923 paint.colorSampler(0)->setCustomStage(SkNEW_ARGS
robertphillips@google.comccb39502012-10-01 18:25:13 +0000924 (GrSingleTextureEffect, (pathTexture)))->unref();
925 if (SkMaskFilter::kInner_BlurType == blurType) {
926 // inner: dst = dst * src
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000927 paint.setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000928 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
929 // solid: dst = src + dst - src * dst
930 // = (1 - dst) * src + 1 * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000931 paint.setBlendFunc(kIDC_GrBlendCoeff, kOne_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000932 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
933 // outer: dst = dst * (1 - src)
934 // = 0 * src + (1 - src) * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000935 paint.setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000936 }
937 context->drawRect(paint, srcRect);
938 }
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000939 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000940
bsalomon@google.come3d32162012-07-20 13:37:06 +0000941 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
942 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000943 }
944
bsalomon@google.com88becf42012-10-05 14:54:42 +0000945 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000946 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000947 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
948 grp->coverageSampler(MASK_IDX)->reset();
949 grp->coverageSampler(MASK_IDX)->setCustomStage(
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000950 SkNEW_ARGS(GrSingleTextureEffect, (blurTexture)))->unref();
bsalomon@google.com88becf42012-10-05 14:54:42 +0000951 grp->coverageSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000952 -finalRect.fTop);
bsalomon@google.com88becf42012-10-05 14:54:42 +0000953 grp->coverageSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000954 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000955 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000956 return true;
957}
958
bsalomon@google.com85003222012-03-28 14:44:37 +0000959bool drawWithMaskFilter(GrContext* context, const SkPath& path,
960 SkMaskFilter* filter, const SkMatrix& matrix,
961 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000962 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000963 SkMask srcM, dstM;
964
965 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +0000966 SkMask::kComputeBoundsAndRenderImage_CreateMode,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000967 style)) {
reed@google.com69302852011-02-16 18:08:07 +0000968 return false;
969 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000970 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000971
972 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
973 return false;
974 }
975 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000976 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000977
978 if (clip.quickReject(dstM.fBounds)) {
979 return false;
980 }
981 if (bounder && !bounder->doIRect(dstM.fBounds)) {
982 return false;
983 }
984
985 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
986 // the current clip (and identity matrix) and grpaint settings
987
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000988 GrContext::AutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +0000989
bsalomon@google.come3d32162012-07-20 13:37:06 +0000990 if (!grp->preConcatSamplerMatricesWithInverse(matrix)) {
991 return false;
992 }
993
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000994 GrTextureDesc desc;
995 desc.fWidth = dstM.fBounds.width();
996 desc.fHeight = dstM.fBounds.height();
997 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +0000998
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000999 GrAutoScratchTexture ast(context, desc);
1000 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001001
reed@google.com69302852011-02-16 18:08:07 +00001002 if (NULL == texture) {
1003 return false;
1004 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001005 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001006 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +00001007
bsalomon@google.com88becf42012-10-05 14:54:42 +00001008 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001009 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +00001010 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
1011 grp->coverageSampler(MASK_IDX)->reset();
1012 grp->coverageSampler(MASK_IDX)->setCustomStage(
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001013 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001014 GrRect d;
1015 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +00001016 GrIntToScalar(dstM.fBounds.fTop),
1017 GrIntToScalar(dstM.fBounds.fRight),
1018 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001019
bsalomon@google.com88becf42012-10-05 14:54:42 +00001020 GrMatrix* m = grp->coverageSampler(MASK_IDX)->matrix();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001021 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1022 -dstM.fBounds.fTop*SK_Scalar1);
1023 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001024 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +00001025 return true;
1026}
reed@google.com69302852011-02-16 18:08:07 +00001027
bsalomon@google.com85003222012-03-28 14:44:37 +00001028}
1029
1030///////////////////////////////////////////////////////////////////////////////
1031
reed@google.com0c219b62011-02-16 21:31:18 +00001032void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001033 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +00001034 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +00001035 CHECK_FOR_NODRAW_ANNOTATION(paint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001036 CHECK_SHOULD_DRAW(draw);
1037
reed@google.comfe626382011-09-21 13:50:35 +00001038 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001039
bsalomon@google.com5782d712011-01-21 21:03:59 +00001040 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001041 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001042 if (!skPaint2GrPaintShader(this,
1043 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001044 true,
twiz@google.com58071162012-07-18 21:41:50 +00001045 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001046 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001047 return;
1048 }
1049
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001050 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1051 // if we can, we draw lots faster (raster device does this same test)
1052 SkScalar hairlineCoverage;
1053 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
1054 doFill = false;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +00001055 grPaint.setCoverage(SkScalarRoundToInt(hairlineCoverage * grPaint.getCoverage()));
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001056 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001057
reed@google.comfe626382011-09-21 13:50:35 +00001058 // If we have a prematrix, apply it to the path, optimizing for the case
1059 // where the original path can in fact be modified in place (even though
1060 // its parameter type is const).
1061 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1062 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001063
1064 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001065 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001066
reed@google.come3445642011-02-16 23:20:39 +00001067 if (!pathIsMutable) {
1068 result = &tmpPath;
1069 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001070 }
reed@google.come3445642011-02-16 23:20:39 +00001071 // should I push prePathMatrix on our MV stack temporarily, instead
1072 // of applying it here? See SkDraw.cpp
1073 pathPtr->transform(*prePathMatrix, result);
1074 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001075 }
reed@google.com0c219b62011-02-16 21:31:18 +00001076 // at this point we're done with prePathMatrix
1077 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001078
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001079 if (paint.getPathEffect() ||
1080 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001081 // it is safe to use tmpPath here, even if we already used it for the
1082 // prepathmatrix, since getFillPath can take the same object for its
1083 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001084 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001085 pathPtr = &tmpPath;
1086 }
1087
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001088 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001089 // avoid possibly allocating a new path in transform if we can
1090 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1091
1092 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001093 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001094 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001095 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001096 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001097 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001098 &grPaint, pathFillType)) {
rmistry@google.comd6176b02012-08-23 18:14:13 +00001099 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001100 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001101 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001102 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001103 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001104 }
reed@google.com69302852011-02-16 18:08:07 +00001105 return;
1106 }
reed@google.com69302852011-02-16 18:08:07 +00001107
bsalomon@google.com47059542012-06-06 20:51:20 +00001108 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001109
reed@google.com0c219b62011-02-16 21:31:18 +00001110 if (doFill) {
1111 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001112 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001113 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001114 break;
1115 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001116 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001117 break;
1118 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001119 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001120 break;
1121 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001122 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001123 break;
1124 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001125 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001126 return;
1127 }
1128 }
1129
reed@google.com07f3ee12011-05-16 17:21:57 +00001130 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001131}
1132
bsalomon@google.comfb309512011-11-30 14:13:48 +00001133namespace {
1134
1135inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1136 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1137 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1138 return tilesX * tilesY;
1139}
1140
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001141inline int determine_tile_size(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001142 const SkRect& src,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001143 int maxTextureSize) {
1144 static const int kSmallTileSize = 1 << 10;
1145 if (maxTextureSize <= kSmallTileSize) {
1146 return maxTextureSize;
1147 }
1148
1149 size_t maxTexTotalTileSize;
1150 size_t smallTotalTileSize;
1151
robertphillips@google.combac6b052012-09-28 18:06:49 +00001152 SkIRect iSrc;
1153 src.roundOut(&iSrc);
1154
1155 maxTexTotalTileSize = get_tile_count(iSrc.fLeft,
1156 iSrc.fTop,
1157 iSrc.fRight,
1158 iSrc.fBottom,
1159 maxTextureSize);
1160 smallTotalTileSize = get_tile_count(iSrc.fLeft,
1161 iSrc.fTop,
1162 iSrc.fRight,
1163 iSrc.fBottom,
1164 kSmallTileSize);
1165
bsalomon@google.comfb309512011-11-30 14:13:48 +00001166 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1167 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1168
1169 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1170 return kSmallTileSize;
1171 } else {
1172 return maxTextureSize;
1173 }
1174}
1175}
1176
1177bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001178 const GrTextureParams& params,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001179 const SkRect* srcRectPtr) const {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001180 // if bitmap is explictly texture backed then just use the texture
1181 if (NULL != bitmap.getTexture()) {
1182 return false;
1183 }
1184 // if it's larger than the max texture size, then we have no choice but
1185 // tiling
1186 const int maxTextureSize = fContext->getMaxTextureSize();
1187 if (bitmap.width() > maxTextureSize ||
1188 bitmap.height() > maxTextureSize) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001189 return true;
1190 }
1191 // if we are going to have to draw the whole thing, then don't tile
1192 if (NULL == srcRectPtr) {
1193 return false;
1194 }
1195 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.comb8670992012-07-25 21:27:09 +00001196 if (this->isBitmapInTextureCache(bitmap, params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001197 return false;
1198 }
1199
1200 // At this point we know we could do the draw by uploading the entire bitmap
1201 // as a texture. However, if the texture would be large compared to the
1202 // cache size and we don't require most of it for this draw then tile to
1203 // reduce the amount of upload and cache spill.
1204
1205 // assumption here is that sw bitmap size is a good proxy for its size as
1206 // a texture
1207 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001208 size_t cacheSize;
1209 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001210 if (bmpSize < cacheSize / 2) {
1211 return false;
1212 }
1213
robertphillips@google.combac6b052012-09-28 18:06:49 +00001214 SkScalar fracUsed = SkScalarMul(srcRectPtr->width() / bitmap.width(),
1215 srcRectPtr->height() / bitmap.height());
1216 if (fracUsed <= SK_ScalarHalf) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001217 return true;
1218 } else {
1219 return false;
1220 }
1221}
1222
reed@google.comac10a2d2010-12-22 21:39:39 +00001223void SkGpuDevice::drawBitmap(const SkDraw& draw,
1224 const SkBitmap& bitmap,
1225 const SkIRect* srcRectPtr,
1226 const SkMatrix& m,
1227 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001228
1229 SkRect tmp;
1230 SkRect* tmpPtr = NULL;
1231
1232 // convert from SkIRect to SkRect
1233 if (NULL != srcRectPtr) {
1234 tmp.set(*srcRectPtr);
1235 tmpPtr = &tmp;
1236 }
1237
1238 // We cannot call drawBitmapRect here since 'm' could be anything
1239 this->drawBitmapCommon(draw, bitmap, tmpPtr, m, paint);
1240}
1241
1242void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
1243 const SkBitmap& bitmap,
1244 const SkRect* srcRectPtr,
1245 const SkMatrix& m,
1246 const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001247 CHECK_SHOULD_DRAW(draw);
1248
robertphillips@google.combac6b052012-09-28 18:06:49 +00001249 SkRect srcRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001250 if (NULL == srcRectPtr) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001251 srcRect.set(0, 0, SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001252 } else {
1253 srcRect = *srcRectPtr;
1254 }
1255
junov@google.comd935cfb2011-06-27 20:48:23 +00001256 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001257 // Convert the bitmap to a shader so that the rect can be drawn
1258 // through drawRect, which supports mask filters.
robertphillips@google.combac6b052012-09-28 18:06:49 +00001259 SkMatrix newM(m);
junov@google.com1d329782011-07-28 20:10:09 +00001260 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001261 const SkBitmap* bitmapPtr = &bitmap;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001262 if (NULL != srcRectPtr) {
1263 SkIRect iSrc;
1264 srcRect.roundOut(&iSrc);
1265 if (!bitmap.extractSubset(&tmp, iSrc)) {
epoger@google.com9ef2d832011-07-01 21:12:20 +00001266 return; // extraction failed
1267 }
1268 bitmapPtr = &tmp;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001269 srcRect.offset(SkIntToScalar(-iSrc.fLeft), SkIntToScalar(-iSrc.fTop));
1270 // The source rect has changed so update the matrix
1271 newM.preTranslate(SkIntToScalar(iSrc.fLeft), SkIntToScalar(iSrc.fTop));
junov@google.comd935cfb2011-06-27 20:48:23 +00001272 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001273
junov@google.comd935cfb2011-06-27 20:48:23 +00001274 SkPaint paintWithTexture(paint);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001275 paintWithTexture.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
junov@google.comd935cfb2011-06-27 20:48:23 +00001276 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001277
robertphillips@google.combac6b052012-09-28 18:06:49 +00001278 // Transform 'newM' needs to be concatenated to the draw matrix,
1279 // rather than transforming the primitive directly, so that 'newM' will
junov@google.com1d329782011-07-28 20:10:09 +00001280 // also affect the behavior of the mask filter.
1281 SkMatrix drawMatrix;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001282 drawMatrix.setConcat(*draw.fMatrix, newM);
junov@google.com1d329782011-07-28 20:10:09 +00001283 SkDraw transformedDraw(draw);
1284 transformedDraw.fMatrix = &drawMatrix;
1285
robertphillips@google.combac6b052012-09-28 18:06:49 +00001286 this->drawRect(transformedDraw, srcRect, paintWithTexture);
junov@google.com1d329782011-07-28 20:10:09 +00001287
junov@google.comd935cfb2011-06-27 20:48:23 +00001288 return;
1289 }
1290
bsalomon@google.com5782d712011-01-21 21:03:59 +00001291 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001292 SkAutoCachedTexture colorLutTexture;
1293 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001294 return;
1295 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001296 GrTextureParams params;
1297 params.setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001298
robertphillips@google.combac6b052012-09-28 18:06:49 +00001299 if (!this->shouldTileBitmap(bitmap, params, srcRectPtr)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001300 // take the simple case
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001301 this->internalDrawBitmap(draw, bitmap, srcRect, m, params, &grPaint);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001302 } else {
1303 this->drawTiledBitmap(draw, bitmap, srcRect, m, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001304 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001305}
1306
1307// Break 'bitmap' into several tiles to draw it since it has already
1308// been determined to be too large to fit in VRAM
1309void SkGpuDevice::drawTiledBitmap(const SkDraw& draw,
1310 const SkBitmap& bitmap,
1311 const SkRect& srcRect,
1312 const SkMatrix& m,
1313 const GrTextureParams& params,
1314 GrPaint* grPaint) {
1315 const int maxTextureSize = fContext->getMaxTextureSize();
1316
1317 int tileSize = determine_tile_size(bitmap, srcRect, maxTextureSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001318
reed@google.comac10a2d2010-12-22 21:39:39 +00001319 // compute clip bounds in local coordinates
robertphillips@google.combac6b052012-09-28 18:06:49 +00001320 SkRect clipRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001321 {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001322 clipRect.set(draw.fClip->getBounds());
reed@google.comac10a2d2010-12-22 21:39:39 +00001323 SkMatrix matrix, inverse;
1324 matrix.setConcat(*draw.fMatrix, m);
1325 if (!matrix.invert(&inverse)) {
1326 return;
1327 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001328 inverse.mapRect(&clipRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001329 }
1330
bsalomon@google.comfb309512011-11-30 14:13:48 +00001331 int nx = bitmap.width() / tileSize;
1332 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001333 for (int x = 0; x <= nx; x++) {
1334 for (int y = 0; y <= ny; y++) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001335 SkRect tileR;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001336 tileR.set(SkIntToScalar(x * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001337 SkIntToScalar(y * tileSize),
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001338 SkIntToScalar((x + 1) * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001339 SkIntToScalar((y + 1) * tileSize));
1340
1341 if (!SkRect::Intersects(tileR, clipRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001342 continue;
1343 }
1344
robertphillips@google.combac6b052012-09-28 18:06:49 +00001345 if (!tileR.intersect(srcRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001346 continue;
1347 }
1348
1349 SkBitmap tmpB;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001350 SkIRect iTileR;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001351 tileR.roundOut(&iTileR);
1352 if (bitmap.extractSubset(&tmpB, iTileR)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001353 // now offset it to make it "local" to our tmp bitmap
robertphillips@google.combac6b052012-09-28 18:06:49 +00001354 tileR.offset(SkIntToScalar(-iTileR.fLeft), SkIntToScalar(-iTileR.fTop));
reed@google.comac10a2d2010-12-22 21:39:39 +00001355 SkMatrix tmpM(m);
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +00001356 tmpM.preTranslate(SkIntToScalar(iTileR.fLeft),
robertphillips@google.comffad46b2012-10-01 14:32:51 +00001357 SkIntToScalar(iTileR.fTop));
1358
robertphillips@google.combac6b052012-09-28 18:06:49 +00001359 this->internalDrawBitmap(draw, tmpB, tileR, tmpM, params, grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001360 }
1361 }
1362 }
1363}
1364
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001365namespace {
1366
1367bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1368 // detect pixel disalignment
1369 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1370 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
rmistry@google.comd6176b02012-08-23 18:14:13 +00001371 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001372 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1373 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1374 COLOR_BLEED_TOLERANCE &&
1375 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1376 COLOR_BLEED_TOLERANCE) {
1377 return true;
1378 }
1379 return false;
1380}
1381
1382bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1383 const SkMatrix& m) {
1384 // Only gets called if hasAlignedSamples returned false.
1385 // So we can assume that sampling is axis aligned but not texel aligned.
1386 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
rmistry@google.comd6176b02012-08-23 18:14:13 +00001387 SkRect innerSrcRect(srcRect), innerTransformedRect,
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001388 outerTransformedRect(transformedRect);
1389 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1390 m.mapRect(&innerTransformedRect, innerSrcRect);
1391
1392 // The gap between outerTransformedRect and innerTransformedRect
1393 // represents the projection of the source border area, which is
1394 // problematic for color bleeding. We must check whether any
1395 // destination pixels sample the border area.
1396 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1397 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1398 SkIRect outer, inner;
1399 outerTransformedRect.round(&outer);
1400 innerTransformedRect.round(&inner);
1401 // If the inner and outer rects round to the same result, it means the
1402 // border does not overlap any pixel centers. Yay!
1403 return inner != outer;
1404}
1405
1406} // unnamed namespace
1407
reed@google.comac10a2d2010-12-22 21:39:39 +00001408/*
1409 * This is called by drawBitmap(), which has to handle images that may be too
1410 * large to be represented by a single texture.
1411 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001412 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1413 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001414 */
1415void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1416 const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001417 const SkRect& srcRect,
reed@google.comac10a2d2010-12-22 21:39:39 +00001418 const SkMatrix& m,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001419 const GrTextureParams& params,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001420 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001421 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1422 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001423
reed@google.com9c49bc32011-07-07 13:42:37 +00001424 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001425 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001426 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001427 return;
1428 }
1429
bsalomon@google.com88becf42012-10-05 14:54:42 +00001430 GrSamplerState* sampler = grPaint->colorSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001431
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001432 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001433
1434 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001435 SkAutoCachedTexture act(this, bitmap, &params, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001436 if (NULL == texture) {
1437 return;
1438 }
1439
robertphillips@google.combac6b052012-09-28 18:06:49 +00001440 GrRect dstRect(srcRect);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001441 GrRect paintRect;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001442 SkScalar wInv = SkScalarInvert(SkIntToScalar(bitmap.width()));
1443 SkScalar hInv = SkScalarInvert(SkIntToScalar(bitmap.height()));
1444 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1445 SkScalarMul(srcRect.fTop, hInv),
1446 SkScalarMul(srcRect.fRight, wInv),
1447 SkScalarMul(srcRect.fBottom, hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001448
rmistry@google.comd6176b02012-08-23 18:14:13 +00001449 bool needsTextureDomain = false;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001450 if (params.isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001451 // Need texture domain if drawing a sub rect.
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001452 needsTextureDomain = srcRect.width() < bitmap.width() ||
robertphillips@google.combac6b052012-09-28 18:06:49 +00001453 srcRect.height() < bitmap.height();
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001454 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1455 // sampling is axis-aligned
robertphillips@google.combac6b052012-09-28 18:06:49 +00001456 GrRect transformedRect;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001457 SkMatrix srcToDeviceMatrix(m);
1458 srcToDeviceMatrix.postConcat(*draw.fMatrix);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001459 srcToDeviceMatrix.mapRect(&transformedRect, srcRect);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001460
robertphillips@google.combac6b052012-09-28 18:06:49 +00001461 if (hasAlignedSamples(srcRect, transformedRect)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001462 // We could also turn off filtering here (but we already did a cache lookup with
1463 // params).
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001464 needsTextureDomain = false;
1465 } else {
1466 needsTextureDomain = needsTextureDomain &&
robertphillips@google.combac6b052012-09-28 18:06:49 +00001467 mayColorBleed(srcRect, transformedRect, m);
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001468 }
1469 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001470 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001471
1472 GrRect textureDomain = GrRect::MakeEmpty();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001473 SkAutoTUnref<GrCustomStage> stage;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001474 if (needsTextureDomain) {
1475 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001476 GrScalar left, top, right, bottom;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001477 if (srcRect.width() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001478 GrScalar border = GR_ScalarHalf / bitmap.width();
1479 left = paintRect.left() + border;
1480 right = paintRect.right() - border;
1481 } else {
1482 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1483 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001484 if (srcRect.height() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001485 GrScalar border = GR_ScalarHalf / bitmap.height();
1486 top = paintRect.top() + border;
1487 bottom = paintRect.bottom() - border;
1488 } else {
1489 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1490 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001491 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001492 stage.reset(SkNEW_ARGS(GrTextureDomainEffect, (texture, textureDomain, params)));
1493 } else {
1494 stage.reset(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)));
junov@google.com6acc9b32011-05-16 18:32:07 +00001495 }
bsalomon@google.com88becf42012-10-05 14:54:42 +00001496 grPaint->colorSampler(kBitmapTextureIdx)->setCustomStage(stage);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001497 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001498}
1499
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001500namespace {
1501
1502void apply_custom_stage(GrContext* context,
1503 GrTexture* srcTexture,
1504 GrTexture* dstTexture,
1505 const GrRect& rect,
1506 GrCustomStage* stage) {
1507 SkASSERT(srcTexture && srcTexture->getContext() == context);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001508 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001509 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001510 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001511
1512 GrMatrix sampleM;
1513 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1514 GrPaint paint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001515 paint.colorSampler(0)->reset(sampleM);
1516 paint.colorSampler(0)->setCustomStage(stage);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001517 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001518}
1519
1520};
1521
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001522static GrTexture* filter_texture(SkDevice* device, GrContext* context,
1523 GrTexture* texture, SkImageFilter* filter,
1524 const GrRect& rect) {
reed@google.com8926b162012-03-23 15:36:36 +00001525 GrAssert(filter);
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001526 SkDeviceImageFilterProxy proxy(device);
reed@google.com8926b162012-03-23 15:36:36 +00001527
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001528 GrTextureDesc desc;
1529 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1530 desc.fWidth = SkScalarCeilToInt(rect.width());
1531 desc.fHeight = SkScalarCeilToInt(rect.height());
bsalomon@google.com0342a852012-08-20 19:22:38 +00001532 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001533 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001534
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001535 if (filter->canFilterImageGPU()) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001536 texture = filter->onFilterImageGPU(&proxy, texture, rect);
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001537 } else if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001538 GrAutoScratchTexture dst(context, desc);
1539 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1540 texture = dst.detach();
1541 stage->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001542 }
1543 return texture;
1544}
1545
reed@google.comac10a2d2010-12-22 21:39:39 +00001546void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1547 int left, int top, const SkPaint& paint) {
1548 CHECK_SHOULD_DRAW(draw);
1549
reed@google.com8926b162012-03-23 15:36:36 +00001550 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001551 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1552 return;
1553 }
1554
reed@google.com76dd2772012-01-05 21:15:07 +00001555 int w = bitmap.width();
1556 int h = bitmap.height();
1557
bsalomon@google.com5782d712011-01-21 21:03:59 +00001558 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001559 SkAutoCachedTexture colorLutTexture;
1560 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001561 return;
1562 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001563
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001564 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001565
bsalomon@google.com88becf42012-10-05 14:54:42 +00001566 GrSamplerState* sampler = grPaint.colorSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001567
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001568 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001569 sampler->reset();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001570 // draw sprite uses the default texture params
1571 SkAutoCachedTexture act(this, bitmap, NULL, &texture);
bsalomon@google.com88becf42012-10-05 14:54:42 +00001572 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001573 (GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001574
reed@google.com8926b162012-03-23 15:36:36 +00001575 SkImageFilter* filter = paint.getImageFilter();
1576 if (NULL != filter) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001577 GrTexture* filteredTexture = filter_texture(this, fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001578 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001579 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001580 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001581 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001582 texture = filteredTexture;
1583 filteredTexture->unref();
1584 }
reed@google.com76dd2772012-01-05 21:15:07 +00001585 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001586
bsalomon@google.com5782d712011-01-21 21:03:59 +00001587 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001588 GrRect::MakeXYWH(GrIntToScalar(left),
1589 GrIntToScalar(top),
1590 GrIntToScalar(w),
1591 GrIntToScalar(h)),
1592 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1593 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001594}
1595
reed@google.com33535f32012-09-25 15:37:50 +00001596void SkGpuDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1597 const SkRect* src, const SkRect& dst,
1598 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001599 SkMatrix matrix;
1600 SkRect bitmapBounds, tmpSrc;
1601
1602 bitmapBounds.set(0, 0,
1603 SkIntToScalar(bitmap.width()),
1604 SkIntToScalar(bitmap.height()));
1605
reed@google.com33535f32012-09-25 15:37:50 +00001606 // Compute matrix from the two rectangles
robertphillips@google.combac6b052012-09-28 18:06:49 +00001607 if (NULL != src) {
1608 tmpSrc = *src;
1609 } else {
1610 tmpSrc = bitmapBounds;
1611 }
1612 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1613
1614 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
1615 if (NULL != src) {
1616 if (!bitmapBounds.contains(tmpSrc)) {
1617 if (!tmpSrc.intersect(bitmapBounds)) {
1618 return; // nothing to draw
reed@google.com33535f32012-09-25 15:37:50 +00001619 }
reed@google.com33535f32012-09-25 15:37:50 +00001620 }
reed@google.com33535f32012-09-25 15:37:50 +00001621 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +00001622
robertphillips@google.combac6b052012-09-28 18:06:49 +00001623 this->drawBitmapCommon(draw, bitmap, &tmpSrc, matrix, paint);
reed@google.com33535f32012-09-25 15:37:50 +00001624}
1625
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001626void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001627 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001628 // clear of the source device must occur before CHECK_SHOULD_DRAW
1629 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1630 if (dev->fNeedClear) {
1631 // TODO: could check here whether we really need to draw at all
1632 dev->clear(0x0);
1633 }
1634
reed@google.comac10a2d2010-12-22 21:39:39 +00001635 CHECK_SHOULD_DRAW(draw);
1636
bsalomon@google.com5782d712011-01-21 21:03:59 +00001637 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001638 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001639 grPaint.colorSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001640 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001641 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001642 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001643 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001644
bsalomon@google.com88becf42012-10-05 14:54:42 +00001645 GrTexture* devTex = grPaint.getColorSampler(kBitmapTextureIdx).getCustomStage()->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001646 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001647
reed@google.com8926b162012-03-23 15:36:36 +00001648 SkImageFilter* filter = paint.getImageFilter();
1649 if (NULL != filter) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001650 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001651 SkIntToScalar(devTex->height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001652 GrTexture* filteredTexture = filter_texture(this, fContext, devTex, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001653 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001654 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001655 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001656 devTex = filteredTexture;
1657 filteredTexture->unref();
1658 }
1659 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001660
bsalomon@google.com5782d712011-01-21 21:03:59 +00001661 const SkBitmap& bm = dev->accessBitmap(false);
1662 int w = bm.width();
1663 int h = bm.height();
1664
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001665 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001666 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1667 GrIntToScalar(y),
1668 GrIntToScalar(w),
1669 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001670
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001671 // The device being drawn may not fill up its texture (saveLayer uses
1672 // the approximate ).
1673 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1674 GR_Scalar1 * h / devTex->height());
1675
1676 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001677}
1678
reed@google.com8926b162012-03-23 15:36:36 +00001679bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001680 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001681 !filter->canFilterImageGPU()) {
reed@google.com76dd2772012-01-05 21:15:07 +00001682 return false;
1683 }
reed@google.com8926b162012-03-23 15:36:36 +00001684 return true;
1685}
1686
1687bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1688 const SkMatrix& ctm,
1689 SkBitmap* result, SkIPoint* offset) {
1690 // want explicitly our impl, so guard against a subclass of us overriding it
1691 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001692 return false;
1693 }
reed@google.com8926b162012-03-23 15:36:36 +00001694
1695 SkAutoLockPixels alp(src, !src.getTexture());
1696 if (!src.getTexture() && !src.readyToDraw()) {
1697 return false;
1698 }
1699
1700 GrPaint paint;
reed@google.com8926b162012-03-23 15:36:36 +00001701
reed@google.com8926b162012-03-23 15:36:36 +00001702 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001703 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1704 // must be pushed upstack.
1705 SkAutoCachedTexture act(this, src, NULL, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001706
1707 result->setConfig(src.config(), src.width(), src.height());
rmistry@google.comd6176b02012-08-23 18:14:13 +00001708 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001709 SkIntToScalar(src.height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001710 GrTexture* resultTexture = filter_texture(this, fContext, texture, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001711 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001712 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1713 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001714 resultTexture->unref();
1715 }
reed@google.com76dd2772012-01-05 21:15:07 +00001716 return true;
1717}
1718
reed@google.comac10a2d2010-12-22 21:39:39 +00001719///////////////////////////////////////////////////////////////////////////////
1720
1721// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001722static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001723 kTriangles_GrPrimitiveType,
1724 kTriangleStrip_GrPrimitiveType,
1725 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001726};
1727
1728void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1729 int vertexCount, const SkPoint vertices[],
1730 const SkPoint texs[], const SkColor colors[],
1731 SkXfermode* xmode,
1732 const uint16_t indices[], int indexCount,
1733 const SkPaint& paint) {
1734 CHECK_SHOULD_DRAW(draw);
1735
bsalomon@google.com5782d712011-01-21 21:03:59 +00001736 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001737 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001738 // we ignore the shader if texs is null.
1739 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001740 if (!skPaint2GrPaintNoShader(this,
1741 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001742 false,
1743 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001744 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001745 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001746 return;
1747 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001748 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001749 if (!skPaint2GrPaintShader(this,
1750 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001751 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001752 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001753 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001754 return;
1755 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001756 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001757
1758 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001759 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001760 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1761#if 0
1762 return
1763#endif
1764 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001765 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001766
bsalomon@google.com498776a2011-08-16 19:20:44 +00001767 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1768 if (NULL != colors) {
1769 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001770 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001771 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001772 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001773 }
1774 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001775 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001776 fContext->drawVertices(grPaint,
1777 gVertexMode2PrimitiveType[vmode],
1778 vertexCount,
1779 (GrPoint*) vertices,
1780 (GrPoint*) texs,
1781 colors,
1782 indices,
1783 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001784}
1785
1786///////////////////////////////////////////////////////////////////////////////
1787
1788static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001789 GrFontScaler* scaler = (GrFontScaler*)data;
1790 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001791}
1792
1793static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1794 void* auxData;
1795 GrFontScaler* scaler = NULL;
1796 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1797 scaler = (GrFontScaler*)auxData;
1798 }
1799 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001800 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001801 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1802 }
1803 return scaler;
1804}
1805
1806static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1807 SkFixed fx, SkFixed fy,
1808 const SkGlyph& glyph) {
1809 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1810
bungeman@google.com15865a72012-01-11 16:28:04 +00001811 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001812
1813 if (NULL == procs->fFontScaler) {
1814 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1815 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001816
bungeman@google.com15865a72012-01-11 16:28:04 +00001817 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1818 glyph.getSubXFixed(),
1819 glyph.getSubYFixed()),
1820 SkFixedFloorToFixed(fx),
1821 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001822 procs->fFontScaler);
1823}
1824
bsalomon@google.com5782d712011-01-21 21:03:59 +00001825SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001826
1827 // deferred allocation
1828 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001829 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001830 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1831 fDrawProcs->fContext = fContext;
1832 }
1833
1834 // init our (and GL's) state
1835 fDrawProcs->fTextContext = context;
1836 fDrawProcs->fFontScaler = NULL;
1837 return fDrawProcs;
1838}
1839
1840void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1841 size_t byteLength, SkScalar x, SkScalar y,
1842 const SkPaint& paint) {
1843 CHECK_SHOULD_DRAW(draw);
1844
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001845 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001846 // this guy will just call our drawPath()
1847 draw.drawText((const char*)text, byteLength, x, y, paint);
1848 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001849 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001850
1851 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001852 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001853 if (!skPaint2GrPaintShader(this,
1854 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001855 true,
twiz@google.com58071162012-07-18 21:41:50 +00001856 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001857 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001858 return;
1859 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001860 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001861 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001862 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1863 }
1864}
1865
1866void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1867 size_t byteLength, const SkScalar pos[],
1868 SkScalar constY, int scalarsPerPos,
1869 const SkPaint& paint) {
1870 CHECK_SHOULD_DRAW(draw);
1871
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001872 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001873 // this guy will just call our drawPath()
1874 draw.drawPosText((const char*)text, byteLength, pos, constY,
1875 scalarsPerPos, paint);
1876 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001877 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001878
1879 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001880 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001881 if (!skPaint2GrPaintShader(this,
1882 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001883 true,
twiz@google.com58071162012-07-18 21:41:50 +00001884 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001885 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001886 return;
1887 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001888 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001889 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001890 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1891 scalarsPerPos, paint);
1892 }
1893}
1894
1895void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1896 size_t len, const SkPath& path,
1897 const SkMatrix* m, const SkPaint& paint) {
1898 CHECK_SHOULD_DRAW(draw);
1899
1900 SkASSERT(draw.fDevice == this);
1901 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1902}
1903
1904///////////////////////////////////////////////////////////////////////////////
1905
reed@google.comf67e4cf2011-03-15 20:56:58 +00001906bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1907 if (!paint.isLCDRenderText()) {
1908 // we're cool with the paint as is
1909 return false;
1910 }
1911
1912 if (paint.getShader() ||
1913 paint.getXfermode() || // unless its srcover
1914 paint.getMaskFilter() ||
1915 paint.getRasterizer() ||
1916 paint.getColorFilter() ||
1917 paint.getPathEffect() ||
1918 paint.isFakeBoldText() ||
1919 paint.getStyle() != SkPaint::kFill_Style) {
1920 // turn off lcd
1921 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1922 flags->fHinting = paint.getHinting();
1923 return true;
1924 }
1925 // we're cool with the paint as is
1926 return false;
1927}
1928
reed@google.com75d939b2011-12-07 15:07:23 +00001929void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001930 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001931 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001932}
1933
reed@google.comf67e4cf2011-03-15 20:56:58 +00001934///////////////////////////////////////////////////////////////////////////////
1935
bsalomon@google.comfb309512011-11-30 14:13:48 +00001936bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001937 const GrTextureParams& params) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001938 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001939 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001940
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001941 GrTextureDesc desc;
1942 desc.fWidth = bitmap.width();
1943 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001944 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001945
robertphillips@google.com9c2ea842012-08-13 17:47:59 +00001946 GrCacheData cacheData(key);
1947
1948 return this->context()->isTextureInCache(desc, cacheData, &params);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001949}
1950
1951
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001952SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1953 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001954 bool isOpaque,
1955 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001956 GrTextureDesc desc;
1957 desc.fConfig = fRenderTarget->config();
1958 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1959 desc.fWidth = width;
1960 desc.fHeight = height;
1961 desc.fSampleCnt = fRenderTarget->numSamples();
1962
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001963 GrTexture* texture;
1964 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001965 // Skia's convention is to only clear a device if it is non-opaque.
1966 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001967
1968#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1969 // layers are never draw in repeat modes, so we can request an approx
1970 // match and ignore any padding.
1971 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1972 GrContext::kApprox_ScratchTexMatch :
1973 GrContext::kExact_ScratchTexMatch;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001974 texture = fContext->lockScratchTexture(desc, matchType);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001975#else
1976 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1977 texture = tunref.get();
1978#endif
1979 if (texture) {
1980 return SkNEW_ARGS(SkGpuDevice,(fContext,
1981 texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001982 needClear));
1983 } else {
1984 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1985 width, height);
1986 return NULL;
1987 }
1988}
1989
1990SkGpuDevice::SkGpuDevice(GrContext* context,
1991 GrTexture* texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001992 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00001993 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1994
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001995 GrAssert(texture && texture->asRenderTarget());
bsalomon@google.com8090e652012-08-28 15:07:11 +00001996 // This constructor is called from onCreateCompatibleDevice. It has locked the RT in the texture
1997 // cache. We pass true for the third argument so that it will get unlocked.
1998 this->initFromRenderTarget(context, texture->asRenderTarget(), true);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001999 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00002000}