blob: d94a8dd63eca0d5fb8905575ec62b1446b084843 [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)();
29 #define CHECK_SHOULD_DRAW(draw) \
30 do { \
31 if (gShouldDrawProc && !gShouldDrawProc()) return; \
bsalomon@google.coma6926b12012-10-10 15:25:50 +000032 this->prepareDraw(draw); \
reed@google.comac10a2d2010-12-22 21:39:39 +000033 } while (0)
34#else
bsalomon@google.coma6926b12012-10-10 15:25:50 +000035 #define CHECK_SHOULD_DRAW(draw) this->prepareDraw(draw)
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.coma6926b12012-10-10 15:25:50 +0000410void SkGpuDevice::prepareDraw(const SkDraw& draw) {
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.coma6926b12012-10-10 15:25:50 +0000417 fContext->setMatrix(*draw.fMatrix);
418 fClipData.fOrigin = this->getOrigin();
reed@google.comac10a2d2010-12-22 21:39:39 +0000419
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000420#ifdef SK_DEBUG
421 check_bounds(fClipData, *draw.fClip, fRenderTarget->width(), fRenderTarget->height());
422#endif
423
424 fContext->setClip(&fClipData);
425
426 DO_DEFERRED_CLEAR();
reed@google.comac10a2d2010-12-22 21:39:39 +0000427}
428
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000429SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000430 DO_DEFERRED_CLEAR();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000431 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000432}
433
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000434bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
bsalomon@google.coma2921122012-08-28 12:34:17 +0000435 GrTexture* texture = fRenderTarget->asTexture();
436 if (NULL != texture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +0000437 paint->colorSampler(kBitmapTextureIdx)->setCustomStage(
bsalomon@google.coma2921122012-08-28 12:34:17 +0000438 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000439 return true;
440 }
441 return false;
442}
443
444///////////////////////////////////////////////////////////////////////////////
445
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000446SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
447SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
448SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
449SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
450SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
451 shader_type_mismatch);
rileya@google.com3e332582012-07-03 13:43:35 +0000452SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5,
453 shader_type_mismatch);
rileya@google.com22e57f92012-07-19 15:16:19 +0000454SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch);
455SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000456
bsalomon@google.com84405e02012-03-05 19:57:21 +0000457namespace {
458
459// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
460// justAlpha indicates that skPaint's alpha should be used rather than the color
461// Callers may subsequently modify the GrPaint. Setting constantColor indicates
462// that the final paint will draw the same color at every pixel. This allows
463// an optimization where the the color filter can be applied to the skPaint's
twiz@google.com58071162012-07-18 21:41:50 +0000464// color once while converting to GrPaint and then ignored.
465inline bool skPaint2GrPaintNoShader(SkGpuDevice* dev,
466 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000467 bool justAlpha,
468 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000469 SkGpuDevice::SkAutoCachedTexture* act,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000470 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000471
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000472 grPaint->setDither(skPaint.isDither());
473 grPaint->setAntiAlias(skPaint.isAntiAlias());
bsalomon@google.com5782d712011-01-21 21:03:59 +0000474
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000475 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
476 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000477
478 SkXfermode* mode = skPaint.getXfermode();
479 if (mode) {
480 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000481 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000482#if 0
483 return false;
484#endif
485 }
486 }
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000487 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000488
bsalomon@google.com5782d712011-01-21 21:03:59 +0000489 if (justAlpha) {
490 uint8_t alpha = skPaint.getAlpha();
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000491 grPaint->setColor(GrColorPackRGBA(alpha, alpha, alpha, alpha));
Scroggod757df22011-05-16 13:11:16 +0000492 // justAlpha is currently set to true only if there is a texture,
493 // so constantColor should not also be true.
494 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000495 } else {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000496 grPaint->setColor(SkColor2GrColor(skPaint.getColor()));
bsalomon@google.com88becf42012-10-05 14:54:42 +0000497 GrAssert(!grPaint->isColorStageEnabled(kShaderTextureIdx));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000498 }
Scroggo97c88c22011-05-11 14:05:25 +0000499 SkColorFilter* colorFilter = skPaint.getColorFilter();
500 SkColor color;
501 SkXfermode::Mode filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000502 SkScalar matrix[20];
twiz@google.com58071162012-07-18 21:41:50 +0000503 SkBitmap colorTransformTable;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000504 // TODO: SkColorFilter::asCustomStage()
Scroggo97c88c22011-05-11 14:05:25 +0000505 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
Scroggod757df22011-05-16 13:11:16 +0000506 if (!constantColor) {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000507 grPaint->setXfermodeColorFilter(filterMode, SkColor2GrColor(color));
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000508 } else {
509 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000510 grPaint->setColor(SkColor2GrColor(filtered));
Scroggod757df22011-05-16 13:11:16 +0000511 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000512 } else if (colorFilter != NULL && colorFilter->asColorMatrix(matrix)) {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000513 grPaint->setColorMatrix(matrix);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000514 } else if (colorFilter != NULL && colorFilter->asComponentTable(&colorTransformTable)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000515 // pass NULL because the color table effect doesn't use tiling or filtering.
516 GrTexture* texture = act->set(dev, colorTransformTable, NULL);
bsalomon@google.com88becf42012-10-05 14:54:42 +0000517 GrSamplerState* colorSampler = grPaint->colorSampler(kColorFilterTextureIdx);
bsalomon@google.comb8670992012-07-25 21:27:09 +0000518 colorSampler->reset();
bsalomon@google.comcbd0ad92012-07-20 15:09:31 +0000519 colorSampler->setCustomStage(SkNEW_ARGS(GrColorTableEffect, (texture)))->unref();
Scroggo97c88c22011-05-11 14:05:25 +0000520 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000521 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000522}
523
bsalomon@google.com84405e02012-03-05 19:57:21 +0000524// This function is similar to skPaint2GrPaintNoShader but also converts
525// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
526// be used is set on grPaint and returned in param act. constantColor has the
527// same meaning as in skPaint2GrPaintNoShader.
528inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
529 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000530 bool constantColor,
bsalomon@google.com88becf42012-10-05 14:54:42 +0000531 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxColorStages],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000532 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000533 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000534 if (NULL == shader) {
twiz@google.com58071162012-07-18 21:41:50 +0000535 return skPaint2GrPaintNoShader(dev,
536 skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000537 false,
538 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000539 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000540 grPaint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000541 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false,
twiz@google.com58071162012-07-18 21:41:50 +0000542 &textures[kColorFilterTextureIdx], grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000543 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000544 }
545
bsalomon@google.com88becf42012-10-05 14:54:42 +0000546 GrSamplerState* sampler = grPaint->colorSampler(kShaderTextureIdx);
rileya@google.com91f319c2012-07-25 17:18:31 +0000547 GrCustomStage* stage = shader->asNewCustomStage(dev->context(), sampler);
548
549 if (NULL != stage) {
550 sampler->setCustomStage(stage)->unref();
551 SkMatrix localM;
552 if (shader->getLocalMatrix(&localM)) {
553 SkMatrix inverse;
554 if (localM.invert(&inverse)) {
555 sampler->matrix()->preConcat(inverse);
556 }
557 }
558 return true;
559 }
560
reed@google.comac10a2d2010-12-22 21:39:39 +0000561 SkBitmap bitmap;
rileya@google.com91f319c2012-07-25 17:18:31 +0000562 SkMatrix* matrix = sampler->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000563 SkShader::TileMode tileModes[2];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000564 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
rileya@google.com91f319c2012-07-25 17:18:31 +0000565 tileModes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000566
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000567 if (SkShader::kNone_BitmapType == bmptype) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000568 SkShader::GradientInfo info;
569 SkColor color;
570
571 info.fColors = &color;
572 info.fColorOffsets = NULL;
573 info.fColorCount = 1;
574 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
575 SkPaint copy(skPaint);
576 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000577 // modulate the paint alpha by the shader's solid color alpha
578 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
579 copy.setColor(SkColorSetA(color, newA));
twiz@google.com58071162012-07-18 21:41:50 +0000580 return skPaint2GrPaintNoShader(dev,
581 copy,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000582 false,
583 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000584 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000585 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000586 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000587 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000588 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000589
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000590 // Must set wrap and filter on the sampler before requesting a texture.
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000591 GrTextureParams params(tileModes, skPaint.isFilterBitmap());
592 GrTexture* texture = textures[kShaderTextureIdx].set(dev, bitmap, &params);
bsalomon@google.com8f4fdc92012-07-24 17:59:01 +0000593
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000594 if (NULL == texture) {
595 SkDebugf("Couldn't convert bitmap to texture.\n");
596 return false;
597 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000598
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000599 sampler->reset();
600 sampler->setCustomStage(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000601
reed@google.comac10a2d2010-12-22 21:39:39 +0000602 // since our texture coords will be in local space, we wack the texture
603 // matrix to map them back into 0...1 before we load it
604 SkMatrix localM;
605 if (shader->getLocalMatrix(&localM)) {
606 SkMatrix inverse;
607 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000608 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000609 }
610 }
611 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000612 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
613 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000614 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000615 }
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) {
628 CHECK_SHOULD_DRAW(draw);
629
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) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000652 CHECK_SHOULD_DRAW(draw);
653
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.comfea37b52011-04-25 15:51:06 +0000691 CHECK_SHOULD_DRAW(draw);
692
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
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000840 GrMatrix origMatrix = context->getMatrix();
841
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000842 // We pass kPreserve here. We will replace the current matrix below.
843 GrContext::AutoMatrix avm(context, GrContext::AutoMatrix::kPreserve_InitialMatrix);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000844
robertphillips@google.comccb39502012-10-01 18:25:13 +0000845 {
846 GrContext::AutoRenderTarget art(context, pathTexture->asRenderTarget());
847 GrContext::AutoClip ac(context, srcRect);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000848
robertphillips@google.comccb39502012-10-01 18:25:13 +0000849 context->clear(NULL, 0);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000850
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000851 // Draw hard shadow to pathTexture with path top-left at origin 0,0.
852 GrMatrix translate;
853 translate.setTranslate(offset.fX, offset.fY);
854
855 GrPaint tempPaint;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000856 if (grp->isAntiAlias()) {
857 tempPaint.setAntiAlias(true);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000858 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
859 // blend coeff of zero requires dual source blending support in order
860 // to properly blend partially covered pixels. This means the AA
861 // code path may not be taken. So we use a dst blend coeff of ISA. We
862 // could special case AA draws to a dst surface with known alpha=0 to
863 // use a zero dst coeff when dual source blending isn't available.
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000864 tempPaint.setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000865 }
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000866 context->setMatrix(translate);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000867 context->drawPath(tempPaint, devPath, pathFillType);
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000868
869 // switch to device coord drawing when going back to the main RT.
870 context->setIdentityMatrix();
robertphillips@google.comccb39502012-10-01 18:25:13 +0000871
872 // If we're doing a normal blur, we can clobber the pathTexture in the
873 // gaussianBlur. Otherwise, we need to save it for later compositing.
874 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000875 blurTexture.reset(context->gaussianBlur(pathTexture, isNormalBlur,
robertphillips@google.comccb39502012-10-01 18:25:13 +0000876 srcRect, sigma, sigma));
877
878 if (!isNormalBlur) {
879 GrPaint paint;
880 paint.reset();
bsalomon@google.com88becf42012-10-05 14:54:42 +0000881 paint.colorSampler(0)->matrix()->setIDiv(pathTexture->width(),
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000882 pathTexture->height());
robertphillips@google.comccb39502012-10-01 18:25:13 +0000883 // Blend pathTexture over blurTexture.
884 context->setRenderTarget(blurTexture->asRenderTarget());
bsalomon@google.com88becf42012-10-05 14:54:42 +0000885 paint.colorSampler(0)->setCustomStage(SkNEW_ARGS
robertphillips@google.comccb39502012-10-01 18:25:13 +0000886 (GrSingleTextureEffect, (pathTexture)))->unref();
887 if (SkMaskFilter::kInner_BlurType == blurType) {
888 // inner: dst = dst * src
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000889 paint.setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000890 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
891 // solid: dst = src + dst - src * dst
892 // = (1 - dst) * src + 1 * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000893 paint.setBlendFunc(kIDC_GrBlendCoeff, kOne_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000894 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
895 // outer: dst = dst * (1 - src)
896 // = 0 * src + (1 - src) * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000897 paint.setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000898 }
899 context->drawRect(paint, srcRect);
900 }
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000901 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000902
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000903 if (!grp->preConcatSamplerMatricesWithInverse(origMatrix)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000904 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000905 }
906
bsalomon@google.com88becf42012-10-05 14:54:42 +0000907 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000908 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000909 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
910 grp->coverageSampler(MASK_IDX)->reset();
911 grp->coverageSampler(MASK_IDX)->setCustomStage(
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000912 SkNEW_ARGS(GrSingleTextureEffect, (blurTexture)))->unref();
bsalomon@google.com88becf42012-10-05 14:54:42 +0000913 grp->coverageSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000914 -finalRect.fTop);
bsalomon@google.com88becf42012-10-05 14:54:42 +0000915 grp->coverageSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000916 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000917 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000918 return true;
919}
920
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000921bool drawWithMaskFilter(GrContext* context, const SkPath& devPath,
922 SkMaskFilter* filter, const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000923 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000924 SkMask srcM, dstM;
925
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000926 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), filter, &context->getMatrix(), &srcM,
927 SkMask::kComputeBoundsAndRenderImage_CreateMode, style)) {
reed@google.com69302852011-02-16 18:08:07 +0000928 return false;
929 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000930 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000931
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000932 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
reed@google.com69302852011-02-16 18:08:07 +0000933 return false;
934 }
935 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000936 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000937
938 if (clip.quickReject(dstM.fBounds)) {
939 return false;
940 }
941 if (bounder && !bounder->doIRect(dstM.fBounds)) {
942 return false;
943 }
944
945 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
946 // the current clip (and identity matrix) and grpaint settings
947
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000948 if (!grp->preConcatSamplerMatricesWithInverse(context->getMatrix())) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000949 return false;
950 }
951
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000952 GrContext::AutoMatrix avm(context, GrMatrix::I());
953
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000954 GrTextureDesc desc;
955 desc.fWidth = dstM.fBounds.width();
956 desc.fHeight = dstM.fBounds.height();
957 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +0000958
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000959 GrAutoScratchTexture ast(context, desc);
960 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000961
reed@google.com69302852011-02-16 18:08:07 +0000962 if (NULL == texture) {
963 return false;
964 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000965 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000966 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +0000967
bsalomon@google.com88becf42012-10-05 14:54:42 +0000968 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000969 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000970 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
971 grp->coverageSampler(MASK_IDX)->reset();
972 grp->coverageSampler(MASK_IDX)->setCustomStage(
bsalomon@google.com1c31f632012-07-26 19:39:06 +0000973 SkNEW_ARGS(GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000974 GrRect d;
975 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +0000976 GrIntToScalar(dstM.fBounds.fTop),
977 GrIntToScalar(dstM.fBounds.fRight),
978 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000979
bsalomon@google.com88becf42012-10-05 14:54:42 +0000980 GrMatrix* m = grp->coverageSampler(MASK_IDX)->matrix();
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000981 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
982 -dstM.fBounds.fTop*SK_Scalar1);
983 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000984 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +0000985 return true;
986}
reed@google.com69302852011-02-16 18:08:07 +0000987
bsalomon@google.com85003222012-03-28 14:44:37 +0000988}
989
990///////////////////////////////////////////////////////////////////////////////
991
reed@google.com0c219b62011-02-16 21:31:18 +0000992void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000993 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000994 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000995 CHECK_FOR_NODRAW_ANNOTATION(paint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000996 CHECK_SHOULD_DRAW(draw);
997
reed@google.comfe626382011-09-21 13:50:35 +0000998 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000999
bsalomon@google.com5782d712011-01-21 21:03:59 +00001000 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001001 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001002 if (!skPaint2GrPaintShader(this,
1003 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001004 true,
twiz@google.com58071162012-07-18 21:41:50 +00001005 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001006 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001007 return;
1008 }
1009
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001010 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1011 // if we can, we draw lots faster (raster device does this same test)
1012 SkScalar hairlineCoverage;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001013 if (SkDrawTreatAsHairline(paint, fContext->getMatrix(), &hairlineCoverage)) {
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001014 doFill = false;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +00001015 grPaint.setCoverage(SkScalarRoundToInt(hairlineCoverage * grPaint.getCoverage()));
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001016 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001017
reed@google.comfe626382011-09-21 13:50:35 +00001018 // If we have a prematrix, apply it to the path, optimizing for the case
1019 // where the original path can in fact be modified in place (even though
1020 // its parameter type is const).
1021 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1022 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001023
1024 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001025 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001026
reed@google.come3445642011-02-16 23:20:39 +00001027 if (!pathIsMutable) {
1028 result = &tmpPath;
1029 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001030 }
reed@google.come3445642011-02-16 23:20:39 +00001031 // should I push prePathMatrix on our MV stack temporarily, instead
1032 // of applying it here? See SkDraw.cpp
1033 pathPtr->transform(*prePathMatrix, result);
1034 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001035 }
reed@google.com0c219b62011-02-16 21:31:18 +00001036 // at this point we're done with prePathMatrix
1037 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001038
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001039 if (paint.getPathEffect() ||
1040 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001041 // it is safe to use tmpPath here, even if we already used it for the
1042 // prepathmatrix, since getFillPath can take the same object for its
1043 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001044 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001045 pathPtr = &tmpPath;
1046 }
1047
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001048 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001049 // avoid possibly allocating a new path in transform if we can
1050 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1051
1052 // transform the path into device space
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001053 pathPtr->transform(fContext->getMatrix(), devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001054 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001055 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001056 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001057 *draw.fClip, draw.fBounder, &grPaint, pathFillType)) {
rmistry@google.comd6176b02012-08-23 18:14:13 +00001058 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001059 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001060 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001061 *draw.fClip, draw.fBounder, &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001062 }
reed@google.com69302852011-02-16 18:08:07 +00001063 return;
1064 }
reed@google.com69302852011-02-16 18:08:07 +00001065
bsalomon@google.com47059542012-06-06 20:51:20 +00001066 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001067
reed@google.com0c219b62011-02-16 21:31:18 +00001068 if (doFill) {
1069 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001070 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001071 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001072 break;
1073 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001074 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001075 break;
1076 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001077 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001078 break;
1079 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001080 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001081 break;
1082 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001083 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001084 return;
1085 }
1086 }
1087
reed@google.com07f3ee12011-05-16 17:21:57 +00001088 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001089}
1090
bsalomon@google.comfb309512011-11-30 14:13:48 +00001091namespace {
1092
1093inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1094 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1095 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1096 return tilesX * tilesY;
1097}
1098
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001099inline int determine_tile_size(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001100 const SkRect& src,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001101 int maxTextureSize) {
1102 static const int kSmallTileSize = 1 << 10;
1103 if (maxTextureSize <= kSmallTileSize) {
1104 return maxTextureSize;
1105 }
1106
1107 size_t maxTexTotalTileSize;
1108 size_t smallTotalTileSize;
1109
robertphillips@google.combac6b052012-09-28 18:06:49 +00001110 SkIRect iSrc;
1111 src.roundOut(&iSrc);
1112
1113 maxTexTotalTileSize = get_tile_count(iSrc.fLeft,
1114 iSrc.fTop,
1115 iSrc.fRight,
1116 iSrc.fBottom,
1117 maxTextureSize);
1118 smallTotalTileSize = get_tile_count(iSrc.fLeft,
1119 iSrc.fTop,
1120 iSrc.fRight,
1121 iSrc.fBottom,
1122 kSmallTileSize);
1123
bsalomon@google.comfb309512011-11-30 14:13:48 +00001124 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1125 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1126
1127 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1128 return kSmallTileSize;
1129 } else {
1130 return maxTextureSize;
1131 }
1132}
1133}
1134
1135bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001136 const GrTextureParams& params,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001137 const SkRect* srcRectPtr) const {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001138 // if bitmap is explictly texture backed then just use the texture
1139 if (NULL != bitmap.getTexture()) {
1140 return false;
1141 }
1142 // if it's larger than the max texture size, then we have no choice but
1143 // tiling
1144 const int maxTextureSize = fContext->getMaxTextureSize();
1145 if (bitmap.width() > maxTextureSize ||
1146 bitmap.height() > maxTextureSize) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001147 return true;
1148 }
1149 // if we are going to have to draw the whole thing, then don't tile
1150 if (NULL == srcRectPtr) {
1151 return false;
1152 }
1153 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.comb8670992012-07-25 21:27:09 +00001154 if (this->isBitmapInTextureCache(bitmap, params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001155 return false;
1156 }
1157
1158 // At this point we know we could do the draw by uploading the entire bitmap
1159 // as a texture. However, if the texture would be large compared to the
1160 // cache size and we don't require most of it for this draw then tile to
1161 // reduce the amount of upload and cache spill.
1162
1163 // assumption here is that sw bitmap size is a good proxy for its size as
1164 // a texture
1165 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001166 size_t cacheSize;
1167 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001168 if (bmpSize < cacheSize / 2) {
1169 return false;
1170 }
1171
robertphillips@google.combac6b052012-09-28 18:06:49 +00001172 SkScalar fracUsed = SkScalarMul(srcRectPtr->width() / bitmap.width(),
1173 srcRectPtr->height() / bitmap.height());
1174 if (fracUsed <= SK_ScalarHalf) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001175 return true;
1176 } else {
1177 return false;
1178 }
1179}
1180
reed@google.comac10a2d2010-12-22 21:39:39 +00001181void SkGpuDevice::drawBitmap(const SkDraw& draw,
1182 const SkBitmap& bitmap,
1183 const SkIRect* srcRectPtr,
1184 const SkMatrix& m,
1185 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001186
1187 SkRect tmp;
1188 SkRect* tmpPtr = NULL;
1189
1190 // convert from SkIRect to SkRect
1191 if (NULL != srcRectPtr) {
1192 tmp.set(*srcRectPtr);
1193 tmpPtr = &tmp;
1194 }
1195
1196 // We cannot call drawBitmapRect here since 'm' could be anything
1197 this->drawBitmapCommon(draw, bitmap, tmpPtr, m, paint);
1198}
1199
1200void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
1201 const SkBitmap& bitmap,
1202 const SkRect* srcRectPtr,
1203 const SkMatrix& m,
1204 const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001205 CHECK_SHOULD_DRAW(draw);
1206
robertphillips@google.combac6b052012-09-28 18:06:49 +00001207 SkRect srcRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001208 if (NULL == srcRectPtr) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001209 srcRect.set(0, 0, SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001210 } else {
1211 srcRect = *srcRectPtr;
1212 }
1213
junov@google.comd935cfb2011-06-27 20:48:23 +00001214 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001215 // Convert the bitmap to a shader so that the rect can be drawn
1216 // through drawRect, which supports mask filters.
robertphillips@google.combac6b052012-09-28 18:06:49 +00001217 SkMatrix newM(m);
junov@google.com1d329782011-07-28 20:10:09 +00001218 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001219 const SkBitmap* bitmapPtr = &bitmap;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001220 if (NULL != srcRectPtr) {
1221 SkIRect iSrc;
1222 srcRect.roundOut(&iSrc);
1223 if (!bitmap.extractSubset(&tmp, iSrc)) {
epoger@google.com9ef2d832011-07-01 21:12:20 +00001224 return; // extraction failed
1225 }
1226 bitmapPtr = &tmp;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001227 srcRect.offset(SkIntToScalar(-iSrc.fLeft), SkIntToScalar(-iSrc.fTop));
1228 // The source rect has changed so update the matrix
1229 newM.preTranslate(SkIntToScalar(iSrc.fLeft), SkIntToScalar(iSrc.fTop));
junov@google.comd935cfb2011-06-27 20:48:23 +00001230 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001231
junov@google.comd935cfb2011-06-27 20:48:23 +00001232 SkPaint paintWithTexture(paint);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001233 paintWithTexture.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
junov@google.comd935cfb2011-06-27 20:48:23 +00001234 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001235
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001236 // Transform 'newM' needs to be concatenated to the current matrix,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001237 // rather than transforming the primitive directly, so that 'newM' will
junov@google.com1d329782011-07-28 20:10:09 +00001238 // also affect the behavior of the mask filter.
1239 SkMatrix drawMatrix;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001240 drawMatrix.setConcat(fContext->getMatrix(), newM);
junov@google.com1d329782011-07-28 20:10:09 +00001241 SkDraw transformedDraw(draw);
1242 transformedDraw.fMatrix = &drawMatrix;
1243
robertphillips@google.combac6b052012-09-28 18:06:49 +00001244 this->drawRect(transformedDraw, srcRect, paintWithTexture);
junov@google.com1d329782011-07-28 20:10:09 +00001245
junov@google.comd935cfb2011-06-27 20:48:23 +00001246 return;
1247 }
1248
bsalomon@google.com5782d712011-01-21 21:03:59 +00001249 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001250 SkAutoCachedTexture colorLutTexture;
1251 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001252 return;
1253 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001254 GrTextureParams params;
1255 params.setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001256
robertphillips@google.combac6b052012-09-28 18:06:49 +00001257 if (!this->shouldTileBitmap(bitmap, params, srcRectPtr)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001258 // take the simple case
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001259 this->internalDrawBitmap(bitmap, srcRect, m, params, &grPaint);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001260 } else {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001261 this->drawTiledBitmap(bitmap, srcRect, m, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001262 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001263}
1264
1265// Break 'bitmap' into several tiles to draw it since it has already
1266// been determined to be too large to fit in VRAM
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001267void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001268 const SkRect& srcRect,
1269 const SkMatrix& m,
1270 const GrTextureParams& params,
1271 GrPaint* grPaint) {
1272 const int maxTextureSize = fContext->getMaxTextureSize();
1273
1274 int tileSize = determine_tile_size(bitmap, srcRect, maxTextureSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001275
reed@google.comac10a2d2010-12-22 21:39:39 +00001276 // compute clip bounds in local coordinates
robertphillips@google.combac6b052012-09-28 18:06:49 +00001277 SkRect clipRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001278 {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001279 const GrRenderTarget* rt = fContext->getRenderTarget();
1280 clipRect.setWH(SkIntToScalar(rt->width()), SkIntToScalar(rt->height()));
1281 if (!fContext->getClip()->fClipStack->intersectRectWithClip(&clipRect)) {
1282 return;
1283 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001284 SkMatrix matrix, inverse;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001285 matrix.setConcat(fContext->getMatrix(), m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001286 if (!matrix.invert(&inverse)) {
1287 return;
1288 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001289 inverse.mapRect(&clipRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001290 }
1291
bsalomon@google.comfb309512011-11-30 14:13:48 +00001292 int nx = bitmap.width() / tileSize;
1293 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001294 for (int x = 0; x <= nx; x++) {
1295 for (int y = 0; y <= ny; y++) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001296 SkRect tileR;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001297 tileR.set(SkIntToScalar(x * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001298 SkIntToScalar(y * tileSize),
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001299 SkIntToScalar((x + 1) * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001300 SkIntToScalar((y + 1) * tileSize));
1301
1302 if (!SkRect::Intersects(tileR, clipRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001303 continue;
1304 }
1305
robertphillips@google.combac6b052012-09-28 18:06:49 +00001306 if (!tileR.intersect(srcRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001307 continue;
1308 }
1309
1310 SkBitmap tmpB;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001311 SkIRect iTileR;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001312 tileR.roundOut(&iTileR);
1313 if (bitmap.extractSubset(&tmpB, iTileR)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001314 // now offset it to make it "local" to our tmp bitmap
robertphillips@google.combac6b052012-09-28 18:06:49 +00001315 tileR.offset(SkIntToScalar(-iTileR.fLeft), SkIntToScalar(-iTileR.fTop));
reed@google.comac10a2d2010-12-22 21:39:39 +00001316 SkMatrix tmpM(m);
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +00001317 tmpM.preTranslate(SkIntToScalar(iTileR.fLeft),
robertphillips@google.comffad46b2012-10-01 14:32:51 +00001318 SkIntToScalar(iTileR.fTop));
1319
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001320 this->internalDrawBitmap(tmpB, tileR, tmpM, params, grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001321 }
1322 }
1323 }
1324}
1325
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001326namespace {
1327
1328bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1329 // detect pixel disalignment
1330 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1331 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
rmistry@google.comd6176b02012-08-23 18:14:13 +00001332 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001333 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1334 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1335 COLOR_BLEED_TOLERANCE &&
1336 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1337 COLOR_BLEED_TOLERANCE) {
1338 return true;
1339 }
1340 return false;
1341}
1342
1343bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1344 const SkMatrix& m) {
1345 // Only gets called if hasAlignedSamples returned false.
1346 // So we can assume that sampling is axis aligned but not texel aligned.
1347 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
rmistry@google.comd6176b02012-08-23 18:14:13 +00001348 SkRect innerSrcRect(srcRect), innerTransformedRect,
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001349 outerTransformedRect(transformedRect);
1350 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1351 m.mapRect(&innerTransformedRect, innerSrcRect);
1352
1353 // The gap between outerTransformedRect and innerTransformedRect
1354 // represents the projection of the source border area, which is
1355 // problematic for color bleeding. We must check whether any
1356 // destination pixels sample the border area.
1357 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1358 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1359 SkIRect outer, inner;
1360 outerTransformedRect.round(&outer);
1361 innerTransformedRect.round(&inner);
1362 // If the inner and outer rects round to the same result, it means the
1363 // border does not overlap any pixel centers. Yay!
1364 return inner != outer;
1365}
1366
1367} // unnamed namespace
1368
reed@google.comac10a2d2010-12-22 21:39:39 +00001369/*
1370 * This is called by drawBitmap(), which has to handle images that may be too
1371 * large to be represented by a single texture.
1372 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001373 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1374 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001375 */
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001376void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001377 const SkRect& srcRect,
reed@google.comac10a2d2010-12-22 21:39:39 +00001378 const SkMatrix& m,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001379 const GrTextureParams& params,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001380 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001381 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1382 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001383
reed@google.com9c49bc32011-07-07 13:42:37 +00001384 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001385 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001386 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001387 return;
1388 }
1389
bsalomon@google.com88becf42012-10-05 14:54:42 +00001390 GrSamplerState* sampler = grPaint->colorSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001391
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001392 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001393
1394 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001395 SkAutoCachedTexture act(this, bitmap, &params, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001396 if (NULL == texture) {
1397 return;
1398 }
1399
robertphillips@google.combac6b052012-09-28 18:06:49 +00001400 GrRect dstRect(srcRect);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001401 GrRect paintRect;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001402 SkScalar wInv = SkScalarInvert(SkIntToScalar(bitmap.width()));
1403 SkScalar hInv = SkScalarInvert(SkIntToScalar(bitmap.height()));
1404 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1405 SkScalarMul(srcRect.fTop, hInv),
1406 SkScalarMul(srcRect.fRight, wInv),
1407 SkScalarMul(srcRect.fBottom, hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001408
rmistry@google.comd6176b02012-08-23 18:14:13 +00001409 bool needsTextureDomain = false;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001410 if (params.isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001411 // Need texture domain if drawing a sub rect.
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001412 needsTextureDomain = srcRect.width() < bitmap.width() ||
robertphillips@google.combac6b052012-09-28 18:06:49 +00001413 srcRect.height() < bitmap.height();
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001414 if (m.rectStaysRect() && fContext->getMatrix().rectStaysRect()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001415 // sampling is axis-aligned
robertphillips@google.combac6b052012-09-28 18:06:49 +00001416 GrRect transformedRect;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001417 SkMatrix srcToDeviceMatrix(m);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001418 srcToDeviceMatrix.postConcat(fContext->getMatrix());
robertphillips@google.combac6b052012-09-28 18:06:49 +00001419 srcToDeviceMatrix.mapRect(&transformedRect, srcRect);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001420
robertphillips@google.combac6b052012-09-28 18:06:49 +00001421 if (hasAlignedSamples(srcRect, transformedRect)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001422 // We could also turn off filtering here (but we already did a cache lookup with
1423 // params).
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001424 needsTextureDomain = false;
1425 } else {
1426 needsTextureDomain = needsTextureDomain &&
robertphillips@google.combac6b052012-09-28 18:06:49 +00001427 mayColorBleed(srcRect, transformedRect, m);
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001428 }
1429 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001430 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001431
1432 GrRect textureDomain = GrRect::MakeEmpty();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001433 SkAutoTUnref<GrCustomStage> stage;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001434 if (needsTextureDomain) {
1435 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001436 GrScalar left, top, right, bottom;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001437 if (srcRect.width() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001438 GrScalar border = GR_ScalarHalf / bitmap.width();
1439 left = paintRect.left() + border;
1440 right = paintRect.right() - border;
1441 } else {
1442 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1443 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001444 if (srcRect.height() > GR_Scalar1) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001445 GrScalar border = GR_ScalarHalf / bitmap.height();
1446 top = paintRect.top() + border;
1447 bottom = paintRect.bottom() - border;
1448 } else {
1449 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1450 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001451 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001452 stage.reset(SkNEW_ARGS(GrTextureDomainEffect, (texture, textureDomain, params)));
1453 } else {
1454 stage.reset(SkNEW_ARGS(GrSingleTextureEffect, (texture, params)));
junov@google.com6acc9b32011-05-16 18:32:07 +00001455 }
bsalomon@google.com88becf42012-10-05 14:54:42 +00001456 grPaint->colorSampler(kBitmapTextureIdx)->setCustomStage(stage);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001457 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001458}
1459
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001460namespace {
1461
1462void apply_custom_stage(GrContext* context,
1463 GrTexture* srcTexture,
1464 GrTexture* dstTexture,
1465 const GrRect& rect,
1466 GrCustomStage* stage) {
1467 SkASSERT(srcTexture && srcTexture->getContext() == context);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001468 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001469 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001470 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001471
1472 GrMatrix sampleM;
1473 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1474 GrPaint paint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001475 paint.colorSampler(0)->reset(sampleM);
1476 paint.colorSampler(0)->setCustomStage(stage);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001477 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001478}
1479
1480};
1481
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001482static GrTexture* filter_texture(SkDevice* device, GrContext* context,
1483 GrTexture* texture, SkImageFilter* filter,
1484 const GrRect& rect) {
reed@google.com8926b162012-03-23 15:36:36 +00001485 GrAssert(filter);
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001486 SkDeviceImageFilterProxy proxy(device);
reed@google.com8926b162012-03-23 15:36:36 +00001487
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001488 GrTextureDesc desc;
1489 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1490 desc.fWidth = SkScalarCeilToInt(rect.width());
1491 desc.fHeight = SkScalarCeilToInt(rect.height());
bsalomon@google.com0342a852012-08-20 19:22:38 +00001492 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001493 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001494
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001495 if (filter->canFilterImageGPU()) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001496 texture = filter->onFilterImageGPU(&proxy, texture, rect);
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001497 } else if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001498 GrAutoScratchTexture dst(context, desc);
1499 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1500 texture = dst.detach();
1501 stage->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001502 }
1503 return texture;
1504}
1505
reed@google.comac10a2d2010-12-22 21:39:39 +00001506void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1507 int left, int top, const SkPaint& paint) {
1508 CHECK_SHOULD_DRAW(draw);
1509
reed@google.com8926b162012-03-23 15:36:36 +00001510 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001511 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1512 return;
1513 }
1514
reed@google.com76dd2772012-01-05 21:15:07 +00001515 int w = bitmap.width();
1516 int h = bitmap.height();
1517
bsalomon@google.com5782d712011-01-21 21:03:59 +00001518 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001519 SkAutoCachedTexture colorLutTexture;
1520 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001521 return;
1522 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001523
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001524 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001525
bsalomon@google.com88becf42012-10-05 14:54:42 +00001526 GrSamplerState* sampler = grPaint.colorSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001527
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001528 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001529 sampler->reset();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001530 // draw sprite uses the default texture params
1531 SkAutoCachedTexture act(this, bitmap, NULL, &texture);
bsalomon@google.com88becf42012-10-05 14:54:42 +00001532 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001533 (GrSingleTextureEffect, (texture)))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001534
reed@google.com8926b162012-03-23 15:36:36 +00001535 SkImageFilter* filter = paint.getImageFilter();
1536 if (NULL != filter) {
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001537 GrTexture* filteredTexture = filter_texture(this, fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001538 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001539 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001540 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001541 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001542 texture = filteredTexture;
1543 filteredTexture->unref();
1544 }
reed@google.com76dd2772012-01-05 21:15:07 +00001545 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001546
bsalomon@google.com5782d712011-01-21 21:03:59 +00001547 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001548 GrRect::MakeXYWH(GrIntToScalar(left),
1549 GrIntToScalar(top),
1550 GrIntToScalar(w),
1551 GrIntToScalar(h)),
1552 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1553 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001554}
1555
reed@google.com33535f32012-09-25 15:37:50 +00001556void SkGpuDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1557 const SkRect* src, const SkRect& dst,
1558 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001559 SkMatrix matrix;
1560 SkRect bitmapBounds, tmpSrc;
1561
1562 bitmapBounds.set(0, 0,
1563 SkIntToScalar(bitmap.width()),
1564 SkIntToScalar(bitmap.height()));
1565
reed@google.com33535f32012-09-25 15:37:50 +00001566 // Compute matrix from the two rectangles
robertphillips@google.combac6b052012-09-28 18:06:49 +00001567 if (NULL != src) {
1568 tmpSrc = *src;
1569 } else {
1570 tmpSrc = bitmapBounds;
1571 }
1572 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1573
1574 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
1575 if (NULL != src) {
1576 if (!bitmapBounds.contains(tmpSrc)) {
1577 if (!tmpSrc.intersect(bitmapBounds)) {
1578 return; // nothing to draw
reed@google.com33535f32012-09-25 15:37:50 +00001579 }
reed@google.com33535f32012-09-25 15:37:50 +00001580 }
reed@google.com33535f32012-09-25 15:37:50 +00001581 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +00001582
robertphillips@google.combac6b052012-09-28 18:06:49 +00001583 this->drawBitmapCommon(draw, bitmap, &tmpSrc, matrix, paint);
reed@google.com33535f32012-09-25 15:37:50 +00001584}
1585
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001586void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001587 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001588 // clear of the source device must occur before CHECK_SHOULD_DRAW
1589 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1590 if (dev->fNeedClear) {
1591 // TODO: could check here whether we really need to draw at all
1592 dev->clear(0x0);
1593 }
1594
reed@google.comac10a2d2010-12-22 21:39:39 +00001595 CHECK_SHOULD_DRAW(draw);
1596
bsalomon@google.com5782d712011-01-21 21:03:59 +00001597 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001598 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001599 grPaint.colorSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001600 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001601 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001602 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001603 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001604
bsalomon@google.com88becf42012-10-05 14:54:42 +00001605 GrTexture* devTex = grPaint.getColorSampler(kBitmapTextureIdx).getCustomStage()->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001606 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001607
reed@google.com8926b162012-03-23 15:36:36 +00001608 SkImageFilter* filter = paint.getImageFilter();
1609 if (NULL != filter) {
bsalomon@google.com1c31f632012-07-26 19:39:06 +00001610 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001611 SkIntToScalar(devTex->height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001612 GrTexture* filteredTexture = filter_texture(this, fContext, devTex, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001613 if (filteredTexture) {
bsalomon@google.com88becf42012-10-05 14:54:42 +00001614 grPaint.colorSampler(kBitmapTextureIdx)->setCustomStage(SkNEW_ARGS
tomhudson@google.com1e8f0162012-07-20 16:25:18 +00001615 (GrSingleTextureEffect, (filteredTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001616 devTex = filteredTexture;
1617 filteredTexture->unref();
1618 }
1619 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001620
bsalomon@google.com5782d712011-01-21 21:03:59 +00001621 const SkBitmap& bm = dev->accessBitmap(false);
1622 int w = bm.width();
1623 int h = bm.height();
1624
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001625 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001626 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1627 GrIntToScalar(y),
1628 GrIntToScalar(w),
1629 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001630
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001631 // The device being drawn may not fill up its texture (saveLayer uses
1632 // the approximate ).
1633 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1634 GR_Scalar1 * h / devTex->height());
1635
1636 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001637}
1638
reed@google.com8926b162012-03-23 15:36:36 +00001639bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001640 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001641 !filter->canFilterImageGPU()) {
reed@google.com76dd2772012-01-05 21:15:07 +00001642 return false;
1643 }
reed@google.com8926b162012-03-23 15:36:36 +00001644 return true;
1645}
1646
1647bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1648 const SkMatrix& ctm,
1649 SkBitmap* result, SkIPoint* offset) {
1650 // want explicitly our impl, so guard against a subclass of us overriding it
1651 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001652 return false;
1653 }
reed@google.com8926b162012-03-23 15:36:36 +00001654
1655 SkAutoLockPixels alp(src, !src.getTexture());
1656 if (!src.getTexture() && !src.readyToDraw()) {
1657 return false;
1658 }
1659
1660 GrPaint paint;
reed@google.com8926b162012-03-23 15:36:36 +00001661
reed@google.com8926b162012-03-23 15:36:36 +00001662 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001663 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1664 // must be pushed upstack.
1665 SkAutoCachedTexture act(this, src, NULL, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001666
1667 result->setConfig(src.config(), src.width(), src.height());
rmistry@google.comd6176b02012-08-23 18:14:13 +00001668 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
robertphillips@google.com8637a362012-04-10 18:32:35 +00001669 SkIntToScalar(src.height()));
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001670 GrTexture* resultTexture = filter_texture(this, fContext, texture, filter, rect);
reed@google.com8926b162012-03-23 15:36:36 +00001671 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001672 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1673 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001674 resultTexture->unref();
1675 }
reed@google.com76dd2772012-01-05 21:15:07 +00001676 return true;
1677}
1678
reed@google.comac10a2d2010-12-22 21:39:39 +00001679///////////////////////////////////////////////////////////////////////////////
1680
1681// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001682static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001683 kTriangles_GrPrimitiveType,
1684 kTriangleStrip_GrPrimitiveType,
1685 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001686};
1687
1688void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1689 int vertexCount, const SkPoint vertices[],
1690 const SkPoint texs[], const SkColor colors[],
1691 SkXfermode* xmode,
1692 const uint16_t indices[], int indexCount,
1693 const SkPaint& paint) {
1694 CHECK_SHOULD_DRAW(draw);
1695
bsalomon@google.com5782d712011-01-21 21:03:59 +00001696 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001697 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001698 // we ignore the shader if texs is null.
1699 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001700 if (!skPaint2GrPaintNoShader(this,
1701 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001702 false,
1703 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001704 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001705 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001706 return;
1707 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001708 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001709 if (!skPaint2GrPaintShader(this,
1710 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001711 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001712 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001713 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001714 return;
1715 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001716 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001717
1718 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001719 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001720 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1721#if 0
1722 return
1723#endif
1724 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001725 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001726
bsalomon@google.com498776a2011-08-16 19:20:44 +00001727 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1728 if (NULL != colors) {
1729 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001730 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001731 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001732 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001733 }
1734 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001735 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001736 fContext->drawVertices(grPaint,
1737 gVertexMode2PrimitiveType[vmode],
1738 vertexCount,
1739 (GrPoint*) vertices,
1740 (GrPoint*) texs,
1741 colors,
1742 indices,
1743 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001744}
1745
1746///////////////////////////////////////////////////////////////////////////////
1747
1748static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001749 GrFontScaler* scaler = (GrFontScaler*)data;
1750 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001751}
1752
1753static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1754 void* auxData;
1755 GrFontScaler* scaler = NULL;
1756 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1757 scaler = (GrFontScaler*)auxData;
1758 }
1759 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001760 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001761 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1762 }
1763 return scaler;
1764}
1765
1766static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1767 SkFixed fx, SkFixed fy,
1768 const SkGlyph& glyph) {
1769 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1770
bungeman@google.com15865a72012-01-11 16:28:04 +00001771 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001772
1773 if (NULL == procs->fFontScaler) {
1774 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1775 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001776
bungeman@google.com15865a72012-01-11 16:28:04 +00001777 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1778 glyph.getSubXFixed(),
1779 glyph.getSubYFixed()),
1780 SkFixedFloorToFixed(fx),
1781 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001782 procs->fFontScaler);
1783}
1784
bsalomon@google.com5782d712011-01-21 21:03:59 +00001785SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001786
1787 // deferred allocation
1788 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001789 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001790 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1791 fDrawProcs->fContext = fContext;
1792 }
1793
1794 // init our (and GL's) state
1795 fDrawProcs->fTextContext = context;
1796 fDrawProcs->fFontScaler = NULL;
1797 return fDrawProcs;
1798}
1799
1800void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1801 size_t byteLength, SkScalar x, SkScalar y,
1802 const SkPaint& paint) {
1803 CHECK_SHOULD_DRAW(draw);
1804
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001805 if (fContext->getMatrix().hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001806 // this guy will just call our drawPath()
1807 draw.drawText((const char*)text, byteLength, x, y, paint);
1808 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001809 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001810
1811 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001812 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001813 if (!skPaint2GrPaintShader(this,
1814 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001815 true,
twiz@google.com58071162012-07-18 21:41:50 +00001816 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001817 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001818 return;
1819 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001820 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001821 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001822 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1823 }
1824}
1825
1826void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1827 size_t byteLength, const SkScalar pos[],
1828 SkScalar constY, int scalarsPerPos,
1829 const SkPaint& paint) {
1830 CHECK_SHOULD_DRAW(draw);
1831
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001832 if (fContext->getMatrix().hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001833 // this guy will just call our drawPath()
1834 draw.drawPosText((const char*)text, byteLength, pos, constY,
1835 scalarsPerPos, paint);
1836 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001837 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001838
1839 GrPaint grPaint;
bsalomon@google.com88becf42012-10-05 14:54:42 +00001840 SkAutoCachedTexture textures[GrPaint::kMaxColorStages];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001841 if (!skPaint2GrPaintShader(this,
1842 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001843 true,
twiz@google.com58071162012-07-18 21:41:50 +00001844 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001845 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001846 return;
1847 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001848 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001849 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001850 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1851 scalarsPerPos, paint);
1852 }
1853}
1854
1855void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1856 size_t len, const SkPath& path,
1857 const SkMatrix* m, const SkPaint& paint) {
1858 CHECK_SHOULD_DRAW(draw);
1859
1860 SkASSERT(draw.fDevice == this);
1861 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1862}
1863
1864///////////////////////////////////////////////////////////////////////////////
1865
reed@google.comf67e4cf2011-03-15 20:56:58 +00001866bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1867 if (!paint.isLCDRenderText()) {
1868 // we're cool with the paint as is
1869 return false;
1870 }
1871
1872 if (paint.getShader() ||
1873 paint.getXfermode() || // unless its srcover
1874 paint.getMaskFilter() ||
1875 paint.getRasterizer() ||
1876 paint.getColorFilter() ||
1877 paint.getPathEffect() ||
1878 paint.isFakeBoldText() ||
1879 paint.getStyle() != SkPaint::kFill_Style) {
1880 // turn off lcd
1881 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1882 flags->fHinting = paint.getHinting();
1883 return true;
1884 }
1885 // we're cool with the paint as is
1886 return false;
1887}
1888
reed@google.com75d939b2011-12-07 15:07:23 +00001889void SkGpuDevice::flush() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +00001890 DO_DEFERRED_CLEAR();
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001891 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001892}
1893
reed@google.comf67e4cf2011-03-15 20:56:58 +00001894///////////////////////////////////////////////////////////////////////////////
1895
bsalomon@google.comfb309512011-11-30 14:13:48 +00001896bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001897 const GrTextureParams& params) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001898 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001899 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001900
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001901 GrTextureDesc desc;
1902 desc.fWidth = bitmap.width();
1903 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001904 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001905
robertphillips@google.com9c2ea842012-08-13 17:47:59 +00001906 GrCacheData cacheData(key);
1907
1908 return this->context()->isTextureInCache(desc, cacheData, &params);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001909}
1910
1911
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001912SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1913 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001914 bool isOpaque,
1915 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001916 GrTextureDesc desc;
1917 desc.fConfig = fRenderTarget->config();
1918 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1919 desc.fWidth = width;
1920 desc.fHeight = height;
1921 desc.fSampleCnt = fRenderTarget->numSamples();
1922
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001923 GrTexture* texture;
1924 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001925 // Skia's convention is to only clear a device if it is non-opaque.
1926 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001927
1928#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1929 // layers are never draw in repeat modes, so we can request an approx
1930 // match and ignore any padding.
1931 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1932 GrContext::kApprox_ScratchTexMatch :
1933 GrContext::kExact_ScratchTexMatch;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001934 texture = fContext->lockScratchTexture(desc, matchType);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001935#else
1936 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1937 texture = tunref.get();
1938#endif
1939 if (texture) {
1940 return SkNEW_ARGS(SkGpuDevice,(fContext,
1941 texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001942 needClear));
1943 } else {
1944 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1945 width, height);
1946 return NULL;
1947 }
1948}
1949
1950SkGpuDevice::SkGpuDevice(GrContext* context,
1951 GrTexture* texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001952 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00001953 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1954
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001955 GrAssert(texture && texture->asRenderTarget());
bsalomon@google.com8090e652012-08-28 15:07:11 +00001956 // This constructor is called from onCreateCompatibleDevice. It has locked the RT in the texture
1957 // cache. We pass true for the third argument so that it will get unlocked.
1958 this->initFromRenderTarget(context, texture->asRenderTarget(), true);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001959 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001960}