blob: 7ea1e756f5d418d9ec32c682b8b7456942e316e1 [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.comc9aa5872011-04-05 21:05:37 +000023#include "SkUtils.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000024
bsalomon@google.com06cd7322012-03-30 18:45:35 +000025#define CACHE_COMPATIBLE_DEVICE_TEXTURES 1
reed@google.comac10a2d2010-12-22 21:39:39 +000026
27#if 0
28 extern bool (*gShouldDrawProc)();
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +000029 #define CHECK_SHOULD_DRAW(draw, forceI) \
reed@google.comac10a2d2010-12-22 21:39:39 +000030 do { \
31 if (gShouldDrawProc && !gShouldDrawProc()) return; \
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +000032 this->prepareDraw(draw, forceI); \
reed@google.comac10a2d2010-12-22 21:39:39 +000033 } while (0)
34#else
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +000035 #define CHECK_SHOULD_DRAW(draw, forceI) this->prepareDraw(draw, forceI)
reed@google.comac10a2d2010-12-22 21:39:39 +000036#endif
37
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000038// we use the same texture slot on GrPaint for bitmaps and shaders
39// (since drawBitmap, drawSprite, and drawDevice ignore skia's shader)
40enum {
41 kBitmapTextureIdx = 0,
twiz@google.com58071162012-07-18 21:41:50 +000042 kShaderTextureIdx = 0,
43 kColorFilterTextureIdx = 1
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000044};
45
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000046#define MAX_BLUR_SIGMA 4.0f
47// FIXME: This value comes from from SkBlurMaskFilter.cpp.
48// Should probably be put in a common header someplace.
49#define MAX_BLUR_RADIUS SkIntToScalar(128)
50// This constant approximates the scaling done in the software path's
51// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
52// IMHO, it actually should be 1: we blur "less" than we should do
53// according to the CSS and canvas specs, simply because Safari does the same.
54// Firefox used to do the same too, until 4.0 where they fixed it. So at some
55// point we should probably get rid of these scaling constants and rebaseline
56// all the blur tests.
57#define BLUR_SIGMA_SCALE 0.6f
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000058// This constant represents the screen alignment criterion in texels for
rmistry@google.comd6176b02012-08-23 18:14:13 +000059// requiring texture domain clamping to prevent color bleeding when drawing
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000060// a sub region of a larger source image.
61#define COLOR_BLEED_TOLERANCE SkFloatToScalar(0.001f)
bsalomon@google.com06cd7322012-03-30 18:45:35 +000062
bsalomon@google.coma6926b12012-10-10 15:25:50 +000063#define DO_DEFERRED_CLEAR() \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000064 do { \
65 if (fNeedClear) { \
bsalomon@google.com730ca3b2012-04-03 13:25:12 +000066 this->clear(0x0); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000067 } \
68 } while (false) \
69
reed@google.comac10a2d2010-12-22 21:39:39 +000070///////////////////////////////////////////////////////////////////////////////
71
reed@google.comb0a34d82012-07-11 19:57:55 +000072#define CHECK_FOR_NODRAW_ANNOTATION(paint) \
73 do { if (paint.isNoDrawAnnotation()) { return; } } while (0)
74
75///////////////////////////////////////////////////////////////////////////////
76
77
bsalomon@google.com84405e02012-03-05 19:57:21 +000078class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable {
79public:
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000080 SkAutoCachedTexture()
81 : fDevice(NULL)
82 , fTexture(NULL) {
rmistry@google.comd6176b02012-08-23 18:14:13 +000083 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000084
bsalomon@google.com84405e02012-03-05 19:57:21 +000085 SkAutoCachedTexture(SkGpuDevice* device,
86 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +000087 const GrTextureParams* params,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000088 GrTexture** texture)
89 : fDevice(NULL)
90 , fTexture(NULL) {
91 GrAssert(NULL != texture);
bsalomon@google.comb8670992012-07-25 21:27:09 +000092 *texture = this->set(device, bitmap, params);
reed@google.comac10a2d2010-12-22 21:39:39 +000093 }
reed@google.comac10a2d2010-12-22 21:39:39 +000094
bsalomon@google.com84405e02012-03-05 19:57:21 +000095 ~SkAutoCachedTexture() {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000096 if (NULL != fTexture) {
97 GrUnlockCachedBitmapTexture(fTexture);
bsalomon@google.com84405e02012-03-05 19:57:21 +000098 }
reed@google.comac10a2d2010-12-22 21:39:39 +000099 }
bsalomon@google.com84405e02012-03-05 19:57:21 +0000100
101 GrTexture* set(SkGpuDevice* device,
102 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000103 const GrTextureParams* params) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000104 if (NULL != fTexture) {
105 GrUnlockCachedBitmapTexture(fTexture);
106 fTexture = NULL;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000107 }
108 fDevice = device;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000109 GrTexture* result = (GrTexture*)bitmap.getTexture();
110 if (NULL == result) {
111 // Cannot return the native texture so look it up in our cache
112 fTexture = GrLockCachedBitmapTexture(device->context(), bitmap, params);
113 result = fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000114 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000115 return result;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000116 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000117
bsalomon@google.com84405e02012-03-05 19:57:21 +0000118private:
119 SkGpuDevice* fDevice;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000120 GrTexture* fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000121};
reed@google.comac10a2d2010-12-22 21:39:39 +0000122
123///////////////////////////////////////////////////////////////////////////////
124
reed@google.comac10a2d2010-12-22 21:39:39 +0000125struct GrSkDrawProcs : public SkDrawProcs {
126public:
127 GrContext* fContext;
128 GrTextContext* fTextContext;
129 GrFontScaler* fFontScaler; // cached in the skia glyphcache
130};
131
132///////////////////////////////////////////////////////////////////////////////
133
reed@google.comaf951c92011-06-16 19:10:39 +0000134static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
135 switch (config) {
136 case kAlpha_8_GrPixelConfig:
137 *isOpaque = false;
138 return SkBitmap::kA8_Config;
139 case kRGB_565_GrPixelConfig:
140 *isOpaque = true;
141 return SkBitmap::kRGB_565_Config;
142 case kRGBA_4444_GrPixelConfig:
143 *isOpaque = false;
144 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000145 case kSkia8888_PM_GrPixelConfig:
146 // we don't currently have a way of knowing whether
147 // a 8888 is opaque based on the config.
148 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000149 return SkBitmap::kARGB_8888_Config;
150 default:
151 *isOpaque = false;
152 return SkBitmap::kNo_Config;
153 }
154}
reed@google.comac10a2d2010-12-22 21:39:39 +0000155
reed@google.comaf951c92011-06-16 19:10:39 +0000156static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000157 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000158
159 bool isOpaque;
160 SkBitmap bitmap;
161 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
162 renderTarget->width(), renderTarget->height());
163 bitmap.setIsOpaque(isOpaque);
164 return bitmap;
165}
166
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000167SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000168: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000169 this->initFromRenderTarget(context, texture->asRenderTarget(), false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000170}
171
reed@google.comaf951c92011-06-16 19:10:39 +0000172SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000173: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000174 this->initFromRenderTarget(context, renderTarget, false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000175}
176
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000177void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.com8090e652012-08-28 15:07:11 +0000178 GrRenderTarget* renderTarget,
179 bool cached) {
reed@google.comaf951c92011-06-16 19:10:39 +0000180 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000181
reed@google.comaf951c92011-06-16 19:10:39 +0000182 fContext = context;
183 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000184
reed@google.comaf951c92011-06-16 19:10:39 +0000185 fRenderTarget = NULL;
186 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000187
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000188 GrAssert(NULL != renderTarget);
189 fRenderTarget = renderTarget;
190 fRenderTarget->ref();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000191
bsalomon@google.coma2921122012-08-28 12:34:17 +0000192 // Hold onto to the texture in the pixel ref (if there is one) because the texture holds a ref
193 // on the RT but not vice-versa.
194 // TODO: Remove this trickery once we figure out how to make SkGrPixelRef do this without
195 // busting chrome (for a currently unknown reason).
196 GrSurface* surface = fRenderTarget->asTexture();
197 if (NULL == surface) {
198 surface = fRenderTarget;
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000199 }
bsalomon@google.com8090e652012-08-28 15:07:11 +0000200 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (surface, cached));
bsalomon@google.coma2921122012-08-28 12:34:17 +0000201
reed@google.comaf951c92011-06-16 19:10:39 +0000202 this->setPixelRef(pr, 0)->unref();
203}
204
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000205SkGpuDevice::SkGpuDevice(GrContext* context,
206 SkBitmap::Config config,
207 int width,
208 int height)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000209 : SkDevice(config, width, height, false /*isOpaque*/) {
210
reed@google.comac10a2d2010-12-22 21:39:39 +0000211 fDrawProcs = NULL;
212
reed@google.com7b201d22011-01-11 18:59:23 +0000213 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000214 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000215
reed@google.comac10a2d2010-12-22 21:39:39 +0000216 fRenderTarget = NULL;
217 fNeedClear = false;
218
reed@google.comaf951c92011-06-16 19:10:39 +0000219 if (config != SkBitmap::kRGB_565_Config) {
220 config = SkBitmap::kARGB_8888_Config;
221 }
222 SkBitmap bm;
223 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000224
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000225 GrTextureDesc desc;
226 desc.fFlags = kRenderTarget_GrTextureFlagBit;
227 desc.fWidth = width;
228 desc.fHeight = height;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000229 desc.fConfig = SkBitmapConfig2GrPixelConfig(bm.config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000230
bsalomon@google.coma2921122012-08-28 12:34:17 +0000231 SkAutoTUnref<GrTexture> texture(fContext->createUncachedTexture(desc, NULL, 0));
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000232
bsalomon@google.coma2921122012-08-28 12:34:17 +0000233 if (NULL != texture) {
234 fRenderTarget = texture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000235 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000236
reed@google.comaf951c92011-06-16 19:10:39 +0000237 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000238
reed@google.comaf951c92011-06-16 19:10:39 +0000239 // wrap the bitmap with a pixelref to expose our texture
bsalomon@google.coma2921122012-08-28 12:34:17 +0000240 SkGrPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (texture));
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000241 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000242 } else {
243 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
244 width, height);
245 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000246 }
247}
248
249SkGpuDevice::~SkGpuDevice() {
250 if (fDrawProcs) {
251 delete fDrawProcs;
252 }
253
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000254 // The GrContext takes a ref on the target. We don't want to cause the render
255 // target to be unnecessarily kept alive.
256 if (fContext->getRenderTarget() == fRenderTarget) {
257 fContext->setRenderTarget(NULL);
258 }
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000259
bsalomon@google.coma2921122012-08-28 12:34:17 +0000260 SkSafeUnref(fRenderTarget);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000261 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000262}
263
reed@google.comac10a2d2010-12-22 21:39:39 +0000264///////////////////////////////////////////////////////////////////////////////
265
266void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000267 DO_DEFERRED_CLEAR();
reed@google.comac10a2d2010-12-22 21:39:39 +0000268 fContext->setRenderTarget(fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000269}
270
271///////////////////////////////////////////////////////////////////////////////
272
bsalomon@google.comc4364992011-11-07 15:54:49 +0000273namespace {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000274GrPixelConfig config8888_to_grconfig_and_flags(SkCanvas::Config8888 config8888, uint32_t* flags) {
bsalomon@google.comc4364992011-11-07 15:54:49 +0000275 switch (config8888) {
276 case SkCanvas::kNative_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000277 *flags = 0;
278 return kSkia8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000279 case SkCanvas::kNative_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000280 *flags = GrContext::kUnpremul_PixelOpsFlag;
281 return kSkia8888_PM_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000282 case SkCanvas::kBGRA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000283 *flags = 0;
284 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000285 case SkCanvas::kBGRA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000286 *flags = GrContext::kUnpremul_PixelOpsFlag;
287 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000288 case SkCanvas::kRGBA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000289 *flags = 0;
290 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000291 case SkCanvas::kRGBA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000292 *flags = GrContext::kUnpremul_PixelOpsFlag;
293 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000294 default:
295 GrCrash("Unexpected Config8888.");
bsalomon@google.comccaa0022012-09-25 19:55:07 +0000296 *flags = 0; // suppress warning
bsalomon@google.comc4364992011-11-07 15:54:49 +0000297 return kSkia8888_PM_GrPixelConfig;
298 }
299}
300}
301
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000302bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
303 int x, int y,
304 SkCanvas::Config8888 config8888) {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000305 DO_DEFERRED_CLEAR();
bsalomon@google.com910267d2011-11-02 20:06:25 +0000306 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
307 SkASSERT(!bitmap.isNull());
308 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000309
bsalomon@google.com910267d2011-11-02 20:06:25 +0000310 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000311 GrPixelConfig config;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000312 uint32_t flags;
313 config = config8888_to_grconfig_and_flags(config8888, &flags);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000314 return fContext->readRenderTargetPixels(fRenderTarget,
315 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000316 bitmap.width(),
317 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000318 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000319 bitmap.getPixels(),
bsalomon@google.com0342a852012-08-20 19:22:38 +0000320 bitmap.rowBytes(),
321 flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000322}
323
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000324void SkGpuDevice::writePixels(const SkBitmap& bitmap, int x, int y,
325 SkCanvas::Config8888 config8888) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000326 SkAutoLockPixels alp(bitmap);
327 if (!bitmap.readyToDraw()) {
328 return;
329 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000330
331 GrPixelConfig config;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000332 uint32_t flags;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000333 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000334 config = config8888_to_grconfig_and_flags(config8888, &flags);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000335 } else {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000336 flags = 0;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000337 config= SkBitmapConfig2GrPixelConfig(bitmap.config());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000338 }
339
bsalomon@google.com6f379512011-11-16 20:36:03 +0000340 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
bsalomon@google.com0342a852012-08-20 19:22:38 +0000341 config, bitmap.getPixels(), bitmap.rowBytes(), flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000342}
343
robertphillips@google.com46f93502012-08-07 15:38:08 +0000344namespace {
345void purgeClipCB(int genID, void* data) {
346 GrContext* context = (GrContext*) data;
347
348 if (SkClipStack::kInvalidGenID == genID ||
349 SkClipStack::kEmptyGenID == genID ||
350 SkClipStack::kWideOpenGenID == genID) {
351 // none of these cases will have a cached clip mask
352 return;
353 }
354
355}
356};
357
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000358void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
359 INHERITED::onAttachToCanvas(canvas);
360
361 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000362 fClipData.fClipStack = canvas->getClipStack();
robertphillips@google.com46f93502012-08-07 15:38:08 +0000363
364 fClipData.fClipStack->addPurgeClipCallback(purgeClipCB, fContext);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000365}
366
367void SkGpuDevice::onDetachFromCanvas() {
368 INHERITED::onDetachFromCanvas();
369
robertphillips@google.com46f93502012-08-07 15:38:08 +0000370 // TODO: iterate through the clip stack and clean up any cached clip masks
371 fClipData.fClipStack->removePurgeClipCallback(purgeClipCB, fContext);
372
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000373 fClipData.fClipStack = NULL;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000374}
375
robertphillips@google.com607fe072012-07-24 13:54:00 +0000376#ifdef SK_DEBUG
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000377static void check_bounds(const GrClipData& clipData,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000378 const SkRegion& clipRegion,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000379 int renderTargetWidth,
380 int renderTargetHeight) {
381
robertphillips@google.com7b112892012-07-31 15:18:21 +0000382 SkIRect devBound;
383
384 devBound.setLTRB(0, 0, renderTargetWidth, renderTargetHeight);
385
robertphillips@google.com607fe072012-07-24 13:54:00 +0000386 SkClipStack::BoundsType boundType;
robertphillips@google.com7b112892012-07-31 15:18:21 +0000387 SkRect canvTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000388
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000389 clipData.fClipStack->getBounds(&canvTemp, &boundType);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000390 if (SkClipStack::kNormal_BoundsType == boundType) {
robertphillips@google.com7b112892012-07-31 15:18:21 +0000391 SkIRect devTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000392
robertphillips@google.com7b112892012-07-31 15:18:21 +0000393 canvTemp.roundOut(&devTemp);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000394
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000395 devTemp.offset(-clipData.fOrigin.fX, -clipData.fOrigin.fY);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000396
robertphillips@google.com7b112892012-07-31 15:18:21 +0000397 if (!devBound.intersect(devTemp)) {
398 devBound.setEmpty();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000399 }
400 }
401
robertphillips@google.com768fee82012-08-02 12:42:43 +0000402 GrAssert(devBound.contains(clipRegion.getBounds()));
robertphillips@google.com607fe072012-07-24 13:54:00 +0000403}
404#endif
405
reed@google.comac10a2d2010-12-22 21:39:39 +0000406///////////////////////////////////////////////////////////////////////////////
407
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000408// call this every draw call, to ensure that the context reflects our state,
reed@google.comac10a2d2010-12-22 21:39:39 +0000409// and not the state from some other canvas/device
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000410void SkGpuDevice::prepareDraw(const SkDraw& draw, bool forceIdentity) {
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000411 GrAssert(NULL != fClipData.fClipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000412
reed@google.comac10a2d2010-12-22 21:39:39 +0000413 fContext->setRenderTarget(fRenderTarget);
414
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000415 SkASSERT(draw.fClipStack && draw.fClipStack == fClipData.fClipStack);
reed@google.comac10a2d2010-12-22 21:39:39 +0000416
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000417 if (forceIdentity) {
418 fContext->setIdentityMatrix();
419 } else {
420 fContext->setMatrix(*draw.fMatrix);
421 }
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000422 fClipData.fOrigin = this->getOrigin();
reed@google.comac10a2d2010-12-22 21:39:39 +0000423
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000424#ifdef SK_DEBUG
425 check_bounds(fClipData, *draw.fClip, fRenderTarget->width(), fRenderTarget->height());
426#endif
427
428 fContext->setClip(&fClipData);
429
430 DO_DEFERRED_CLEAR();
reed@google.comac10a2d2010-12-22 21:39:39 +0000431}
432
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000433SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000434 DO_DEFERRED_CLEAR();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000435 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000436}
437
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000438bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
bsalomon@google.coma2921122012-08-28 12:34:17 +0000439 GrTexture* texture = fRenderTarget->asTexture();
440 if (NULL != texture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +0000441 paint->colorSampler(kBitmapTextureIdx)->setCustomStage(
bsalomon@google.coma2921122012-08-28 12:34:17 +0000442 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000443 return true;
444 }
445 return false;
446}
447
448///////////////////////////////////////////////////////////////////////////////
449
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000450SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
451SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
452SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
453SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
454SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
455 shader_type_mismatch);
rileya@google.com3e332582012-07-03 13:43:35 +0000456SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5,
457 shader_type_mismatch);
rileya@google.com22e57f92012-07-19 15:16:19 +0000458SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch);
459SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000460
bsalomon@google.com84405e02012-03-05 19:57:21 +0000461namespace {
462
463// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
464// justAlpha indicates that skPaint's alpha should be used rather than the color
465// Callers may subsequently modify the GrPaint. Setting constantColor indicates
466// that the final paint will draw the same color at every pixel. This allows
467// an optimization where the the color filter can be applied to the skPaint's
twiz@google.com58071162012-07-18 21:41:50 +0000468// color once while converting to GrPaint and then ignored.
469inline bool skPaint2GrPaintNoShader(SkGpuDevice* dev,
470 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000471 bool justAlpha,
472 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000473 SkGpuDevice::SkAutoCachedTexture* act,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000474 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000475
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000476 grPaint->setDither(skPaint.isDither());
477 grPaint->setAntiAlias(skPaint.isAntiAlias());
bsalomon@google.com5782d712011-01-21 21:03:59 +0000478
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000479 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
480 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000481
482 SkXfermode* mode = skPaint.getXfermode();
483 if (mode) {
484 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000485 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000486#if 0
487 return false;
488#endif
489 }
490 }
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000491 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000492
bsalomon@google.com5782d712011-01-21 21:03:59 +0000493 if (justAlpha) {
494 uint8_t alpha = skPaint.getAlpha();
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000495 grPaint->setColor(GrColorPackRGBA(alpha, alpha, alpha, alpha));
Scroggod757df22011-05-16 13:11:16 +0000496 // justAlpha is currently set to true only if there is a texture,
497 // so constantColor should not also be true.
498 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000499 } else {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000500 grPaint->setColor(SkColor2GrColor(skPaint.getColor()));
bsalomon@google.com88becf42012-10-05 14:54:42 +0000501 GrAssert(!grPaint->isColorStageEnabled(kShaderTextureIdx));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000502 }
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000503
Scroggo97c88c22011-05-11 14:05:25 +0000504 SkColorFilter* colorFilter = skPaint.getColorFilter();
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000505 if (NULL != colorFilter) {
506 // if the source color is a constant then apply the filter here once rather than per pixel
507 // in a shader.
508 if (constantColor) {
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000509 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000510 grPaint->setColor(SkColor2GrColor(filtered));
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000511 } else {
512 SkAutoTUnref<GrCustomStage> stage(colorFilter->asNewCustomStage(dev->context()));
513 if (NULL != stage.get()) {
514 grPaint->colorSampler(kColorFilterTextureIdx)->setCustomStage(stage);
515 } else {
516 // TODO: rewrite these using asNewCustomStage()
517 SkColor color;
518 SkXfermode::Mode filterMode;
519 SkBitmap colorTransformTable;
520 if (colorFilter->asColorMode(&color, &filterMode)) {
521 grPaint->setXfermodeColorFilter(filterMode, SkColor2GrColor(color));
522 } else if (colorFilter != NULL &&
523 colorFilter->asComponentTable(&colorTransformTable)) {
524 // pass NULL because the color table effect doesn't use tiling or filtering.
525 GrTexture* texture = act->set(dev, colorTransformTable, NULL);
526 GrSamplerState* colorSampler = grPaint->colorSampler(kColorFilterTextureIdx);
527 colorSampler->reset();
528 colorSampler->setCustomStage(SkNEW_ARGS(GrColorTableEffect, (texture)))->unref();
529 }
530 }
Scroggod757df22011-05-16 13:11:16 +0000531 }
Scroggo97c88c22011-05-11 14:05:25 +0000532 }
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000533
bsalomon@google.com5782d712011-01-21 21:03:59 +0000534 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000535}
536
bsalomon@google.com84405e02012-03-05 19:57:21 +0000537// This function is similar to skPaint2GrPaintNoShader but also converts
538// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
539// be used is set on grPaint and returned in param act. constantColor has the
540// same meaning as in skPaint2GrPaintNoShader.
541inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
542 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000543 bool constantColor,
bsalomon@google.com88becf42012-10-05 14:54:42 +0000544 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxColorStages],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000545 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000546 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000547 if (NULL == shader) {
twiz@google.com58071162012-07-18 21:41:50 +0000548 return skPaint2GrPaintNoShader(dev,
549 skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000550 false,
551 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000552 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000553 grPaint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000554 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false,
twiz@google.com58071162012-07-18 21:41:50 +0000555 &textures[kColorFilterTextureIdx], grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000556 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000557 }
558
bsalomon@google.com88becf42012-10-05 14:54:42 +0000559 GrSamplerState* sampler = grPaint->colorSampler(kShaderTextureIdx);
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000560 if (shader->asNewCustomStage(dev->context(), sampler)) {
rileya@google.com91f319c2012-07-25 17:18:31 +0000561 return true;
562 }
563
reed@google.comac10a2d2010-12-22 21:39:39 +0000564 SkBitmap bitmap;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000565 SkMatrix matrix;
reed@google.comac10a2d2010-12-22 21:39:39 +0000566 SkShader::TileMode tileModes[2];
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000567 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, &matrix, tileModes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000568
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000569 if (SkShader::kNone_BitmapType == bmptype) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000570 SkShader::GradientInfo info;
571 SkColor color;
572
573 info.fColors = &color;
574 info.fColorOffsets = NULL;
575 info.fColorCount = 1;
576 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
577 SkPaint copy(skPaint);
578 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000579 // modulate the paint alpha by the shader's solid color alpha
580 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
581 copy.setColor(SkColorSetA(color, newA));
twiz@google.com58071162012-07-18 21:41:50 +0000582 return skPaint2GrPaintNoShader(dev,
583 copy,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000584 false,
585 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000586 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000587 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000588 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000589 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000590 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000591
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000592 // Must set wrap and filter on the sampler before requesting a texture.
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000593 GrTextureParams params(tileModes, skPaint.isFilterBitmap());
594 GrTexture* texture = textures[kShaderTextureIdx].set(dev, bitmap, &params);
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000595
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000596 if (NULL == texture) {
597 SkDebugf("Couldn't convert bitmap to texture.\n");
598 return false;
599 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000600
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000601 // since our texture coords will be in local space, we whack the texture
reed@google.comac10a2d2010-12-22 21:39:39 +0000602 // matrix to map them back into 0...1 before we load it
603 SkMatrix localM;
604 if (shader->getLocalMatrix(&localM)) {
605 SkMatrix inverse;
606 if (localM.invert(&inverse)) {
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000607 matrix.preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000608 }
609 }
610 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000611 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
612 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000613 matrix.postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000614 }
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000615 sampler->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)), matrix)->unref();
bsalomon@google.com5782d712011-01-21 21:03:59 +0000616
617 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000618}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000619}
reed@google.comac10a2d2010-12-22 21:39:39 +0000620
621///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com398109c2011-04-14 18:40:27 +0000622void SkGpuDevice::clear(SkColor color) {
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000623 fContext->clear(NULL, color, fRenderTarget);
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000624 fNeedClear = false;
bsalomon@google.com398109c2011-04-14 18:40:27 +0000625}
626
reed@google.comac10a2d2010-12-22 21:39:39 +0000627void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000628 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000629
bsalomon@google.com5782d712011-01-21 21:03:59 +0000630 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000631 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000632 if (!skPaint2GrPaintShader(this,
633 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000634 true,
twiz@google.com58071162012-07-18 21:41:50 +0000635 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000636 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000637 return;
638 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000639
640 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000641}
642
643// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000644static const GrPrimitiveType gPointMode2PrimtiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +0000645 kPoints_GrPrimitiveType,
646 kLines_GrPrimitiveType,
647 kLineStrip_GrPrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000648};
649
650void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000651 size_t count, const SkPoint pts[], const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000652 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000653
654 SkScalar width = paint.getStrokeWidth();
655 if (width < 0) {
656 return;
657 }
658
bsalomon@google.comb702c0f2012-06-18 12:52:56 +0000659 // we only handle hairlines and paints without path effects or mask filters,
660 // else we let the SkDraw call our drawPath()
661 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000662 draw.drawPoints(mode, count, pts, paint, true);
663 return;
664 }
665
bsalomon@google.com5782d712011-01-21 21:03:59 +0000666 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000667 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000668 if (!skPaint2GrPaintShader(this,
669 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000670 true,
twiz@google.com58071162012-07-18 21:41:50 +0000671 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000672 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000673 return;
674 }
675
bsalomon@google.com5782d712011-01-21 21:03:59 +0000676 fContext->drawVertices(grPaint,
677 gPointMode2PrimtiveType[mode],
678 count,
679 (GrPoint*)pts,
680 NULL,
681 NULL,
682 NULL,
683 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000684}
685
reed@google.comc9aa5872011-04-05 21:05:37 +0000686///////////////////////////////////////////////////////////////////////////////
687
reed@google.comac10a2d2010-12-22 21:39:39 +0000688void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000689 const SkPaint& paint) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000690 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000691 CHECK_SHOULD_DRAW(draw, false);
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000692
bungeman@google.com79bd8772011-07-18 15:34:08 +0000693 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000694 SkScalar width = paint.getStrokeWidth();
695
696 /*
697 We have special code for hairline strokes, miter-strokes, and fills.
698 Anything else we just call our path code.
699 */
700 bool usePath = doStroke && width > 0 &&
701 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000702 // another two reasons we might need to call drawPath...
703 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000704 usePath = true;
705 }
reed@google.com67db6642011-05-26 11:46:35 +0000706 // until we aa rotated rects...
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000707 if (!usePath && paint.isAntiAlias() && !fContext->getMatrix().rectStaysRect()) {
reed@google.com67db6642011-05-26 11:46:35 +0000708 usePath = true;
709 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000710 // small miter limit means right angles show bevel...
711 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
712 paint.getStrokeMiter() < SK_ScalarSqrt2)
713 {
714 usePath = true;
715 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000716 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000717 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
718 usePath = true;
719 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000720
721 if (usePath) {
722 SkPath path;
723 path.addRect(rect);
724 this->drawPath(draw, path, paint, NULL, true);
725 return;
726 }
727
728 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000729 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000730 if (!skPaint2GrPaintShader(this,
731 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000732 true,
twiz@google.com58071162012-07-18 21:41:50 +0000733 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000734 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000735 return;
736 }
reed@google.com20efde72011-05-09 17:00:02 +0000737 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000738}
739
reed@google.com69302852011-02-16 18:08:07 +0000740#include "SkMaskFilter.h"
741#include "SkBounder.h"
742
bsalomon@google.com85003222012-03-28 14:44:37 +0000743///////////////////////////////////////////////////////////////////////////////
744
745// helpers for applying mask filters
746namespace {
747
748GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000749 switch (fillType) {
750 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000751 return kWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000752 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000753 return kEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000754 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000755 return kInverseWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000756 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000757 return kInverseEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000758 default:
759 SkDebugf("Unsupported path fill type\n");
bsalomon@google.com47059542012-06-06 20:51:20 +0000760 return kHairLine_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000761 }
762}
763
bsalomon@google.com85003222012-03-28 14:44:37 +0000764// We prefer to blur small rect with small radius via CPU.
765#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
766#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
767inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
768 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
769 rect.height() <= MIN_GPU_BLUR_SIZE &&
770 radius <= MIN_GPU_BLUR_RADIUS) {
771 return true;
772 }
773 return false;
774}
775
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000776bool drawWithGPUMaskFilter(GrContext* context, const SkPath& devPath,
777 SkMaskFilter* filter, const SkRegion& clip,
778 SkBounder* bounder, GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000779#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000780 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000781#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000782 SkMaskFilter::BlurInfo info;
783 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000784 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000785 return false;
786 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000787 SkScalar radius = info.fIgnoreTransform ? info.fRadius
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000788 : context->getMatrix().mapRadius(info.fRadius);
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000789 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000790 if (radius <= 0) {
791 return false;
792 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000793
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000794 SkRect srcRect = devPath.getBounds();
bsalomon@google.com85003222012-03-28 14:44:37 +0000795 if (shouldDrawBlurWithCPU(srcRect, radius)) {
796 return false;
797 }
798
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000799 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000800 float sigma3 = sigma * 3.0f;
801
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000802 SkRect clipRect;
803 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000804
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000805 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000806 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
807 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000808 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000809 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000810 SkIRect finalIRect;
811 finalRect.roundOut(&finalIRect);
812 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000813 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000814 }
815 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000816 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000817 }
818 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000819 srcRect.offset(offset);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000820 GrTextureDesc desc;
821 desc.fFlags = kRenderTarget_GrTextureFlagBit;
822 desc.fWidth = SkScalarCeilToInt(srcRect.width());
823 desc.fHeight = SkScalarCeilToInt(srcRect.height());
824 // We actually only need A8, but it often isn't supported as a
825 // render target so default to RGBA_8888
bsalomon@google.com0342a852012-08-20 19:22:38 +0000826 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000827
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000828 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
829 desc.fConfig = kAlpha_8_GrPixelConfig;
830 }
831
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000832 GrAutoScratchTexture pathEntry(context, desc);
833 GrTexture* pathTexture = pathEntry.texture();
834 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000835 return false;
836 }
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000837
robertphillips@google.comccb39502012-10-01 18:25:13 +0000838 SkAutoTUnref<GrTexture> blurTexture;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000839
robertphillips@google.comccb39502012-10-01 18:25:13 +0000840 {
841 GrContext::AutoRenderTarget art(context, pathTexture->asRenderTarget());
842 GrContext::AutoClip ac(context, srcRect);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000843
robertphillips@google.comccb39502012-10-01 18:25:13 +0000844 context->clear(NULL, 0);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000845
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000846 GrPaint tempPaint;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000847 if (grp->isAntiAlias()) {
848 tempPaint.setAntiAlias(true);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000849 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
850 // blend coeff of zero requires dual source blending support in order
851 // to properly blend partially covered pixels. This means the AA
852 // code path may not be taken. So we use a dst blend coeff of ISA. We
853 // could special case AA draws to a dst surface with known alpha=0 to
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000854 // use a zero dst coeff when dual source blending isn't available.f
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000855 tempPaint.setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000856 }
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000857
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000858 GrContext::AutoMatrix am;
859
860 // Draw hard shadow to pathTexture with path top-left at origin using tempPaint.
861 GrMatrix translate;
862 translate.setTranslate(offset.fX, offset.fY);
863 am.set(context, translate);
864 context->drawPath(tempPaint, devPath, pathFillType);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000865
866 // If we're doing a normal blur, we can clobber the pathTexture in the
867 // gaussianBlur. Otherwise, we need to save it for later compositing.
868 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000869 blurTexture.reset(context->gaussianBlur(pathTexture, isNormalBlur,
robertphillips@google.comccb39502012-10-01 18:25:13 +0000870 srcRect, sigma, sigma));
871
872 if (!isNormalBlur) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000873 context->setIdentityMatrix();
robertphillips@google.comccb39502012-10-01 18:25:13 +0000874 GrPaint paint;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000875 GrMatrix matrix;
876 matrix.setIDiv(pathTexture->width(), pathTexture->height());
robertphillips@google.comccb39502012-10-01 18:25:13 +0000877 // Blend pathTexture over blurTexture.
878 context->setRenderTarget(blurTexture->asRenderTarget());
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000879 paint.colorSampler(0)->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (pathTexture)), matrix)->unref();
robertphillips@google.comccb39502012-10-01 18:25:13 +0000880 if (SkMaskFilter::kInner_BlurType == blurType) {
881 // inner: dst = dst * src
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000882 paint.setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000883 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
884 // solid: dst = src + dst - src * dst
885 // = (1 - dst) * src + 1 * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000886 paint.setBlendFunc(kIDC_GrBlendCoeff, kOne_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000887 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
888 // outer: dst = dst * (1 - src)
889 // = 0 * src + (1 - src) * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000890 paint.setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000891 }
892 context->drawRect(paint, srcRect);
893 }
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000894 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000895
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000896 GrContext::AutoMatrix am;
897 if (!am.setIdentity(context, grp)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000898 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000899 }
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000900
bsalomon@google.com88becf42012-10-05 14:54:42 +0000901 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000902 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000903 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000904
905 GrMatrix matrix;
906 matrix.setTranslate(-finalRect.fLeft, -finalRect.fTop);
907 matrix.postIDiv(blurTexture->width(), blurTexture->height());
908
bsalomon@google.com88becf42012-10-05 14:54:42 +0000909 grp->coverageSampler(MASK_IDX)->reset();
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000910 grp->coverageSampler(MASK_IDX)->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (blurTexture)), matrix)->unref();
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000911 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000912 return true;
913}
914
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000915bool drawWithMaskFilter(GrContext* context, const SkPath& devPath,
916 SkMaskFilter* filter, const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000917 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000918 SkMask srcM, dstM;
919
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000920 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), filter, &context->getMatrix(), &srcM,
921 SkMask::kComputeBoundsAndRenderImage_CreateMode, style)) {
reed@google.com69302852011-02-16 18:08:07 +0000922 return false;
923 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000924 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000925
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000926 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
reed@google.com69302852011-02-16 18:08:07 +0000927 return false;
928 }
929 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000930 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000931
932 if (clip.quickReject(dstM.fBounds)) {
933 return false;
934 }
935 if (bounder && !bounder->doIRect(dstM.fBounds)) {
936 return false;
937 }
938
939 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000940 // the current clip (and identity matrix) and GrPaint settings
941 GrContext::AutoMatrix am;
942 am.setIdentity(context, grp);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000943
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000944 GrTextureDesc desc;
945 desc.fWidth = dstM.fBounds.width();
946 desc.fHeight = dstM.fBounds.height();
947 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +0000948
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000949 GrAutoScratchTexture ast(context, desc);
950 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000951
reed@google.com69302852011-02-16 18:08:07 +0000952 if (NULL == texture) {
953 return false;
954 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000955 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000956 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +0000957
bsalomon@google.com88becf42012-10-05 14:54:42 +0000958 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000959 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000960 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000961
962 GrMatrix m;
963 m.setTranslate(-dstM.fBounds.fLeft*SK_Scalar1, -dstM.fBounds.fTop*SK_Scalar1);
964 m.postIDiv(texture->width(), texture->height());
965
966 grp->coverageSampler(MASK_IDX)->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (texture)), m)->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000967 GrRect d;
968 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +0000969 GrIntToScalar(dstM.fBounds.fTop),
970 GrIntToScalar(dstM.fBounds.fRight),
971 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000972
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000973 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +0000974 return true;
975}
reed@google.com69302852011-02-16 18:08:07 +0000976
bsalomon@google.com85003222012-03-28 14:44:37 +0000977}
978
979///////////////////////////////////////////////////////////////////////////////
980
reed@google.com0c219b62011-02-16 21:31:18 +0000981void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000982 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000983 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000984 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000985 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000986
reed@google.comfe626382011-09-21 13:50:35 +0000987 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000988
bsalomon@google.com5782d712011-01-21 21:03:59 +0000989 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +0000990 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000991 if (!skPaint2GrPaintShader(this,
992 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000993 true,
twiz@google.com58071162012-07-18 21:41:50 +0000994 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000995 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000996 return;
997 }
998
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +0000999 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1000 // if we can, we draw lots faster (raster device does this same test)
1001 SkScalar hairlineCoverage;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001002 if (SkDrawTreatAsHairline(paint, fContext->getMatrix(), &hairlineCoverage)) {
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001003 doFill = false;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +00001004 grPaint.setCoverage(SkScalarRoundToInt(hairlineCoverage * grPaint.getCoverage()));
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001005 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001006
reed@google.comfe626382011-09-21 13:50:35 +00001007 // If we have a prematrix, apply it to the path, optimizing for the case
1008 // where the original path can in fact be modified in place (even though
1009 // its parameter type is const).
1010 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1011 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001012
1013 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001014 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001015
reed@google.come3445642011-02-16 23:20:39 +00001016 if (!pathIsMutable) {
1017 result = &tmpPath;
1018 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001019 }
reed@google.come3445642011-02-16 23:20:39 +00001020 // should I push prePathMatrix on our MV stack temporarily, instead
1021 // of applying it here? See SkDraw.cpp
1022 pathPtr->transform(*prePathMatrix, result);
1023 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001024 }
reed@google.com0c219b62011-02-16 21:31:18 +00001025 // at this point we're done with prePathMatrix
1026 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001027
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001028 if (paint.getPathEffect() ||
1029 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001030 // it is safe to use tmpPath here, even if we already used it for the
1031 // prepathmatrix, since getFillPath can take the same object for its
1032 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001033 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001034 pathPtr = &tmpPath;
1035 }
1036
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001037 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001038 // avoid possibly allocating a new path in transform if we can
1039 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1040
1041 // transform the path into device space
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001042 pathPtr->transform(fContext->getMatrix(), devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001043 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001044 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001045 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001046 *draw.fClip, draw.fBounder, &grPaint, pathFillType)) {
rmistry@google.comd6176b02012-08-23 18:14:13 +00001047 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001048 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001049 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001050 *draw.fClip, draw.fBounder, &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001051 }
reed@google.com69302852011-02-16 18:08:07 +00001052 return;
1053 }
reed@google.com69302852011-02-16 18:08:07 +00001054
bsalomon@google.com47059542012-06-06 20:51:20 +00001055 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001056
reed@google.com0c219b62011-02-16 21:31:18 +00001057 if (doFill) {
1058 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001059 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001060 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001061 break;
1062 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001063 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001064 break;
1065 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001066 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001067 break;
1068 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001069 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001070 break;
1071 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001072 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001073 return;
1074 }
1075 }
1076
reed@google.com07f3ee12011-05-16 17:21:57 +00001077 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001078}
1079
bsalomon@google.comfb309512011-11-30 14:13:48 +00001080namespace {
1081
1082inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1083 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1084 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1085 return tilesX * tilesY;
1086}
1087
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001088inline int determine_tile_size(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001089 const SkRect& src,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001090 int maxTextureSize) {
1091 static const int kSmallTileSize = 1 << 10;
1092 if (maxTextureSize <= kSmallTileSize) {
1093 return maxTextureSize;
1094 }
1095
1096 size_t maxTexTotalTileSize;
1097 size_t smallTotalTileSize;
1098
robertphillips@google.combac6b052012-09-28 18:06:49 +00001099 SkIRect iSrc;
1100 src.roundOut(&iSrc);
1101
1102 maxTexTotalTileSize = get_tile_count(iSrc.fLeft,
1103 iSrc.fTop,
1104 iSrc.fRight,
1105 iSrc.fBottom,
1106 maxTextureSize);
1107 smallTotalTileSize = get_tile_count(iSrc.fLeft,
1108 iSrc.fTop,
1109 iSrc.fRight,
1110 iSrc.fBottom,
1111 kSmallTileSize);
1112
bsalomon@google.comfb309512011-11-30 14:13:48 +00001113 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1114 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1115
1116 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1117 return kSmallTileSize;
1118 } else {
1119 return maxTextureSize;
1120 }
1121}
1122}
1123
1124bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001125 const GrTextureParams& params,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001126 const SkRect* srcRectPtr) const {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001127 // if bitmap is explictly texture backed then just use the texture
1128 if (NULL != bitmap.getTexture()) {
1129 return false;
1130 }
1131 // if it's larger than the max texture size, then we have no choice but
1132 // tiling
1133 const int maxTextureSize = fContext->getMaxTextureSize();
1134 if (bitmap.width() > maxTextureSize ||
1135 bitmap.height() > maxTextureSize) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001136 return true;
1137 }
1138 // if we are going to have to draw the whole thing, then don't tile
1139 if (NULL == srcRectPtr) {
1140 return false;
1141 }
1142 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.comb8670992012-07-25 21:27:09 +00001143 if (this->isBitmapInTextureCache(bitmap, params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001144 return false;
1145 }
1146
1147 // At this point we know we could do the draw by uploading the entire bitmap
1148 // as a texture. However, if the texture would be large compared to the
1149 // cache size and we don't require most of it for this draw then tile to
1150 // reduce the amount of upload and cache spill.
1151
1152 // assumption here is that sw bitmap size is a good proxy for its size as
1153 // a texture
1154 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001155 size_t cacheSize;
1156 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001157 if (bmpSize < cacheSize / 2) {
1158 return false;
1159 }
1160
robertphillips@google.combac6b052012-09-28 18:06:49 +00001161 SkScalar fracUsed = SkScalarMul(srcRectPtr->width() / bitmap.width(),
1162 srcRectPtr->height() / bitmap.height());
1163 if (fracUsed <= SK_ScalarHalf) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001164 return true;
1165 } else {
1166 return false;
1167 }
1168}
1169
reed@google.comac10a2d2010-12-22 21:39:39 +00001170void SkGpuDevice::drawBitmap(const SkDraw& draw,
1171 const SkBitmap& bitmap,
1172 const SkIRect* srcRectPtr,
1173 const SkMatrix& m,
1174 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001175
1176 SkRect tmp;
1177 SkRect* tmpPtr = NULL;
1178
1179 // convert from SkIRect to SkRect
1180 if (NULL != srcRectPtr) {
1181 tmp.set(*srcRectPtr);
1182 tmpPtr = &tmp;
1183 }
1184
1185 // We cannot call drawBitmapRect here since 'm' could be anything
1186 this->drawBitmapCommon(draw, bitmap, tmpPtr, m, paint);
1187}
1188
1189void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
1190 const SkBitmap& bitmap,
1191 const SkRect* srcRectPtr,
1192 const SkMatrix& m,
1193 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001194 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001195
robertphillips@google.combac6b052012-09-28 18:06:49 +00001196 SkRect srcRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001197 if (NULL == srcRectPtr) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001198 srcRect.set(0, 0, SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001199 } else {
1200 srcRect = *srcRectPtr;
1201 }
1202
junov@google.comd935cfb2011-06-27 20:48:23 +00001203 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001204 // Convert the bitmap to a shader so that the rect can be drawn
1205 // through drawRect, which supports mask filters.
robertphillips@google.combac6b052012-09-28 18:06:49 +00001206 SkMatrix newM(m);
junov@google.com1d329782011-07-28 20:10:09 +00001207 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001208 const SkBitmap* bitmapPtr = &bitmap;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001209 if (NULL != srcRectPtr) {
1210 SkIRect iSrc;
1211 srcRect.roundOut(&iSrc);
1212 if (!bitmap.extractSubset(&tmp, iSrc)) {
epoger@google.com9ef2d832011-07-01 21:12:20 +00001213 return; // extraction failed
1214 }
1215 bitmapPtr = &tmp;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001216 srcRect.offset(SkIntToScalar(-iSrc.fLeft), SkIntToScalar(-iSrc.fTop));
1217 // The source rect has changed so update the matrix
1218 newM.preTranslate(SkIntToScalar(iSrc.fLeft), SkIntToScalar(iSrc.fTop));
junov@google.comd935cfb2011-06-27 20:48:23 +00001219 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001220
junov@google.comd935cfb2011-06-27 20:48:23 +00001221 SkPaint paintWithTexture(paint);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001222 paintWithTexture.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
junov@google.comd935cfb2011-06-27 20:48:23 +00001223 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001224
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001225 // Transform 'newM' needs to be concatenated to the current matrix,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001226 // rather than transforming the primitive directly, so that 'newM' will
junov@google.com1d329782011-07-28 20:10:09 +00001227 // also affect the behavior of the mask filter.
1228 SkMatrix drawMatrix;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001229 drawMatrix.setConcat(fContext->getMatrix(), newM);
junov@google.com1d329782011-07-28 20:10:09 +00001230 SkDraw transformedDraw(draw);
1231 transformedDraw.fMatrix = &drawMatrix;
1232
robertphillips@google.combac6b052012-09-28 18:06:49 +00001233 this->drawRect(transformedDraw, srcRect, paintWithTexture);
junov@google.com1d329782011-07-28 20:10:09 +00001234
junov@google.comd935cfb2011-06-27 20:48:23 +00001235 return;
1236 }
1237
bsalomon@google.com5782d712011-01-21 21:03:59 +00001238 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001239 SkAutoCachedTexture colorLutTexture;
1240 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001241 return;
1242 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001243 GrTextureParams params;
1244 params.setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001245
robertphillips@google.combac6b052012-09-28 18:06:49 +00001246 if (!this->shouldTileBitmap(bitmap, params, srcRectPtr)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001247 // take the simple case
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001248 this->internalDrawBitmap(bitmap, srcRect, m, params, &grPaint);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001249 } else {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001250 this->drawTiledBitmap(bitmap, srcRect, m, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001251 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001252}
1253
1254// Break 'bitmap' into several tiles to draw it since it has already
1255// been determined to be too large to fit in VRAM
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001256void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001257 const SkRect& srcRect,
1258 const SkMatrix& m,
1259 const GrTextureParams& params,
1260 GrPaint* grPaint) {
1261 const int maxTextureSize = fContext->getMaxTextureSize();
1262
1263 int tileSize = determine_tile_size(bitmap, srcRect, maxTextureSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001264
reed@google.comac10a2d2010-12-22 21:39:39 +00001265 // compute clip bounds in local coordinates
robertphillips@google.combac6b052012-09-28 18:06:49 +00001266 SkRect clipRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001267 {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001268 const GrRenderTarget* rt = fContext->getRenderTarget();
1269 clipRect.setWH(SkIntToScalar(rt->width()), SkIntToScalar(rt->height()));
1270 if (!fContext->getClip()->fClipStack->intersectRectWithClip(&clipRect)) {
1271 return;
1272 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001273 SkMatrix matrix, inverse;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001274 matrix.setConcat(fContext->getMatrix(), m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001275 if (!matrix.invert(&inverse)) {
1276 return;
1277 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001278 inverse.mapRect(&clipRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001279 }
1280
bsalomon@google.comfb309512011-11-30 14:13:48 +00001281 int nx = bitmap.width() / tileSize;
1282 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001283 for (int x = 0; x <= nx; x++) {
1284 for (int y = 0; y <= ny; y++) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001285 SkRect tileR;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001286 tileR.set(SkIntToScalar(x * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001287 SkIntToScalar(y * tileSize),
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001288 SkIntToScalar((x + 1) * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001289 SkIntToScalar((y + 1) * tileSize));
1290
1291 if (!SkRect::Intersects(tileR, clipRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001292 continue;
1293 }
1294
robertphillips@google.combac6b052012-09-28 18:06:49 +00001295 if (!tileR.intersect(srcRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001296 continue;
1297 }
1298
1299 SkBitmap tmpB;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001300 SkIRect iTileR;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001301 tileR.roundOut(&iTileR);
1302 if (bitmap.extractSubset(&tmpB, iTileR)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001303 // now offset it to make it "local" to our tmp bitmap
robertphillips@google.combac6b052012-09-28 18:06:49 +00001304 tileR.offset(SkIntToScalar(-iTileR.fLeft), SkIntToScalar(-iTileR.fTop));
reed@google.comac10a2d2010-12-22 21:39:39 +00001305 SkMatrix tmpM(m);
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +00001306 tmpM.preTranslate(SkIntToScalar(iTileR.fLeft),
robertphillips@google.comffad46b2012-10-01 14:32:51 +00001307 SkIntToScalar(iTileR.fTop));
1308
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001309 this->internalDrawBitmap(tmpB, tileR, tmpM, params, grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001310 }
1311 }
1312 }
1313}
1314
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001315namespace {
1316
1317bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1318 // detect pixel disalignment
1319 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1320 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
rmistry@google.comd6176b02012-08-23 18:14:13 +00001321 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001322 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1323 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1324 COLOR_BLEED_TOLERANCE &&
1325 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1326 COLOR_BLEED_TOLERANCE) {
1327 return true;
1328 }
1329 return false;
1330}
1331
1332bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1333 const SkMatrix& m) {
1334 // Only gets called if hasAlignedSamples returned false.
1335 // So we can assume that sampling is axis aligned but not texel aligned.
1336 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
rmistry@google.comd6176b02012-08-23 18:14:13 +00001337 SkRect innerSrcRect(srcRect), innerTransformedRect,
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001338 outerTransformedRect(transformedRect);
1339 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1340 m.mapRect(&innerTransformedRect, innerSrcRect);
1341
1342 // The gap between outerTransformedRect and innerTransformedRect
1343 // represents the projection of the source border area, which is
1344 // problematic for color bleeding. We must check whether any
1345 // destination pixels sample the border area.
1346 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1347 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1348 SkIRect outer, inner;
1349 outerTransformedRect.round(&outer);
1350 innerTransformedRect.round(&inner);
1351 // If the inner and outer rects round to the same result, it means the
1352 // border does not overlap any pixel centers. Yay!
1353 return inner != outer;
1354}
1355
1356} // unnamed namespace
1357
reed@google.comac10a2d2010-12-22 21:39:39 +00001358/*
1359 * This is called by drawBitmap(), which has to handle images that may be too
1360 * large to be represented by a single texture.
1361 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001362 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1363 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001364 */
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001365void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001366 const SkRect& srcRect,
reed@google.comac10a2d2010-12-22 21:39:39 +00001367 const SkMatrix& m,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001368 const GrTextureParams& params,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001369 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001370 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1371 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001372
reed@google.com9c49bc32011-07-07 13:42:37 +00001373 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001374 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001375 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001376 return;
1377 }
1378
bsalomon@google.com88becf42012-10-05 14:54:42 +00001379 GrSamplerState* sampler = grPaint->colorSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001380
reed@google.comac10a2d2010-12-22 21:39:39 +00001381 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001382 SkAutoCachedTexture act(this, bitmap, &params, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001383 if (NULL == texture) {
1384 return;
1385 }
1386
robertphillips@google.combac6b052012-09-28 18:06:49 +00001387 GrRect dstRect(srcRect);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001388 GrRect paintRect;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001389 SkScalar wInv = SkScalarInvert(SkIntToScalar(bitmap.width()));
1390 SkScalar hInv = SkScalarInvert(SkIntToScalar(bitmap.height()));
1391 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1392 SkScalarMul(srcRect.fTop, hInv),
1393 SkScalarMul(srcRect.fRight, wInv),
1394 SkScalarMul(srcRect.fBottom, hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001395
rmistry@google.comd6176b02012-08-23 18:14:13 +00001396 bool needsTextureDomain = false;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001397 if (params.isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001398 // Need texture domain if drawing a sub rect.
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001399 needsTextureDomain = srcRect.width() < bitmap.width() ||
robertphillips@google.combac6b052012-09-28 18:06:49 +00001400 srcRect.height() < bitmap.height();
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001401 if (m.rectStaysRect() && fContext->getMatrix().rectStaysRect()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001402 // sampling is axis-aligned
robertphillips@google.combac6b052012-09-28 18:06:49 +00001403 GrRect transformedRect;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001404 SkMatrix srcToDeviceMatrix(m);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001405 srcToDeviceMatrix.postConcat(fContext->getMatrix());
robertphillips@google.combac6b052012-09-28 18:06:49 +00001406 srcToDeviceMatrix.mapRect(&transformedRect, srcRect);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001407
robertphillips@google.combac6b052012-09-28 18:06:49 +00001408 if (hasAlignedSamples(srcRect, transformedRect)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001409 // We could also turn off filtering here (but we already did a cache lookup with
1410 // params).
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001411 needsTextureDomain = false;
1412 } else {
1413 needsTextureDomain = needsTextureDomain &&
robertphillips@google.combac6b052012-09-28 18:06:49 +00001414 mayColorBleed(srcRect, transformedRect, m);
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001415 }
1416 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001417 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001418
1419 GrRect textureDomain = GrRect::MakeEmpty();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001420 SkAutoTUnref<GrCustomStage> stage;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001421 if (needsTextureDomain) {
1422 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001423 GrScalar left, top, right, bottom;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001424 if (srcRect.width() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001425 GrScalar border = GR_ScalarHalf / bitmap.width();
1426 left = paintRect.left() + border;
1427 right = paintRect.right() - border;
1428 } else {
1429 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1430 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001431 if (srcRect.height() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001432 GrScalar border = GR_ScalarHalf / bitmap.height();
1433 top = paintRect.top() + border;
1434 bottom = paintRect.bottom() - border;
1435 } else {
1436 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1437 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001438 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001439 stage.reset(SkNEW_ARGS(GrTextureDomainEffect, (texture, textureDomain, params)));
1440 } else {
1441 stage.reset(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)));
junov@google.com6acc9b32011-05-16 18:32:07 +00001442 }
bsalomon@google.com88becf42012-10-05 14:54:42 +00001443 grPaint->colorSampler(kBitmapTextureIdx)->setCustomStage(stage);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001444 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001445}
1446
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001447namespace {
1448
1449void apply_custom_stage(GrContext* context,
1450 GrTexture* srcTexture,
1451 GrTexture* dstTexture,
1452 const GrRect& rect,
1453 GrCustomStage* stage) {
1454 SkASSERT(srcTexture && srcTexture->getContext() == context);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001455 GrContext::AutoMatrix am;
1456 am.setIdentity(context);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001457 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001458 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001459
1460 GrMatrix sampleM;
1461 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1462 GrPaint paint;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +00001463 paint.colorSampler(0)->setCustomStage(stage, sampleM);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001464 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001465}
1466
1467};
1468
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001469static GrTexture* filter_texture(SkDevice* device, GrContext* context,
1470 GrTexture* texture, SkImageFilter* filter,
1471 const GrRect& rect) {
reed@google.com8926b162012-03-23 15:36:36 +00001472 GrAssert(filter);
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001473 SkDeviceImageFilterProxy proxy(device);
reed@google.com8926b162012-03-23 15:36:36 +00001474
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001475 GrTextureDesc desc;
1476 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1477 desc.fWidth = SkScalarCeilToInt(rect.width());
1478 desc.fHeight = SkScalarCeilToInt(rect.height());
bsalomon@google.com0342a852012-08-20 19:22:38 +00001479 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001480 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001481
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001482 if (filter->canFilterImageGPU()) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001483 texture = filter->onFilterImageGPU(&proxy, texture, rect);
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001484 } else if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001485 GrAutoScratchTexture dst(context, desc);
1486 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1487 texture = dst.detach();
1488 stage->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001489 }
1490 return texture;
1491}
1492
reed@google.comac10a2d2010-12-22 21:39:39 +00001493void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001494 int left, int top, const SkPaint& paint) {
1495 // drawSprite is defined to be in device coords.
1496 CHECK_SHOULD_DRAW(draw, true);
reed@google.comac10a2d2010-12-22 21:39:39 +00001497
reed@google.com8926b162012-03-23 15:36:36 +00001498 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001499 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1500 return;
1501 }
1502
reed@google.com76dd2772012-01-05 21:15:07 +00001503 int w = bitmap.width();
1504 int h = bitmap.height();
1505
bsalomon@google.com5782d712011-01-21 21:03:59 +00001506 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001507 SkAutoCachedTexture colorLutTexture;
1508 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001509 return;
1510 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001511
bsalomon@google.com88becf42012-10-05 14:54:42 +00001512 GrSamplerState* sampler = grPaint.colorSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001513
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001514 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001515 sampler->reset();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001516 // draw sprite uses the default texture params
1517 SkAutoCachedTexture act(this, bitmap, NULL, &texture);
bsalomon@google.com88becf42012-10-05 14:54:42 +00001518 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001519 (GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001520
reed@google.com8926b162012-03-23 15:36:36 +00001521 SkImageFilter* filter = paint.getImageFilter();
1522 if (NULL != filter) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001523 GrTexture* filteredTexture = filter_texture(this, fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001524 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001525 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001526 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001527 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001528 texture = filteredTexture;
1529 filteredTexture->unref();
1530 }
reed@google.com76dd2772012-01-05 21:15:07 +00001531 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001532
bsalomon@google.com5782d712011-01-21 21:03:59 +00001533 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001534 GrRect::MakeXYWH(GrIntToScalar(left),
1535 GrIntToScalar(top),
1536 GrIntToScalar(w),
1537 GrIntToScalar(h)),
1538 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1539 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001540}
1541
reed@google.com33535f32012-09-25 15:37:50 +00001542void SkGpuDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1543 const SkRect* src, const SkRect& dst,
1544 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001545 SkMatrix matrix;
1546 SkRect bitmapBounds, tmpSrc;
1547
1548 bitmapBounds.set(0, 0,
1549 SkIntToScalar(bitmap.width()),
1550 SkIntToScalar(bitmap.height()));
1551
reed@google.com33535f32012-09-25 15:37:50 +00001552 // Compute matrix from the two rectangles
robertphillips@google.combac6b052012-09-28 18:06:49 +00001553 if (NULL != src) {
1554 tmpSrc = *src;
1555 } else {
1556 tmpSrc = bitmapBounds;
1557 }
1558 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1559
1560 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
1561 if (NULL != src) {
1562 if (!bitmapBounds.contains(tmpSrc)) {
1563 if (!tmpSrc.intersect(bitmapBounds)) {
1564 return; // nothing to draw
reed@google.com33535f32012-09-25 15:37:50 +00001565 }
reed@google.com33535f32012-09-25 15:37:50 +00001566 }
reed@google.com33535f32012-09-25 15:37:50 +00001567 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +00001568
robertphillips@google.combac6b052012-09-28 18:06:49 +00001569 this->drawBitmapCommon(draw, bitmap, &tmpSrc, matrix, paint);
reed@google.com33535f32012-09-25 15:37:50 +00001570}
1571
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001572void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001573 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001574 // clear of the source device must occur before CHECK_SHOULD_DRAW
1575 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1576 if (dev->fNeedClear) {
1577 // TODO: could check here whether we really need to draw at all
1578 dev->clear(0x0);
1579 }
1580
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001581 // drawDevice is defined to be in device coords.
1582 CHECK_SHOULD_DRAW(draw, true);
reed@google.comac10a2d2010-12-22 21:39:39 +00001583
bsalomon@google.com5782d712011-01-21 21:03:59 +00001584 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001585 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001586 grPaint.colorSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001587 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001588 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001589 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001590 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001591
bsalomon@google.com88becf42012-10-05 14:54:42 +00001592 GrTexture* devTex = grPaint.getColorSampler(kBitmapTextureIdx).getCustomStage()->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001593 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001594
reed@google.com8926b162012-03-23 15:36:36 +00001595 SkImageFilter* filter = paint.getImageFilter();
1596 if (NULL != filter) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001597 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001598 SkIntToScalar(devTex->height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001599 GrTexture* filteredTexture = filter_texture(this, fContext, devTex, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001600 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001601 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001602 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001603 devTex = filteredTexture;
1604 filteredTexture->unref();
1605 }
1606 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001607
bsalomon@google.com5782d712011-01-21 21:03:59 +00001608 const SkBitmap& bm = dev->accessBitmap(false);
1609 int w = bm.width();
1610 int h = bm.height();
1611
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001612 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1613 GrIntToScalar(y),
1614 GrIntToScalar(w),
1615 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001616
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001617 // The device being drawn may not fill up its texture (saveLayer uses
1618 // the approximate ).
1619 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1620 GR_Scalar1 * h / devTex->height());
1621
1622 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001623}
1624
reed@google.com8926b162012-03-23 15:36:36 +00001625bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001626 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001627 !filter->canFilterImageGPU()) {
reed@google.com76dd2772012-01-05 21:15:07 +00001628 return false;
1629 }
reed@google.com8926b162012-03-23 15:36:36 +00001630 return true;
1631}
1632
1633bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1634 const SkMatrix& ctm,
1635 SkBitmap* result, SkIPoint* offset) {
1636 // want explicitly our impl, so guard against a subclass of us overriding it
1637 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001638 return false;
1639 }
reed@google.com8926b162012-03-23 15:36:36 +00001640
1641 SkAutoLockPixels alp(src, !src.getTexture());
1642 if (!src.getTexture() && !src.readyToDraw()) {
1643 return false;
1644 }
1645
1646 GrPaint paint;
reed@google.com8926b162012-03-23 15:36:36 +00001647
reed@google.com8926b162012-03-23 15:36:36 +00001648 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001649 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1650 // must be pushed upstack.
1651 SkAutoCachedTexture act(this, src, NULL, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001652
1653 result->setConfig(src.config(), src.width(), src.height());
rmistry@google.comd6176b02012-08-23 18:14:13 +00001654 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001655 SkIntToScalar(src.height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001656 GrTexture* resultTexture = filter_texture(this, fContext, texture, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001657 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001658 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1659 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001660 resultTexture->unref();
1661 }
reed@google.com76dd2772012-01-05 21:15:07 +00001662 return true;
1663}
1664
reed@google.comac10a2d2010-12-22 21:39:39 +00001665///////////////////////////////////////////////////////////////////////////////
1666
1667// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001668static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001669 kTriangles_GrPrimitiveType,
1670 kTriangleStrip_GrPrimitiveType,
1671 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001672};
1673
1674void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1675 int vertexCount, const SkPoint vertices[],
1676 const SkPoint texs[], const SkColor colors[],
1677 SkXfermode* xmode,
1678 const uint16_t indices[], int indexCount,
1679 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001680 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001681
bsalomon@google.com5782d712011-01-21 21:03:59 +00001682 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001683 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001684 // we ignore the shader if texs is null.
1685 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001686 if (!skPaint2GrPaintNoShader(this,
1687 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001688 false,
1689 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001690 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001691 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001692 return;
1693 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001694 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001695 if (!skPaint2GrPaintShader(this,
1696 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001697 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001698 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001699 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001700 return;
1701 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001702 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001703
1704 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001705 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001706 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1707#if 0
1708 return
1709#endif
1710 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001711 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001712
bsalomon@google.com498776a2011-08-16 19:20:44 +00001713 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1714 if (NULL != colors) {
1715 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001716 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001717 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001718 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001719 }
1720 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001721 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001722 fContext->drawVertices(grPaint,
1723 gVertexMode2PrimitiveType[vmode],
1724 vertexCount,
1725 (GrPoint*) vertices,
1726 (GrPoint*) texs,
1727 colors,
1728 indices,
1729 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001730}
1731
1732///////////////////////////////////////////////////////////////////////////////
1733
1734static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001735 GrFontScaler* scaler = (GrFontScaler*)data;
1736 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001737}
1738
1739static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1740 void* auxData;
1741 GrFontScaler* scaler = NULL;
1742 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1743 scaler = (GrFontScaler*)auxData;
1744 }
1745 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001746 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001747 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1748 }
1749 return scaler;
1750}
1751
1752static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1753 SkFixed fx, SkFixed fy,
1754 const SkGlyph& glyph) {
1755 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1756
bungeman@google.com15865a72012-01-11 16:28:04 +00001757 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001758
1759 if (NULL == procs->fFontScaler) {
1760 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1761 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001762
bungeman@google.com15865a72012-01-11 16:28:04 +00001763 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1764 glyph.getSubXFixed(),
1765 glyph.getSubYFixed()),
1766 SkFixedFloorToFixed(fx),
1767 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001768 procs->fFontScaler);
1769}
1770
bsalomon@google.com5782d712011-01-21 21:03:59 +00001771SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001772
1773 // deferred allocation
1774 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001775 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001776 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1777 fDrawProcs->fContext = fContext;
1778 }
1779
1780 // init our (and GL's) state
1781 fDrawProcs->fTextContext = context;
1782 fDrawProcs->fFontScaler = NULL;
1783 return fDrawProcs;
1784}
1785
1786void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1787 size_t byteLength, SkScalar x, SkScalar y,
1788 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001789 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001790
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001791 if (fContext->getMatrix().hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001792 // this guy will just call our drawPath()
1793 draw.drawText((const char*)text, byteLength, x, y, paint);
1794 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001795 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001796
1797 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001798 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001799 if (!skPaint2GrPaintShader(this,
1800 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001801 true,
twiz@google.com58071162012-07-18 21:41:50 +00001802 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001803 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001804 return;
1805 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001806 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001807 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001808 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1809 }
1810}
1811
1812void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1813 size_t byteLength, const SkScalar pos[],
1814 SkScalar constY, int scalarsPerPos,
1815 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001816 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001817
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001818 if (fContext->getMatrix().hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001819 // this guy will just call our drawPath()
1820 draw.drawPosText((const char*)text, byteLength, pos, constY,
1821 scalarsPerPos, paint);
1822 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001823 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001824
1825 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001826 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001827 if (!skPaint2GrPaintShader(this,
1828 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001829 true,
twiz@google.com58071162012-07-18 21:41:50 +00001830 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001831 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001832 return;
1833 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001834 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001835 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001836 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1837 scalarsPerPos, paint);
1838 }
1839}
1840
1841void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1842 size_t len, const SkPath& path,
1843 const SkMatrix* m, const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001844 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001845
1846 SkASSERT(draw.fDevice == this);
1847 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1848}
1849
1850///////////////////////////////////////////////////////////////////////////////
1851
reed@google.comf67e4cf2011-03-15 20:56:58 +00001852bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1853 if (!paint.isLCDRenderText()) {
1854 // we're cool with the paint as is
1855 return false;
1856 }
1857
1858 if (paint.getShader() ||
1859 paint.getXfermode() || // unless its srcover
1860 paint.getMaskFilter() ||
1861 paint.getRasterizer() ||
1862 paint.getColorFilter() ||
1863 paint.getPathEffect() ||
1864 paint.isFakeBoldText() ||
1865 paint.getStyle() != SkPaint::kFill_Style) {
1866 // turn off lcd
1867 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1868 flags->fHinting = paint.getHinting();
1869 return true;
1870 }
1871 // we're cool with the paint as is
1872 return false;
1873}
1874
reed@google.com75d939b2011-12-07 15:07:23 +00001875void SkGpuDevice::flush() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +00001876 DO_DEFERRED_CLEAR();
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001877 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001878}
1879
reed@google.comf67e4cf2011-03-15 20:56:58 +00001880///////////////////////////////////////////////////////////////////////////////
1881
bsalomon@google.comfb309512011-11-30 14:13:48 +00001882bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001883 const GrTextureParams& params) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001884 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001885 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001886
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001887 GrTextureDesc desc;
1888 desc.fWidth = bitmap.width();
1889 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001890 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001891
robertphillips@google.com9c2ea842012-08-13 17:47:59 +00001892 GrCacheData cacheData(key);
1893
1894 return this->context()->isTextureInCache(desc, cacheData, &params);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001895}
1896
1897
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001898SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1899 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001900 bool isOpaque,
1901 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001902 GrTextureDesc desc;
1903 desc.fConfig = fRenderTarget->config();
1904 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1905 desc.fWidth = width;
1906 desc.fHeight = height;
1907 desc.fSampleCnt = fRenderTarget->numSamples();
1908
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001909 GrTexture* texture;
1910 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001911 // Skia's convention is to only clear a device if it is non-opaque.
1912 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001913
1914#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1915 // layers are never draw in repeat modes, so we can request an approx
1916 // match and ignore any padding.
1917 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1918 GrContext::kApprox_ScratchTexMatch :
1919 GrContext::kExact_ScratchTexMatch;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001920 texture = fContext->lockScratchTexture(desc, matchType);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001921#else
1922 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1923 texture = tunref.get();
1924#endif
1925 if (texture) {
1926 return SkNEW_ARGS(SkGpuDevice,(fContext,
1927 texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001928 needClear));
1929 } else {
1930 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1931 width, height);
1932 return NULL;
1933 }
1934}
1935
1936SkGpuDevice::SkGpuDevice(GrContext* context,
1937 GrTexture* texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001938 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00001939 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1940
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001941 GrAssert(texture && texture->asRenderTarget());
bsalomon@google.com8090e652012-08-28 15:07:11 +00001942 // This constructor is called from onCreateCompatibleDevice. It has locked the RT in the texture
1943 // cache. We pass true for the third argument so that it will get unlocked.
1944 this->initFromRenderTarget(context, texture->asRenderTarget(), true);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001945 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001946}