blob: 77c4bd1115ff1f641af9da4a973dedfe31fff8d7 [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
tomhudson@google.com2f68e762012-07-17 18:43:21 +000010#include "effects/GrTextureDomainEffect.h"
bsalomon@google.com68b58c92013-01-17 16:50:08 +000011#include "effects/GrSimpleTextureEffect.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"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000023#include "SkPathEffect.h"
24#include "SkStroke.h"
reed@google.comc9aa5872011-04-05 21:05:37 +000025#include "SkUtils.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000026
bsalomon@google.com06cd7322012-03-30 18:45:35 +000027#define CACHE_COMPATIBLE_DEVICE_TEXTURES 1
reed@google.comac10a2d2010-12-22 21:39:39 +000028
29#if 0
30 extern bool (*gShouldDrawProc)();
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +000031 #define CHECK_SHOULD_DRAW(draw, forceI) \
reed@google.comac10a2d2010-12-22 21:39:39 +000032 do { \
33 if (gShouldDrawProc && !gShouldDrawProc()) return; \
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +000034 this->prepareDraw(draw, forceI); \
reed@google.comac10a2d2010-12-22 21:39:39 +000035 } while (0)
36#else
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +000037 #define CHECK_SHOULD_DRAW(draw, forceI) this->prepareDraw(draw, forceI)
reed@google.comac10a2d2010-12-22 21:39:39 +000038#endif
39
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000040// we use the same texture slot on GrPaint for bitmaps and shaders
41// (since drawBitmap, drawSprite, and drawDevice ignore skia's shader)
42enum {
43 kBitmapTextureIdx = 0,
twiz@google.com58071162012-07-18 21:41:50 +000044 kShaderTextureIdx = 0,
45 kColorFilterTextureIdx = 1
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000046};
47
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000048#define MAX_BLUR_SIGMA 4.0f
49// FIXME: This value comes from from SkBlurMaskFilter.cpp.
50// Should probably be put in a common header someplace.
51#define MAX_BLUR_RADIUS SkIntToScalar(128)
52// This constant approximates the scaling done in the software path's
53// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
54// IMHO, it actually should be 1: we blur "less" than we should do
55// according to the CSS and canvas specs, simply because Safari does the same.
56// Firefox used to do the same too, until 4.0 where they fixed it. So at some
57// point we should probably get rid of these scaling constants and rebaseline
58// all the blur tests.
59#define BLUR_SIGMA_SCALE 0.6f
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000060// This constant represents the screen alignment criterion in texels for
rmistry@google.comd6176b02012-08-23 18:14:13 +000061// requiring texture domain clamping to prevent color bleeding when drawing
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000062// a sub region of a larger source image.
63#define COLOR_BLEED_TOLERANCE SkFloatToScalar(0.001f)
bsalomon@google.com06cd7322012-03-30 18:45:35 +000064
junov@google.comdbfac8a2012-12-06 21:47:40 +000065#define DO_DEFERRED_CLEAR() \
66 do { \
67 if (fNeedClear) { \
68 this->clear(SK_ColorTRANSPARENT); \
69 } \
70 } while (false) \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000071
reed@google.comac10a2d2010-12-22 21:39:39 +000072///////////////////////////////////////////////////////////////////////////////
73
reed@google.comb0a34d82012-07-11 19:57:55 +000074#define CHECK_FOR_NODRAW_ANNOTATION(paint) \
75 do { if (paint.isNoDrawAnnotation()) { return; } } while (0)
76
77///////////////////////////////////////////////////////////////////////////////
78
79
bsalomon@google.com84405e02012-03-05 19:57:21 +000080class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable {
81public:
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000082 SkAutoCachedTexture()
83 : fDevice(NULL)
84 , fTexture(NULL) {
rmistry@google.comd6176b02012-08-23 18:14:13 +000085 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000086
bsalomon@google.com84405e02012-03-05 19:57:21 +000087 SkAutoCachedTexture(SkGpuDevice* device,
88 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +000089 const GrTextureParams* params,
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000090 GrTexture** texture)
91 : fDevice(NULL)
92 , fTexture(NULL) {
93 GrAssert(NULL != texture);
bsalomon@google.comb8670992012-07-25 21:27:09 +000094 *texture = this->set(device, bitmap, params);
reed@google.comac10a2d2010-12-22 21:39:39 +000095 }
reed@google.comac10a2d2010-12-22 21:39:39 +000096
bsalomon@google.com84405e02012-03-05 19:57:21 +000097 ~SkAutoCachedTexture() {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000098 if (NULL != fTexture) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +000099 GrUnlockAndUnrefCachedBitmapTexture(fTexture);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000100 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000101 }
bsalomon@google.com84405e02012-03-05 19:57:21 +0000102
103 GrTexture* set(SkGpuDevice* device,
104 const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000105 const GrTextureParams* params) {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000106 if (NULL != fTexture) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000107 GrUnlockAndUnrefCachedBitmapTexture(fTexture);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000108 fTexture = NULL;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000109 }
110 fDevice = device;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000111 GrTexture* result = (GrTexture*)bitmap.getTexture();
112 if (NULL == result) {
113 // Cannot return the native texture so look it up in our cache
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000114 fTexture = GrLockAndRefCachedBitmapTexture(device->context(), bitmap, params);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000115 result = fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000116 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000117 return result;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000118 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000119
bsalomon@google.com84405e02012-03-05 19:57:21 +0000120private:
121 SkGpuDevice* fDevice;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000122 GrTexture* fTexture;
bsalomon@google.com84405e02012-03-05 19:57:21 +0000123};
reed@google.comac10a2d2010-12-22 21:39:39 +0000124
125///////////////////////////////////////////////////////////////////////////////
126
reed@google.comac10a2d2010-12-22 21:39:39 +0000127struct GrSkDrawProcs : public SkDrawProcs {
128public:
129 GrContext* fContext;
130 GrTextContext* fTextContext;
131 GrFontScaler* fFontScaler; // cached in the skia glyphcache
132};
133
134///////////////////////////////////////////////////////////////////////////////
135
reed@google.comaf951c92011-06-16 19:10:39 +0000136static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
137 switch (config) {
138 case kAlpha_8_GrPixelConfig:
139 *isOpaque = false;
140 return SkBitmap::kA8_Config;
141 case kRGB_565_GrPixelConfig:
142 *isOpaque = true;
143 return SkBitmap::kRGB_565_Config;
144 case kRGBA_4444_GrPixelConfig:
145 *isOpaque = false;
146 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000147 case kSkia8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +0000148 // we don't currently have a way of knowing whether
149 // a 8888 is opaque based on the config.
150 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000151 return SkBitmap::kARGB_8888_Config;
152 default:
153 *isOpaque = false;
154 return SkBitmap::kNo_Config;
155 }
156}
reed@google.comac10a2d2010-12-22 21:39:39 +0000157
reed@google.comaf951c92011-06-16 19:10:39 +0000158static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000159 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000160
161 bool isOpaque;
162 SkBitmap bitmap;
163 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
164 renderTarget->width(), renderTarget->height());
165 bitmap.setIsOpaque(isOpaque);
166 return bitmap;
167}
168
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000169SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000170: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000171 this->initFromRenderTarget(context, texture->asRenderTarget(), false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000172}
173
reed@google.comaf951c92011-06-16 19:10:39 +0000174SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000175: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.com8090e652012-08-28 15:07:11 +0000176 this->initFromRenderTarget(context, renderTarget, false);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000177}
178
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000179void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.com8090e652012-08-28 15:07:11 +0000180 GrRenderTarget* renderTarget,
181 bool cached) {
reed@google.comaf951c92011-06-16 19:10:39 +0000182 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000183
reed@google.comaf951c92011-06-16 19:10:39 +0000184 fContext = context;
185 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000186
reed@google.comaf951c92011-06-16 19:10:39 +0000187 fRenderTarget = NULL;
188 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000189
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000190 GrAssert(NULL != renderTarget);
191 fRenderTarget = renderTarget;
192 fRenderTarget->ref();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000193
bsalomon@google.coma2921122012-08-28 12:34:17 +0000194 // Hold onto to the texture in the pixel ref (if there is one) because the texture holds a ref
195 // on the RT but not vice-versa.
196 // TODO: Remove this trickery once we figure out how to make SkGrPixelRef do this without
197 // busting chrome (for a currently unknown reason).
198 GrSurface* surface = fRenderTarget->asTexture();
199 if (NULL == surface) {
200 surface = fRenderTarget;
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000201 }
bsalomon@google.com8090e652012-08-28 15:07:11 +0000202 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (surface, cached));
bsalomon@google.coma2921122012-08-28 12:34:17 +0000203
reed@google.comaf951c92011-06-16 19:10:39 +0000204 this->setPixelRef(pr, 0)->unref();
205}
206
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000207SkGpuDevice::SkGpuDevice(GrContext* context,
208 SkBitmap::Config config,
209 int width,
robertphillips@google.comd3eb3362012-10-31 13:56:35 +0000210 int height,
211 int sampleCount)
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000212 : SkDevice(config, width, height, false /*isOpaque*/) {
213
reed@google.comac10a2d2010-12-22 21:39:39 +0000214 fDrawProcs = NULL;
215
reed@google.com7b201d22011-01-11 18:59:23 +0000216 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000217 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000218
reed@google.comac10a2d2010-12-22 21:39:39 +0000219 fRenderTarget = NULL;
220 fNeedClear = false;
221
reed@google.comaf951c92011-06-16 19:10:39 +0000222 if (config != SkBitmap::kRGB_565_Config) {
223 config = SkBitmap::kARGB_8888_Config;
224 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000225
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000226 GrTextureDesc desc;
227 desc.fFlags = kRenderTarget_GrTextureFlagBit;
228 desc.fWidth = width;
229 desc.fHeight = height;
robertphillips@google.comd3eb3362012-10-31 13:56:35 +0000230 desc.fConfig = SkBitmapConfig2GrPixelConfig(config);
231 desc.fSampleCnt = sampleCount;
reed@google.comac10a2d2010-12-22 21:39:39 +0000232
bsalomon@google.coma2921122012-08-28 12:34:17 +0000233 SkAutoTUnref<GrTexture> texture(fContext->createUncachedTexture(desc, NULL, 0));
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000234
bsalomon@google.coma2921122012-08-28 12:34:17 +0000235 if (NULL != texture) {
236 fRenderTarget = texture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000237 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000238
reed@google.comaf951c92011-06-16 19:10:39 +0000239 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000240
reed@google.comaf951c92011-06-16 19:10:39 +0000241 // wrap the bitmap with a pixelref to expose our texture
bsalomon@google.coma2921122012-08-28 12:34:17 +0000242 SkGrPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (texture));
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000243 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000244 } else {
245 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
246 width, height);
247 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000248 }
249}
250
251SkGpuDevice::~SkGpuDevice() {
252 if (fDrawProcs) {
253 delete fDrawProcs;
254 }
255
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000256 // The GrContext takes a ref on the target. We don't want to cause the render
257 // target to be unnecessarily kept alive.
258 if (fContext->getRenderTarget() == fRenderTarget) {
259 fContext->setRenderTarget(NULL);
260 }
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000261
robertphillips@google.com055f9082012-10-24 13:24:11 +0000262 if (fContext->getClip() == &fClipData) {
263 fContext->setClip(NULL);
264 }
265
bsalomon@google.coma2921122012-08-28 12:34:17 +0000266 SkSafeUnref(fRenderTarget);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000267 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000268}
269
reed@google.comac10a2d2010-12-22 21:39:39 +0000270///////////////////////////////////////////////////////////////////////////////
271
272void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000273 DO_DEFERRED_CLEAR();
reed@google.comac10a2d2010-12-22 21:39:39 +0000274 fContext->setRenderTarget(fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000275}
276
277///////////////////////////////////////////////////////////////////////////////
278
bsalomon@google.comc4364992011-11-07 15:54:49 +0000279namespace {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000280GrPixelConfig config8888_to_grconfig_and_flags(SkCanvas::Config8888 config8888, uint32_t* flags) {
bsalomon@google.comc4364992011-11-07 15:54:49 +0000281 switch (config8888) {
282 case SkCanvas::kNative_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000283 *flags = 0;
284 return kSkia8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000285 case SkCanvas::kNative_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000286 *flags = GrContext::kUnpremul_PixelOpsFlag;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000287 return kSkia8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000288 case SkCanvas::kBGRA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000289 *flags = 0;
290 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000291 case SkCanvas::kBGRA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000292 *flags = GrContext::kUnpremul_PixelOpsFlag;
293 return kBGRA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000294 case SkCanvas::kRGBA_Premul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000295 *flags = 0;
296 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000297 case SkCanvas::kRGBA_Unpremul_Config8888:
bsalomon@google.com0342a852012-08-20 19:22:38 +0000298 *flags = GrContext::kUnpremul_PixelOpsFlag;
299 return kRGBA_8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000300 default:
301 GrCrash("Unexpected Config8888.");
bsalomon@google.comccaa0022012-09-25 19:55:07 +0000302 *flags = 0; // suppress warning
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000303 return kSkia8888_GrPixelConfig;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000304 }
305}
306}
307
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000308bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
309 int x, int y,
310 SkCanvas::Config8888 config8888) {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000311 DO_DEFERRED_CLEAR();
bsalomon@google.com910267d2011-11-02 20:06:25 +0000312 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
313 SkASSERT(!bitmap.isNull());
314 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000315
bsalomon@google.com910267d2011-11-02 20:06:25 +0000316 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000317 GrPixelConfig config;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000318 uint32_t flags;
319 config = config8888_to_grconfig_and_flags(config8888, &flags);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000320 return fContext->readRenderTargetPixels(fRenderTarget,
321 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000322 bitmap.width(),
323 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000324 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000325 bitmap.getPixels(),
bsalomon@google.com0342a852012-08-20 19:22:38 +0000326 bitmap.rowBytes(),
327 flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000328}
329
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000330void SkGpuDevice::writePixels(const SkBitmap& bitmap, int x, int y,
331 SkCanvas::Config8888 config8888) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000332 SkAutoLockPixels alp(bitmap);
333 if (!bitmap.readyToDraw()) {
334 return;
335 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000336
337 GrPixelConfig config;
bsalomon@google.com0342a852012-08-20 19:22:38 +0000338 uint32_t flags;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000339 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000340 config = config8888_to_grconfig_and_flags(config8888, &flags);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000341 } else {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000342 flags = 0;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000343 config= SkBitmapConfig2GrPixelConfig(bitmap.config());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000344 }
345
bsalomon@google.com6f379512011-11-16 20:36:03 +0000346 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
bsalomon@google.com0342a852012-08-20 19:22:38 +0000347 config, bitmap.getPixels(), bitmap.rowBytes(), flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000348}
349
robertphillips@google.com46f93502012-08-07 15:38:08 +0000350namespace {
humper@google.com05af1af2013-01-07 16:47:43 +0000351void purgeClipCB(int genID, void* ) {
robertphillips@google.com46f93502012-08-07 15:38:08 +0000352
353 if (SkClipStack::kInvalidGenID == genID ||
354 SkClipStack::kEmptyGenID == genID ||
355 SkClipStack::kWideOpenGenID == genID) {
356 // none of these cases will have a cached clip mask
357 return;
358 }
359
360}
361};
362
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000363void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
364 INHERITED::onAttachToCanvas(canvas);
365
366 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000367 fClipData.fClipStack = canvas->getClipStack();
robertphillips@google.com46f93502012-08-07 15:38:08 +0000368
369 fClipData.fClipStack->addPurgeClipCallback(purgeClipCB, fContext);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000370}
371
372void SkGpuDevice::onDetachFromCanvas() {
373 INHERITED::onDetachFromCanvas();
374
robertphillips@google.com46f93502012-08-07 15:38:08 +0000375 // TODO: iterate through the clip stack and clean up any cached clip masks
376 fClipData.fClipStack->removePurgeClipCallback(purgeClipCB, fContext);
377
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000378 fClipData.fClipStack = NULL;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000379}
380
robertphillips@google.com607fe072012-07-24 13:54:00 +0000381#ifdef SK_DEBUG
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000382static void check_bounds(const GrClipData& clipData,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000383 const SkRegion& clipRegion,
robertphillips@google.com607fe072012-07-24 13:54:00 +0000384 int renderTargetWidth,
385 int renderTargetHeight) {
386
robertphillips@google.com7b112892012-07-31 15:18:21 +0000387 SkIRect devBound;
388
389 devBound.setLTRB(0, 0, renderTargetWidth, renderTargetHeight);
390
robertphillips@google.com607fe072012-07-24 13:54:00 +0000391 SkClipStack::BoundsType boundType;
robertphillips@google.com7b112892012-07-31 15:18:21 +0000392 SkRect canvTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000393
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000394 clipData.fClipStack->getBounds(&canvTemp, &boundType);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000395 if (SkClipStack::kNormal_BoundsType == boundType) {
robertphillips@google.com7b112892012-07-31 15:18:21 +0000396 SkIRect devTemp;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000397
robertphillips@google.com7b112892012-07-31 15:18:21 +0000398 canvTemp.roundOut(&devTemp);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000399
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000400 devTemp.offset(-clipData.fOrigin.fX, -clipData.fOrigin.fY);
robertphillips@google.com607fe072012-07-24 13:54:00 +0000401
robertphillips@google.com7b112892012-07-31 15:18:21 +0000402 if (!devBound.intersect(devTemp)) {
403 devBound.setEmpty();
robertphillips@google.com607fe072012-07-24 13:54:00 +0000404 }
405 }
406
robertphillips@google.com768fee82012-08-02 12:42:43 +0000407 GrAssert(devBound.contains(clipRegion.getBounds()));
robertphillips@google.com607fe072012-07-24 13:54:00 +0000408}
409#endif
410
reed@google.comac10a2d2010-12-22 21:39:39 +0000411///////////////////////////////////////////////////////////////////////////////
412
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000413// call this every draw call, to ensure that the context reflects our state,
reed@google.comac10a2d2010-12-22 21:39:39 +0000414// and not the state from some other canvas/device
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000415void SkGpuDevice::prepareDraw(const SkDraw& draw, bool forceIdentity) {
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000416 GrAssert(NULL != fClipData.fClipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000417
reed@google.comac10a2d2010-12-22 21:39:39 +0000418 fContext->setRenderTarget(fRenderTarget);
419
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000420 SkASSERT(draw.fClipStack && draw.fClipStack == fClipData.fClipStack);
reed@google.comac10a2d2010-12-22 21:39:39 +0000421
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000422 if (forceIdentity) {
423 fContext->setIdentityMatrix();
424 } else {
425 fContext->setMatrix(*draw.fMatrix);
426 }
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000427 fClipData.fOrigin = this->getOrigin();
reed@google.comac10a2d2010-12-22 21:39:39 +0000428
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000429#ifdef SK_DEBUG
430 check_bounds(fClipData, *draw.fClip, fRenderTarget->width(), fRenderTarget->height());
431#endif
432
433 fContext->setClip(&fClipData);
434
435 DO_DEFERRED_CLEAR();
reed@google.comac10a2d2010-12-22 21:39:39 +0000436}
437
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000438SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000439 DO_DEFERRED_CLEAR();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000440 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000441}
442
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000443bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
bsalomon@google.coma2921122012-08-28 12:34:17 +0000444 GrTexture* texture = fRenderTarget->asTexture();
445 if (NULL != texture) {
bsalomon@google.com08283af2012-10-26 13:01:20 +0000446 paint->colorStage(kBitmapTextureIdx)->setEffect(
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000447 GrSimpleTextureEffect::Create(texture, SkMatrix::I()))->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000448 return true;
449 }
450 return false;
451}
452
453///////////////////////////////////////////////////////////////////////////////
454
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000455SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
456SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
457SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
458SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
459SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
460 shader_type_mismatch);
rileya@google.com3e332582012-07-03 13:43:35 +0000461SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5,
462 shader_type_mismatch);
rileya@google.com22e57f92012-07-19 15:16:19 +0000463SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch);
464SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000465
bsalomon@google.com84405e02012-03-05 19:57:21 +0000466namespace {
467
468// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
469// justAlpha indicates that skPaint's alpha should be used rather than the color
470// Callers may subsequently modify the GrPaint. Setting constantColor indicates
471// that the final paint will draw the same color at every pixel. This allows
472// an optimization where the the color filter can be applied to the skPaint's
twiz@google.com58071162012-07-18 21:41:50 +0000473// color once while converting to GrPaint and then ignored.
474inline bool skPaint2GrPaintNoShader(SkGpuDevice* dev,
475 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000476 bool justAlpha,
477 bool constantColor,
478 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000479
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000480 grPaint->setDither(skPaint.isDither());
481 grPaint->setAntiAlias(skPaint.isAntiAlias());
bsalomon@google.com5782d712011-01-21 21:03:59 +0000482
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000483 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
484 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000485
486 SkXfermode* mode = skPaint.getXfermode();
487 if (mode) {
488 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000489 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000490#if 0
491 return false;
492#endif
493 }
494 }
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000495 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000496
bsalomon@google.com5782d712011-01-21 21:03:59 +0000497 if (justAlpha) {
498 uint8_t alpha = skPaint.getAlpha();
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000499 grPaint->setColor(GrColorPackRGBA(alpha, alpha, alpha, alpha));
Scroggod757df22011-05-16 13:11:16 +0000500 // justAlpha is currently set to true only if there is a texture,
501 // so constantColor should not also be true.
502 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000503 } else {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000504 grPaint->setColor(SkColor2GrColor(skPaint.getColor()));
bsalomon@google.com88becf42012-10-05 14:54:42 +0000505 GrAssert(!grPaint->isColorStageEnabled(kShaderTextureIdx));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000506 }
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000507
Scroggo97c88c22011-05-11 14:05:25 +0000508 SkColorFilter* colorFilter = skPaint.getColorFilter();
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000509 if (NULL != colorFilter) {
510 // if the source color is a constant then apply the filter here once rather than per pixel
511 // in a shader.
512 if (constantColor) {
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000513 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000514 grPaint->setColor(SkColor2GrColor(filtered));
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000515 } else {
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000516 SkAutoTUnref<GrEffectRef> effect(colorFilter->asNewEffect(dev->context()));
bsalomon@google.com021fc732012-10-25 12:47:42 +0000517 if (NULL != effect.get()) {
bsalomon@google.com08283af2012-10-26 13:01:20 +0000518 grPaint->colorStage(kColorFilterTextureIdx)->setEffect(effect);
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000519 } else {
bsalomon@google.com8ea78d82012-10-24 20:11:30 +0000520 // TODO: rewrite this using asNewEffect()
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000521 SkColor color;
522 SkXfermode::Mode filterMode;
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000523 if (colorFilter->asColorMode(&color, &filterMode)) {
524 grPaint->setXfermodeColorFilter(filterMode, SkColor2GrColor(color));
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000525 }
526 }
Scroggod757df22011-05-16 13:11:16 +0000527 }
Scroggo97c88c22011-05-11 14:05:25 +0000528 }
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000529
bsalomon@google.com5782d712011-01-21 21:03:59 +0000530 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000531}
532
bsalomon@google.com84405e02012-03-05 19:57:21 +0000533// This function is similar to skPaint2GrPaintNoShader but also converts
bsalomon@google.com08283af2012-10-26 13:01:20 +0000534// skPaint's shader to a GrTexture/GrEffectStage if possible. The texture to
bsalomon@google.com84405e02012-03-05 19:57:21 +0000535// be used is set on grPaint and returned in param act. constantColor has the
536// same meaning as in skPaint2GrPaintNoShader.
537inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
538 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000539 bool constantColor,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000540 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000541 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000542 if (NULL == shader) {
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000543 return skPaint2GrPaintNoShader(dev, skPaint, false, constantColor, grPaint);
544 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false, grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000545 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000546 }
547
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000548 SkAutoTUnref<GrEffectRef> effect(shader->asNewEffect(dev->context(), skPaint));
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000549 if (NULL != effect.get()) {
550 grPaint->colorStage(kShaderTextureIdx)->setEffect(effect);
rileya@google.com91f319c2012-07-25 17:18:31 +0000551 return true;
552 }
553
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000554 // We still don't have SkColorShader::asNewEffect() implemented.
555 SkShader::GradientInfo info;
556 SkColor color;
reed@google.comac10a2d2010-12-22 21:39:39 +0000557
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000558 info.fColors = &color;
559 info.fColorOffsets = NULL;
560 info.fColorCount = 1;
561 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
562 SkPaint copy(skPaint);
563 copy.setShader(NULL);
564 // modulate the paint alpha by the shader's solid color alpha
565 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
566 copy.setColor(SkColorSetA(color, newA));
567 return skPaint2GrPaintNoShader(dev, copy, false, constantColor, grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000568 }
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000569 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000570}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000571}
reed@google.comac10a2d2010-12-22 21:39:39 +0000572
573///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com398109c2011-04-14 18:40:27 +0000574void SkGpuDevice::clear(SkColor color) {
bsalomon@google.com32cf29e2013-01-25 15:03:18 +0000575 SkIRect rect = SkIRect::MakeWH(this->width(), this->height());
576 fContext->clear(&rect, SkColor2GrColor(color), fRenderTarget);
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000577 fNeedClear = false;
bsalomon@google.com398109c2011-04-14 18:40:27 +0000578}
579
reed@google.comac10a2d2010-12-22 21:39:39 +0000580void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000581 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000582
bsalomon@google.com5782d712011-01-21 21:03:59 +0000583 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000584 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000585 return;
586 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000587
588 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000589}
590
591// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000592static const GrPrimitiveType gPointMode2PrimtiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +0000593 kPoints_GrPrimitiveType,
594 kLines_GrPrimitiveType,
595 kLineStrip_GrPrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000596};
597
598void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000599 size_t count, const SkPoint pts[], const SkPaint& paint) {
epoger@google.comb58772f2013-03-08 09:09:10 +0000600 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000601 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000602
603 SkScalar width = paint.getStrokeWidth();
604 if (width < 0) {
605 return;
606 }
607
bsalomon@google.comb702c0f2012-06-18 12:52:56 +0000608 // we only handle hairlines and paints without path effects or mask filters,
609 // else we let the SkDraw call our drawPath()
610 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000611 draw.drawPoints(mode, count, pts, paint, true);
612 return;
613 }
614
bsalomon@google.com5782d712011-01-21 21:03:59 +0000615 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000616 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000617 return;
618 }
619
bsalomon@google.com5782d712011-01-21 21:03:59 +0000620 fContext->drawVertices(grPaint,
621 gPointMode2PrimtiveType[mode],
622 count,
623 (GrPoint*)pts,
624 NULL,
625 NULL,
626 NULL,
627 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000628}
629
reed@google.comc9aa5872011-04-05 21:05:37 +0000630///////////////////////////////////////////////////////////////////////////////
631
reed@google.comac10a2d2010-12-22 21:39:39 +0000632void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000633 const SkPaint& paint) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000634 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000635 CHECK_SHOULD_DRAW(draw, false);
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000636
bungeman@google.com79bd8772011-07-18 15:34:08 +0000637 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000638 SkScalar width = paint.getStrokeWidth();
639
640 /*
641 We have special code for hairline strokes, miter-strokes, and fills.
642 Anything else we just call our path code.
643 */
644 bool usePath = doStroke && width > 0 &&
645 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000646 // another two reasons we might need to call drawPath...
647 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000648 usePath = true;
649 }
reed@google.com67db6642011-05-26 11:46:35 +0000650 // until we aa rotated rects...
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000651 if (!usePath && paint.isAntiAlias() && !fContext->getMatrix().rectStaysRect()) {
reed@google.com67db6642011-05-26 11:46:35 +0000652 usePath = true;
653 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000654 // small miter limit means right angles show bevel...
655 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
656 paint.getStrokeMiter() < SK_ScalarSqrt2)
657 {
658 usePath = true;
659 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000660 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000661 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
662 usePath = true;
663 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000664
665 if (usePath) {
666 SkPath path;
667 path.addRect(rect);
668 this->drawPath(draw, path, paint, NULL, true);
669 return;
670 }
671
672 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000673 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000674 return;
675 }
reed@google.com20efde72011-05-09 17:00:02 +0000676 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000677}
678
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000679///////////////////////////////////////////////////////////////////////////////
680
681void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval,
682 const SkPaint& paint) {
683 CHECK_FOR_NODRAW_ANNOTATION(paint);
684 CHECK_SHOULD_DRAW(draw, false);
685
686 bool usePath = false;
687 // some basic reasons we might need to call drawPath...
688 if (paint.getMaskFilter() || paint.getPathEffect()) {
689 usePath = true;
690 }
691
692 if (usePath) {
693 SkPath path;
694 path.addOval(oval);
695 this->drawPath(draw, path, paint, NULL, true);
696 return;
697 }
698
699 GrPaint grPaint;
700 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
701 return;
702 }
703 SkStrokeRec stroke(paint);
704
705 fContext->drawOval(grPaint, oval, stroke);
706}
707
reed@google.com69302852011-02-16 18:08:07 +0000708#include "SkMaskFilter.h"
709#include "SkBounder.h"
710
bsalomon@google.com85003222012-03-28 14:44:37 +0000711///////////////////////////////////////////////////////////////////////////////
712
713// helpers for applying mask filters
714namespace {
715
bsalomon@google.com85003222012-03-28 14:44:37 +0000716// We prefer to blur small rect with small radius via CPU.
717#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
718#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
719inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
720 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
721 rect.height() <= MIN_GPU_BLUR_SIZE &&
722 radius <= MIN_GPU_BLUR_RADIUS) {
723 return true;
724 }
725 return false;
726}
727
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000728bool drawWithGPUMaskFilter(GrContext* context, const SkPath& devPath, const SkStrokeRec& stroke,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000729 SkMaskFilter* filter, const SkRegion& clip,
sugoi@google.com12b4e272012-12-06 20:13:11 +0000730 SkBounder* bounder, GrPaint* grp) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000731 SkMaskFilter::BlurInfo info;
732 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000733 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000734 return false;
735 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000736 SkScalar radius = info.fIgnoreTransform ? info.fRadius
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000737 : context->getMatrix().mapRadius(info.fRadius);
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000738 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000739 if (radius <= 0) {
740 return false;
741 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000742
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000743 SkRect srcRect = devPath.getBounds();
bsalomon@google.com85003222012-03-28 14:44:37 +0000744 if (shouldDrawBlurWithCPU(srcRect, radius)) {
745 return false;
746 }
747
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000748 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000749 float sigma3 = sigma * 3.0f;
750
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000751 SkRect clipRect;
752 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000753
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000754 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000755 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
756 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000757 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000758 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000759 SkIRect finalIRect;
760 finalRect.roundOut(&finalIRect);
761 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000762 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000763 }
764 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000765 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000766 }
767 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000768 srcRect.offset(offset);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000769 GrTextureDesc desc;
770 desc.fFlags = kRenderTarget_GrTextureFlagBit;
771 desc.fWidth = SkScalarCeilToInt(srcRect.width());
772 desc.fHeight = SkScalarCeilToInt(srcRect.height());
773 // We actually only need A8, but it often isn't supported as a
774 // render target so default to RGBA_8888
bsalomon@google.com0342a852012-08-20 19:22:38 +0000775 desc.fConfig = kRGBA_8888_GrPixelConfig;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000776
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000777 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
778 desc.fConfig = kAlpha_8_GrPixelConfig;
779 }
780
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000781 GrAutoScratchTexture pathEntry(context, desc);
782 GrTexture* pathTexture = pathEntry.texture();
783 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000784 return false;
785 }
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000786
robertphillips@google.comccb39502012-10-01 18:25:13 +0000787 SkAutoTUnref<GrTexture> blurTexture;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000788
robertphillips@google.comccb39502012-10-01 18:25:13 +0000789 {
790 GrContext::AutoRenderTarget art(context, pathTexture->asRenderTarget());
791 GrContext::AutoClip ac(context, srcRect);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000792
robertphillips@google.comccb39502012-10-01 18:25:13 +0000793 context->clear(NULL, 0);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000794
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000795 GrPaint tempPaint;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000796 if (grp->isAntiAlias()) {
797 tempPaint.setAntiAlias(true);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000798 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
799 // blend coeff of zero requires dual source blending support in order
800 // to properly blend partially covered pixels. This means the AA
801 // code path may not be taken. So we use a dst blend coeff of ISA. We
802 // could special case AA draws to a dst surface with known alpha=0 to
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000803 // use a zero dst coeff when dual source blending isn't available.f
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000804 tempPaint.setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000805 }
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000806
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000807 GrContext::AutoMatrix am;
808
809 // Draw hard shadow to pathTexture with path top-left at origin using tempPaint.
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000810 SkMatrix translate;
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000811 translate.setTranslate(offset.fX, offset.fY);
812 am.set(context, translate);
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000813 context->drawPath(tempPaint, devPath, stroke);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000814
815 // If we're doing a normal blur, we can clobber the pathTexture in the
816 // gaussianBlur. Otherwise, we need to save it for later compositing.
817 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000818 blurTexture.reset(context->gaussianBlur(pathTexture, isNormalBlur,
robertphillips@google.comccb39502012-10-01 18:25:13 +0000819 srcRect, sigma, sigma));
robertphillips@google.com7d126752012-10-19 12:56:26 +0000820 if (NULL == blurTexture) {
821 return false;
822 }
robertphillips@google.comccb39502012-10-01 18:25:13 +0000823
824 if (!isNormalBlur) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000825 context->setIdentityMatrix();
robertphillips@google.comccb39502012-10-01 18:25:13 +0000826 GrPaint paint;
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000827 SkMatrix matrix;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000828 matrix.setIDiv(pathTexture->width(), pathTexture->height());
robertphillips@google.comccb39502012-10-01 18:25:13 +0000829 // Blend pathTexture over blurTexture.
830 context->setRenderTarget(blurTexture->asRenderTarget());
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000831 paint.colorStage(0)->setEffect(
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000832 GrSimpleTextureEffect::Create(pathTexture, matrix))->unref();
robertphillips@google.comccb39502012-10-01 18:25:13 +0000833 if (SkMaskFilter::kInner_BlurType == blurType) {
834 // inner: dst = dst * src
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000835 paint.setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000836 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
837 // solid: dst = src + dst - src * dst
838 // = (1 - dst) * src + 1 * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000839 paint.setBlendFunc(kIDC_GrBlendCoeff, kOne_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000840 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
841 // outer: dst = dst * (1 - src)
842 // = 0 * src + (1 - src) * dst
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000843 paint.setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comccb39502012-10-01 18:25:13 +0000844 }
845 context->drawRect(paint, srcRect);
846 }
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000847 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000848
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000849 GrContext::AutoMatrix am;
850 if (!am.setIdentity(context, grp)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000851 return false;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000852 }
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000853
bsalomon@google.com88becf42012-10-05 14:54:42 +0000854 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000855 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000856 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000857
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000858 SkMatrix matrix;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000859 matrix.setTranslate(-finalRect.fLeft, -finalRect.fTop);
860 matrix.postIDiv(blurTexture->width(), blurTexture->height());
861
bsalomon@google.com08283af2012-10-26 13:01:20 +0000862 grp->coverageStage(MASK_IDX)->reset();
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000863 grp->coverageStage(MASK_IDX)->setEffect(
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000864 GrSimpleTextureEffect::Create(blurTexture, matrix))->unref();
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000865 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000866 return true;
867}
868
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000869bool drawWithMaskFilter(GrContext* context, const SkPath& devPath,
870 SkMaskFilter* filter, const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000871 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000872 SkMask srcM, dstM;
873
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000874 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), filter, &context->getMatrix(), &srcM,
875 SkMask::kComputeBoundsAndRenderImage_CreateMode, style)) {
reed@google.com69302852011-02-16 18:08:07 +0000876 return false;
877 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000878 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000879
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000880 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
reed@google.com69302852011-02-16 18:08:07 +0000881 return false;
882 }
883 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000884 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000885
886 if (clip.quickReject(dstM.fBounds)) {
887 return false;
888 }
889 if (bounder && !bounder->doIRect(dstM.fBounds)) {
890 return false;
891 }
892
893 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000894 // the current clip (and identity matrix) and GrPaint settings
895 GrContext::AutoMatrix am;
896 am.setIdentity(context, grp);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000897
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000898 GrTextureDesc desc;
899 desc.fWidth = dstM.fBounds.width();
900 desc.fHeight = dstM.fBounds.height();
901 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +0000902
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000903 GrAutoScratchTexture ast(context, desc);
904 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000905
reed@google.com69302852011-02-16 18:08:07 +0000906 if (NULL == texture) {
907 return false;
908 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000909 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000910 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +0000911
bsalomon@google.com88becf42012-10-05 14:54:42 +0000912 static const int MASK_IDX = GrPaint::kMaxCoverageStages - 1;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000913 // we assume the last mask index is available for use
bsalomon@google.com88becf42012-10-05 14:54:42 +0000914 GrAssert(!grp->isCoverageStageEnabled(MASK_IDX));
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000915
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000916 SkMatrix m;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000917 m.setTranslate(-dstM.fBounds.fLeft*SK_Scalar1, -dstM.fBounds.fTop*SK_Scalar1);
918 m.postIDiv(texture->width(), texture->height());
919
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000920 grp->coverageStage(MASK_IDX)->setEffect(GrSimpleTextureEffect::Create(texture, m))->unref();
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000921 GrRect d;
bsalomon@google.com81712882012-11-01 17:12:34 +0000922 d.setLTRB(SkIntToScalar(dstM.fBounds.fLeft),
923 SkIntToScalar(dstM.fBounds.fTop),
924 SkIntToScalar(dstM.fBounds.fRight),
925 SkIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000926
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000927 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +0000928 return true;
929}
reed@google.com69302852011-02-16 18:08:07 +0000930
bsalomon@google.com85003222012-03-28 14:44:37 +0000931}
932
933///////////////////////////////////////////////////////////////////////////////
934
reed@google.com0c219b62011-02-16 21:31:18 +0000935void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000936 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000937 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000938 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000939 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000940
bsalomon@google.com5782d712011-01-21 21:03:59 +0000941 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000942 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000943 return;
944 }
945
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000946 // can we cheat, and treat a thin stroke as a hairline w/ coverage
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +0000947 // if we can, we draw lots faster (raster device does this same test)
948 SkScalar hairlineCoverage;
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000949 bool doHairLine = SkDrawTreatAsHairline(paint, fContext->getMatrix(), &hairlineCoverage);
950 if (doHairLine) {
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000951 grPaint.setCoverage(SkScalarRoundToInt(hairlineCoverage * grPaint.getCoverage()));
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +0000952 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000953
reed@google.comfe626382011-09-21 13:50:35 +0000954 // If we have a prematrix, apply it to the path, optimizing for the case
955 // where the original path can in fact be modified in place (even though
956 // its parameter type is const).
957 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000958 SkPath tmpPath, effectPath;
reed@google.comac10a2d2010-12-22 21:39:39 +0000959
960 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +0000961 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +0000962
reed@google.come3445642011-02-16 23:20:39 +0000963 if (!pathIsMutable) {
964 result = &tmpPath;
965 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000966 }
reed@google.come3445642011-02-16 23:20:39 +0000967 // should I push prePathMatrix on our MV stack temporarily, instead
968 // of applying it here? See SkDraw.cpp
969 pathPtr->transform(*prePathMatrix, result);
970 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +0000971 }
reed@google.com0c219b62011-02-16 21:31:18 +0000972 // at this point we're done with prePathMatrix
973 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +0000974
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000975 SkStrokeRec stroke(paint);
976 SkPathEffect* pathEffect = paint.getPathEffect();
reed@google.com4bbdeac2013-01-24 21:03:11 +0000977 const SkRect* cullRect = NULL; // TODO: what is our bounds?
978 if (pathEffect && pathEffect->filterPath(&effectPath, *pathPtr, &stroke,
979 cullRect)) {
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000980 pathPtr = &effectPath;
981 }
982
983 if (!pathEffect && doHairLine) {
984 stroke.setHairlineStyle();
reed@google.com0c219b62011-02-16 21:31:18 +0000985 }
986
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000987 if (paint.getMaskFilter()) {
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000988 if (!stroke.isHairlineStyle()) {
989 if (stroke.applyToPath(&tmpPath, *pathPtr)) {
990 pathPtr = &tmpPath;
991 stroke.setFillStyle();
992 }
993 }
994
reed@google.com0c219b62011-02-16 21:31:18 +0000995 // avoid possibly allocating a new path in transform if we can
996 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
997
998 // transform the path into device space
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000999 pathPtr->transform(fContext->getMatrix(), devPathPtr);
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001000 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, stroke, paint.getMaskFilter(),
sugoi@google.com12b4e272012-12-06 20:13:11 +00001001 *draw.fClip, draw.fBounder, &grPaint)) {
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001002 SkPaint::Style style = stroke.isHairlineStyle() ? SkPaint::kStroke_Style :
1003 SkPaint::kFill_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001004 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001005 *draw.fClip, draw.fBounder, &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001006 }
reed@google.com69302852011-02-16 18:08:07 +00001007 return;
1008 }
reed@google.com69302852011-02-16 18:08:07 +00001009
sugoi@google.com5f74cf82012-12-17 21:16:45 +00001010 fContext->drawPath(grPaint, *pathPtr, stroke);
reed@google.comac10a2d2010-12-22 21:39:39 +00001011}
1012
bsalomon@google.comfb309512011-11-30 14:13:48 +00001013namespace {
1014
1015inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1016 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1017 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1018 return tilesX * tilesY;
1019}
1020
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001021inline int determine_tile_size(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001022 const SkRect& src,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001023 int maxTextureSize) {
1024 static const int kSmallTileSize = 1 << 10;
1025 if (maxTextureSize <= kSmallTileSize) {
1026 return maxTextureSize;
1027 }
1028
1029 size_t maxTexTotalTileSize;
1030 size_t smallTotalTileSize;
1031
robertphillips@google.combac6b052012-09-28 18:06:49 +00001032 SkIRect iSrc;
1033 src.roundOut(&iSrc);
1034
1035 maxTexTotalTileSize = get_tile_count(iSrc.fLeft,
1036 iSrc.fTop,
1037 iSrc.fRight,
1038 iSrc.fBottom,
1039 maxTextureSize);
1040 smallTotalTileSize = get_tile_count(iSrc.fLeft,
1041 iSrc.fTop,
1042 iSrc.fRight,
1043 iSrc.fBottom,
1044 kSmallTileSize);
1045
bsalomon@google.comfb309512011-11-30 14:13:48 +00001046 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1047 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1048
1049 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1050 return kSmallTileSize;
1051 } else {
1052 return maxTextureSize;
1053 }
1054}
1055}
1056
1057bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +00001058 const GrTextureParams& params,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001059 const SkRect* srcRectPtr) const {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001060 // if bitmap is explictly texture backed then just use the texture
1061 if (NULL != bitmap.getTexture()) {
1062 return false;
1063 }
1064 // if it's larger than the max texture size, then we have no choice but
1065 // tiling
1066 const int maxTextureSize = fContext->getMaxTextureSize();
1067 if (bitmap.width() > maxTextureSize ||
1068 bitmap.height() > maxTextureSize) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001069 return true;
1070 }
1071 // if we are going to have to draw the whole thing, then don't tile
1072 if (NULL == srcRectPtr) {
1073 return false;
1074 }
1075 // if the entire texture is already in our cache then no reason to tile it
bsalomon@google.com0797c2c2012-12-20 15:13:01 +00001076 if (GrIsBitmapInCache(fContext, bitmap, &params)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001077 return false;
1078 }
1079
1080 // At this point we know we could do the draw by uploading the entire bitmap
1081 // as a texture. However, if the texture would be large compared to the
1082 // cache size and we don't require most of it for this draw then tile to
1083 // reduce the amount of upload and cache spill.
1084
1085 // assumption here is that sw bitmap size is a good proxy for its size as
1086 // a texture
1087 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001088 size_t cacheSize;
1089 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001090 if (bmpSize < cacheSize / 2) {
1091 return false;
1092 }
1093
robertphillips@google.combac6b052012-09-28 18:06:49 +00001094 SkScalar fracUsed = SkScalarMul(srcRectPtr->width() / bitmap.width(),
1095 srcRectPtr->height() / bitmap.height());
1096 if (fracUsed <= SK_ScalarHalf) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001097 return true;
1098 } else {
1099 return false;
1100 }
1101}
1102
reed@google.comac10a2d2010-12-22 21:39:39 +00001103void SkGpuDevice::drawBitmap(const SkDraw& draw,
1104 const SkBitmap& bitmap,
1105 const SkIRect* srcRectPtr,
1106 const SkMatrix& m,
1107 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001108
1109 SkRect tmp;
1110 SkRect* tmpPtr = NULL;
1111
1112 // convert from SkIRect to SkRect
1113 if (NULL != srcRectPtr) {
1114 tmp.set(*srcRectPtr);
1115 tmpPtr = &tmp;
1116 }
1117
1118 // We cannot call drawBitmapRect here since 'm' could be anything
1119 this->drawBitmapCommon(draw, bitmap, tmpPtr, m, paint);
1120}
1121
1122void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
1123 const SkBitmap& bitmap,
1124 const SkRect* srcRectPtr,
1125 const SkMatrix& m,
1126 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001127 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001128
robertphillips@google.combac6b052012-09-28 18:06:49 +00001129 SkRect srcRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001130 if (NULL == srcRectPtr) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001131 srcRect.set(0, 0, SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001132 } else {
1133 srcRect = *srcRectPtr;
1134 }
1135
junov@google.comd935cfb2011-06-27 20:48:23 +00001136 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001137 // Convert the bitmap to a shader so that the rect can be drawn
1138 // through drawRect, which supports mask filters.
robertphillips@google.combac6b052012-09-28 18:06:49 +00001139 SkMatrix newM(m);
junov@google.com1d329782011-07-28 20:10:09 +00001140 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001141 const SkBitmap* bitmapPtr = &bitmap;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001142 if (NULL != srcRectPtr) {
1143 SkIRect iSrc;
1144 srcRect.roundOut(&iSrc);
1145 if (!bitmap.extractSubset(&tmp, iSrc)) {
epoger@google.com9ef2d832011-07-01 21:12:20 +00001146 return; // extraction failed
1147 }
1148 bitmapPtr = &tmp;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001149 srcRect.offset(SkIntToScalar(-iSrc.fLeft), SkIntToScalar(-iSrc.fTop));
1150 // The source rect has changed so update the matrix
1151 newM.preTranslate(SkIntToScalar(iSrc.fLeft), SkIntToScalar(iSrc.fTop));
junov@google.comd935cfb2011-06-27 20:48:23 +00001152 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001153
junov@google.comd935cfb2011-06-27 20:48:23 +00001154 SkPaint paintWithTexture(paint);
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001155 paintWithTexture.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
junov@google.comd935cfb2011-06-27 20:48:23 +00001156 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001157
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001158 // Transform 'newM' needs to be concatenated to the current matrix,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001159 // rather than transforming the primitive directly, so that 'newM' will
junov@google.com1d329782011-07-28 20:10:09 +00001160 // also affect the behavior of the mask filter.
1161 SkMatrix drawMatrix;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001162 drawMatrix.setConcat(fContext->getMatrix(), newM);
junov@google.com1d329782011-07-28 20:10:09 +00001163 SkDraw transformedDraw(draw);
1164 transformedDraw.fMatrix = &drawMatrix;
1165
robertphillips@google.combac6b052012-09-28 18:06:49 +00001166 this->drawRect(transformedDraw, srcRect, paintWithTexture);
junov@google.com1d329782011-07-28 20:10:09 +00001167
junov@google.comd935cfb2011-06-27 20:48:23 +00001168 return;
1169 }
1170
bsalomon@google.com5782d712011-01-21 21:03:59 +00001171 GrPaint grPaint;
skia.committer@gmail.com4e73aa12013-01-09 02:01:30 +00001172
humper@google.com9aaf36d2013-01-08 16:08:01 +00001173 bool alphaOnly = !(SkBitmap::kA8_Config == bitmap.config());
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001174 if (!skPaint2GrPaintNoShader(this, paint, alphaOnly, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001175 return;
1176 }
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001177 GrTextureParams params;
1178 params.setBilerp(paint.isFilterBitmap());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001179
robertphillips@google.combac6b052012-09-28 18:06:49 +00001180 if (!this->shouldTileBitmap(bitmap, params, srcRectPtr)) {
bsalomon@google.comfb309512011-11-30 14:13:48 +00001181 // take the simple case
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001182 this->internalDrawBitmap(bitmap, srcRect, m, params, &grPaint);
robertphillips@google.combac6b052012-09-28 18:06:49 +00001183 } else {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001184 this->drawTiledBitmap(bitmap, srcRect, m, params, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001185 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001186}
1187
1188// Break 'bitmap' into several tiles to draw it since it has already
1189// been determined to be too large to fit in VRAM
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001190void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001191 const SkRect& srcRect,
1192 const SkMatrix& m,
1193 const GrTextureParams& params,
1194 GrPaint* grPaint) {
1195 const int maxTextureSize = fContext->getMaxTextureSize();
1196
1197 int tileSize = determine_tile_size(bitmap, srcRect, maxTextureSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001198
reed@google.comac10a2d2010-12-22 21:39:39 +00001199 // compute clip bounds in local coordinates
robertphillips@google.combac6b052012-09-28 18:06:49 +00001200 SkRect clipRect;
reed@google.comac10a2d2010-12-22 21:39:39 +00001201 {
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001202 const GrRenderTarget* rt = fContext->getRenderTarget();
1203 clipRect.setWH(SkIntToScalar(rt->width()), SkIntToScalar(rt->height()));
1204 if (!fContext->getClip()->fClipStack->intersectRectWithClip(&clipRect)) {
1205 return;
1206 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001207 SkMatrix matrix, inverse;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001208 matrix.setConcat(fContext->getMatrix(), m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001209 if (!matrix.invert(&inverse)) {
1210 return;
1211 }
robertphillips@google.combac6b052012-09-28 18:06:49 +00001212 inverse.mapRect(&clipRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001213 }
1214
bsalomon@google.comfb309512011-11-30 14:13:48 +00001215 int nx = bitmap.width() / tileSize;
1216 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001217 for (int x = 0; x <= nx; x++) {
1218 for (int y = 0; y <= ny; y++) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001219 SkRect tileR;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001220 tileR.set(SkIntToScalar(x * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001221 SkIntToScalar(y * tileSize),
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001222 SkIntToScalar((x + 1) * tileSize),
robertphillips@google.combac6b052012-09-28 18:06:49 +00001223 SkIntToScalar((y + 1) * tileSize));
1224
1225 if (!SkRect::Intersects(tileR, clipRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001226 continue;
1227 }
1228
robertphillips@google.combac6b052012-09-28 18:06:49 +00001229 if (!tileR.intersect(srcRect)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001230 continue;
1231 }
1232
1233 SkBitmap tmpB;
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001234 SkIRect iTileR;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001235 tileR.roundOut(&iTileR);
1236 if (bitmap.extractSubset(&tmpB, iTileR)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001237 // now offset it to make it "local" to our tmp bitmap
robertphillips@google.combac6b052012-09-28 18:06:49 +00001238 tileR.offset(SkIntToScalar(-iTileR.fLeft), SkIntToScalar(-iTileR.fTop));
reed@google.comac10a2d2010-12-22 21:39:39 +00001239 SkMatrix tmpM(m);
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +00001240 tmpM.preTranslate(SkIntToScalar(iTileR.fLeft),
robertphillips@google.comffad46b2012-10-01 14:32:51 +00001241 SkIntToScalar(iTileR.fTop));
1242
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001243 this->internalDrawBitmap(tmpB, tileR, tmpM, params, grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001244 }
1245 }
1246 }
1247}
1248
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001249namespace {
1250
1251bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1252 // detect pixel disalignment
1253 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1254 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
rmistry@google.comd6176b02012-08-23 18:14:13 +00001255 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001256 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1257 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1258 COLOR_BLEED_TOLERANCE &&
1259 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1260 COLOR_BLEED_TOLERANCE) {
1261 return true;
1262 }
1263 return false;
1264}
1265
1266bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1267 const SkMatrix& m) {
1268 // Only gets called if hasAlignedSamples returned false.
1269 // So we can assume that sampling is axis aligned but not texel aligned.
1270 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
rmistry@google.comd6176b02012-08-23 18:14:13 +00001271 SkRect innerSrcRect(srcRect), innerTransformedRect,
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001272 outerTransformedRect(transformedRect);
1273 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1274 m.mapRect(&innerTransformedRect, innerSrcRect);
1275
1276 // The gap between outerTransformedRect and innerTransformedRect
1277 // represents the projection of the source border area, which is
1278 // problematic for color bleeding. We must check whether any
1279 // destination pixels sample the border area.
1280 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1281 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1282 SkIRect outer, inner;
1283 outerTransformedRect.round(&outer);
1284 innerTransformedRect.round(&inner);
1285 // If the inner and outer rects round to the same result, it means the
1286 // border does not overlap any pixel centers. Yay!
1287 return inner != outer;
1288}
1289
1290} // unnamed namespace
1291
reed@google.comac10a2d2010-12-22 21:39:39 +00001292/*
1293 * This is called by drawBitmap(), which has to handle images that may be too
1294 * large to be represented by a single texture.
1295 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001296 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1297 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001298 */
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001299void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
robertphillips@google.combac6b052012-09-28 18:06:49 +00001300 const SkRect& srcRect,
reed@google.comac10a2d2010-12-22 21:39:39 +00001301 const SkMatrix& m,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001302 const GrTextureParams& params,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001303 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001304 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1305 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001306
reed@google.com9c49bc32011-07-07 13:42:37 +00001307 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001308 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001309 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001310 return;
1311 }
1312
reed@google.comac10a2d2010-12-22 21:39:39 +00001313 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001314 SkAutoCachedTexture act(this, bitmap, &params, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001315 if (NULL == texture) {
1316 return;
1317 }
1318
robertphillips@google.combac6b052012-09-28 18:06:49 +00001319 GrRect dstRect(srcRect);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001320 GrRect paintRect;
robertphillips@google.combac6b052012-09-28 18:06:49 +00001321 SkScalar wInv = SkScalarInvert(SkIntToScalar(bitmap.width()));
1322 SkScalar hInv = SkScalarInvert(SkIntToScalar(bitmap.height()));
1323 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1324 SkScalarMul(srcRect.fTop, hInv),
1325 SkScalarMul(srcRect.fRight, wInv),
1326 SkScalarMul(srcRect.fBottom, hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001327
rmistry@google.comd6176b02012-08-23 18:14:13 +00001328 bool needsTextureDomain = false;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001329 if (params.isBilerp()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001330 // Need texture domain if drawing a sub rect.
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +00001331 needsTextureDomain = srcRect.width() < bitmap.width() ||
robertphillips@google.combac6b052012-09-28 18:06:49 +00001332 srcRect.height() < bitmap.height();
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001333 if (m.rectStaysRect() && fContext->getMatrix().rectStaysRect()) {
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001334 // sampling is axis-aligned
robertphillips@google.combac6b052012-09-28 18:06:49 +00001335 GrRect transformedRect;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001336 SkMatrix srcToDeviceMatrix(m);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001337 srcToDeviceMatrix.postConcat(fContext->getMatrix());
robertphillips@google.combac6b052012-09-28 18:06:49 +00001338 srcToDeviceMatrix.mapRect(&transformedRect, srcRect);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001339
robertphillips@google.combac6b052012-09-28 18:06:49 +00001340 if (hasAlignedSamples(srcRect, transformedRect)) {
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001341 // We could also turn off filtering here (but we already did a cache lookup with
1342 // params).
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001343 needsTextureDomain = false;
1344 } else {
1345 needsTextureDomain = needsTextureDomain &&
robertphillips@google.combac6b052012-09-28 18:06:49 +00001346 mayColorBleed(srcRect, transformedRect, m);
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001347 }
1348 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001349 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001350
1351 GrRect textureDomain = GrRect::MakeEmpty();
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001352 SkAutoTUnref<GrEffectRef> effect;
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001353 if (needsTextureDomain) {
1354 // Use a constrained texture domain to avoid color bleeding
bsalomon@google.com81712882012-11-01 17:12:34 +00001355 SkScalar left, top, right, bottom;
1356 if (srcRect.width() > SK_Scalar1) {
1357 SkScalar border = SK_ScalarHalf / bitmap.width();
junov@google.com6acc9b32011-05-16 18:32:07 +00001358 left = paintRect.left() + border;
1359 right = paintRect.right() - border;
1360 } else {
bsalomon@google.com81712882012-11-01 17:12:34 +00001361 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
junov@google.com6acc9b32011-05-16 18:32:07 +00001362 }
bsalomon@google.com81712882012-11-01 17:12:34 +00001363 if (srcRect.height() > SK_Scalar1) {
1364 SkScalar border = SK_ScalarHalf / bitmap.height();
junov@google.com6acc9b32011-05-16 18:32:07 +00001365 top = paintRect.top() + border;
1366 bottom = paintRect.bottom() - border;
1367 } else {
bsalomon@google.com81712882012-11-01 17:12:34 +00001368 top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom());
junov@google.com6acc9b32011-05-16 18:32:07 +00001369 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001370 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +00001371 effect.reset(GrTextureDomainEffect::Create(texture,
1372 SkMatrix::I(),
1373 textureDomain,
1374 GrTextureDomainEffect::kClamp_WrapMode,
1375 params.isBilerp()));
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001376 } else {
bsalomon@google.com68b58c92013-01-17 16:50:08 +00001377 effect.reset(GrSimpleTextureEffect::Create(texture, SkMatrix::I(), params));
junov@google.com6acc9b32011-05-16 18:32:07 +00001378 }
bsalomon@google.com08283af2012-10-26 13:01:20 +00001379 grPaint->colorStage(kBitmapTextureIdx)->setEffect(effect);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001380 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001381}
1382
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001383namespace {
1384
bsalomon@google.comf271cc72012-10-24 19:35:13 +00001385void apply_effect(GrContext* context,
1386 GrTexture* srcTexture,
1387 GrTexture* dstTexture,
1388 const GrRect& rect,
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001389 GrEffectRef* effect) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001390 SkASSERT(srcTexture && srcTexture->getContext() == context);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001391 GrContext::AutoMatrix am;
1392 am.setIdentity(context);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001393 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001394 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001395
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001396 GrPaint paint;
bsalomon@google.comdbe49f72012-11-05 16:36:02 +00001397 paint.colorStage(0)->setEffect(effect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001398 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001399}
1400
1401};
1402
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001403static SkBitmap wrap_texture(GrTexture* texture) {
1404 SkBitmap result;
1405 bool dummy;
1406 SkBitmap::Config config = grConfig2skConfig(texture->config(), &dummy);
1407 result.setConfig(config, texture->width(), texture->height());
1408 result.setPixelRef(SkNEW_ARGS(SkGrPixelRef, (texture)))->unref();
1409 return result;
1410}
1411
1412static bool filter_texture(SkDevice* device, GrContext* context,
1413 GrTexture* texture, SkImageFilter* filter,
1414 int w, int h, SkBitmap* result) {
reed@google.com8926b162012-03-23 15:36:36 +00001415 GrAssert(filter);
senorblanco@chromium.org9c397442012-09-27 21:57:45 +00001416 SkDeviceImageFilterProxy proxy(device);
reed@google.com8926b162012-03-23 15:36:36 +00001417
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001418 GrTextureDesc desc;
1419 desc.fFlags = kRenderTarget_GrTextureFlagBit,
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001420 desc.fWidth = w;
1421 desc.fHeight = h;
bsalomon@google.com0342a852012-08-20 19:22:38 +00001422 desc.fConfig = kRGBA_8888_GrPixelConfig;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001423 GrEffectRef* effect;
reed@google.com8926b162012-03-23 15:36:36 +00001424
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001425 if (filter->canFilterImageGPU()) {
senorblanco@chromium.org985fa792012-10-24 15:14:26 +00001426 // Save the render target and set it to NULL, so we don't accidentally draw to it in the
1427 // filter. Also set the clip wide open and the matrix to identity.
1428 GrContext::AutoWideOpenIdentityDraw awo(context, NULL);
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001429 return filter->filterImageGPU(&proxy, wrap_texture(texture), result);
bsalomon@google.com021fc732012-10-25 12:47:42 +00001430 } else if (filter->asNewEffect(&effect, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001431 GrAutoScratchTexture dst(context, desc);
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001432 SkRect r = SkRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h));
1433 apply_effect(context, texture, dst.texture(), r, effect);
1434 SkAutoTUnref<GrTexture> resultTex(dst.detach());
bsalomon@google.com021fc732012-10-25 12:47:42 +00001435 effect->unref();
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001436 *result = wrap_texture(resultTex.get());
1437 return true;
1438 } else {
1439 return false;
reed@google.com8926b162012-03-23 15:36:36 +00001440 }
reed@google.com8926b162012-03-23 15:36:36 +00001441}
1442
reed@google.comac10a2d2010-12-22 21:39:39 +00001443void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001444 int left, int top, const SkPaint& paint) {
1445 // drawSprite is defined to be in device coords.
1446 CHECK_SHOULD_DRAW(draw, true);
reed@google.comac10a2d2010-12-22 21:39:39 +00001447
reed@google.com8926b162012-03-23 15:36:36 +00001448 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001449 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1450 return;
1451 }
1452
reed@google.com76dd2772012-01-05 21:15:07 +00001453 int w = bitmap.width();
1454 int h = bitmap.height();
1455
bsalomon@google.com5782d712011-01-21 21:03:59 +00001456 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001457 if(!skPaint2GrPaintNoShader(this, paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001458 return;
1459 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001460
bsalomon@google.com08283af2012-10-26 13:01:20 +00001461 GrEffectStage* stage = grPaint.colorStage(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001462
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001463 GrTexture* texture;
bsalomon@google.com08283af2012-10-26 13:01:20 +00001464 stage->reset();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001465 // draw sprite uses the default texture params
1466 SkAutoCachedTexture act(this, bitmap, NULL, &texture);
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001467 grPaint.colorStage(kBitmapTextureIdx)->setEffect(
bsalomon@google.com68b58c92013-01-17 16:50:08 +00001468 GrSimpleTextureEffect::Create(texture, SkMatrix::I()))->unref();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001469
reed@google.com8926b162012-03-23 15:36:36 +00001470 SkImageFilter* filter = paint.getImageFilter();
1471 if (NULL != filter) {
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001472 SkBitmap filterBitmap;
1473 if (filter_texture(this, fContext, texture, filter, w, h, &filterBitmap)) {
bsalomon@google.com0ac6af42013-01-16 15:16:18 +00001474 grPaint.colorStage(kBitmapTextureIdx)->setEffect(
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001475 GrSimpleTextureEffect::Create((GrTexture*) filterBitmap.getTexture(), SkMatrix::I()))->unref();
1476 texture = (GrTexture*) filterBitmap.getTexture();
1477 w = filterBitmap.width();
1478 h = filterBitmap.height();
reed@google.com8926b162012-03-23 15:36:36 +00001479 }
reed@google.com76dd2772012-01-05 21:15:07 +00001480 }
rmistry@google.comd6176b02012-08-23 18:14:13 +00001481
bsalomon@google.com5782d712011-01-21 21:03:59 +00001482 fContext->drawRectToRect(grPaint,
bsalomon@google.com81712882012-11-01 17:12:34 +00001483 GrRect::MakeXYWH(SkIntToScalar(left),
1484 SkIntToScalar(top),
1485 SkIntToScalar(w),
1486 SkIntToScalar(h)),
1487 GrRect::MakeWH(SK_Scalar1 * w / texture->width(),
1488 SK_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001489}
1490
reed@google.com33535f32012-09-25 15:37:50 +00001491void SkGpuDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1492 const SkRect* src, const SkRect& dst,
1493 const SkPaint& paint) {
robertphillips@google.combac6b052012-09-28 18:06:49 +00001494 SkMatrix matrix;
1495 SkRect bitmapBounds, tmpSrc;
1496
1497 bitmapBounds.set(0, 0,
1498 SkIntToScalar(bitmap.width()),
1499 SkIntToScalar(bitmap.height()));
1500
reed@google.com33535f32012-09-25 15:37:50 +00001501 // Compute matrix from the two rectangles
robertphillips@google.combac6b052012-09-28 18:06:49 +00001502 if (NULL != src) {
1503 tmpSrc = *src;
1504 } else {
1505 tmpSrc = bitmapBounds;
1506 }
1507 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1508
1509 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
1510 if (NULL != src) {
1511 if (!bitmapBounds.contains(tmpSrc)) {
1512 if (!tmpSrc.intersect(bitmapBounds)) {
1513 return; // nothing to draw
reed@google.com33535f32012-09-25 15:37:50 +00001514 }
reed@google.com33535f32012-09-25 15:37:50 +00001515 }
reed@google.com33535f32012-09-25 15:37:50 +00001516 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +00001517
robertphillips@google.combac6b052012-09-28 18:06:49 +00001518 this->drawBitmapCommon(draw, bitmap, &tmpSrc, matrix, paint);
reed@google.com33535f32012-09-25 15:37:50 +00001519}
1520
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001521void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001522 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001523 // clear of the source device must occur before CHECK_SHOULD_DRAW
1524 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1525 if (dev->fNeedClear) {
1526 // TODO: could check here whether we really need to draw at all
1527 dev->clear(0x0);
1528 }
1529
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001530 // drawDevice is defined to be in device coords.
1531 CHECK_SHOULD_DRAW(draw, true);
reed@google.comac10a2d2010-12-22 21:39:39 +00001532
bsalomon@google.com5782d712011-01-21 21:03:59 +00001533 GrPaint grPaint;
bsalomon@google.com08283af2012-10-26 13:01:20 +00001534 grPaint.colorStage(kBitmapTextureIdx)->reset();
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001535 if (!dev->bindDeviceAsTexture(&grPaint) ||
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001536 !skPaint2GrPaintNoShader(this, paint, true, false, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001537 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001538 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001539
bsalomon@google.com6340a412013-01-22 19:55:59 +00001540 GrTexture* devTex = (*grPaint.getColorStage(kBitmapTextureIdx).getEffect())->texture(0);
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001541 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001542
senorblanco@chromium.org514b9222013-01-18 21:53:12 +00001543 const SkBitmap& bm = dev->accessBitmap(false);
1544 int w = bm.width();
1545 int h = bm.height();
1546
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001547 SkImageFilter* filter = paint.getImageFilter();
1548 if (NULL != filter) {
1549 SkBitmap filterBitmap;
1550 if (filter_texture(this, fContext, devTex, filter, w, h, &filterBitmap)) {
1551 grPaint.colorStage(kBitmapTextureIdx)->setEffect(
1552 GrSimpleTextureEffect::Create((GrTexture*) filterBitmap.getTexture(), SkMatrix::I()))->unref();
1553 devTex = (GrTexture*) filterBitmap.getTexture();
1554 w = filterBitmap.width();
1555 h = filterBitmap.height();
1556 }
1557 }
1558
bsalomon@google.com81712882012-11-01 17:12:34 +00001559 GrRect dstRect = GrRect::MakeXYWH(SkIntToScalar(x),
1560 SkIntToScalar(y),
1561 SkIntToScalar(w),
1562 SkIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001563
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001564 // The device being drawn may not fill up its texture (saveLayer uses
1565 // the approximate ).
bsalomon@google.com81712882012-11-01 17:12:34 +00001566 GrRect srcRect = GrRect::MakeWH(SK_Scalar1 * w / devTex->width(),
1567 SK_Scalar1 * h / devTex->height());
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001568
1569 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001570}
1571
reed@google.com8926b162012-03-23 15:36:36 +00001572bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
bsalomon@google.com8ea78d82012-10-24 20:11:30 +00001573 if (!filter->asNewEffect(NULL, NULL) &&
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +00001574 !filter->canFilterImageGPU()) {
reed@google.com76dd2772012-01-05 21:15:07 +00001575 return false;
1576 }
reed@google.com8926b162012-03-23 15:36:36 +00001577 return true;
1578}
1579
1580bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1581 const SkMatrix& ctm,
1582 SkBitmap* result, SkIPoint* offset) {
1583 // want explicitly our impl, so guard against a subclass of us overriding it
1584 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001585 return false;
1586 }
reed@google.com8926b162012-03-23 15:36:36 +00001587
1588 SkAutoLockPixels alp(src, !src.getTexture());
1589 if (!src.getTexture() && !src.readyToDraw()) {
1590 return false;
1591 }
1592
1593 GrPaint paint;
reed@google.com8926b162012-03-23 15:36:36 +00001594
reed@google.com8926b162012-03-23 15:36:36 +00001595 GrTexture* texture;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +00001596 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1597 // must be pushed upstack.
1598 SkAutoCachedTexture act(this, src, NULL, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001599
senorblanco@chromium.orgc2594f42013-01-30 19:08:47 +00001600 return filter_texture(this, fContext, texture, filter, src.width(), src.height(), result);
reed@google.com76dd2772012-01-05 21:15:07 +00001601}
1602
reed@google.comac10a2d2010-12-22 21:39:39 +00001603///////////////////////////////////////////////////////////////////////////////
1604
1605// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001606static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001607 kTriangles_GrPrimitiveType,
1608 kTriangleStrip_GrPrimitiveType,
1609 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001610};
1611
1612void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1613 int vertexCount, const SkPoint vertices[],
1614 const SkPoint texs[], const SkColor colors[],
1615 SkXfermode* xmode,
1616 const uint16_t indices[], int indexCount,
1617 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001618 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001619
bsalomon@google.com5782d712011-01-21 21:03:59 +00001620 GrPaint grPaint;
bsalomon@google.com5782d712011-01-21 21:03:59 +00001621 // we ignore the shader if texs is null.
1622 if (NULL == texs) {
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001623 if (!skPaint2GrPaintNoShader(this, paint, false, NULL == colors, &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001624 return;
1625 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001626 } else {
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001627 if (!skPaint2GrPaintShader(this, paint, NULL == colors, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001628 return;
1629 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001630 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001631
1632 if (NULL != xmode && NULL != texs && NULL != colors) {
reed@google.com8d3cd7a2013-01-30 21:36:11 +00001633 if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001634 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1635#if 0
1636 return
1637#endif
1638 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001639 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001640
bsalomon@google.com498776a2011-08-16 19:20:44 +00001641 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1642 if (NULL != colors) {
1643 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001644 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001645 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001646 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001647 }
1648 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001649 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001650 fContext->drawVertices(grPaint,
1651 gVertexMode2PrimitiveType[vmode],
1652 vertexCount,
1653 (GrPoint*) vertices,
1654 (GrPoint*) texs,
1655 colors,
1656 indices,
1657 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001658}
1659
1660///////////////////////////////////////////////////////////////////////////////
1661
1662static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001663 GrFontScaler* scaler = (GrFontScaler*)data;
1664 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001665}
1666
1667static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1668 void* auxData;
1669 GrFontScaler* scaler = NULL;
1670 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1671 scaler = (GrFontScaler*)auxData;
1672 }
1673 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001674 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001675 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1676 }
1677 return scaler;
1678}
1679
1680static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1681 SkFixed fx, SkFixed fy,
1682 const SkGlyph& glyph) {
1683 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1684
bungeman@google.com15865a72012-01-11 16:28:04 +00001685 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001686
1687 if (NULL == procs->fFontScaler) {
1688 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1689 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001690
bungeman@google.com15865a72012-01-11 16:28:04 +00001691 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1692 glyph.getSubXFixed(),
1693 glyph.getSubYFixed()),
1694 SkFixedFloorToFixed(fx),
1695 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001696 procs->fFontScaler);
1697}
1698
bsalomon@google.com5782d712011-01-21 21:03:59 +00001699SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001700
1701 // deferred allocation
1702 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001703 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001704 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1705 fDrawProcs->fContext = fContext;
1706 }
1707
1708 // init our (and GL's) state
1709 fDrawProcs->fTextContext = context;
1710 fDrawProcs->fFontScaler = NULL;
1711 return fDrawProcs;
1712}
1713
1714void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1715 size_t byteLength, SkScalar x, SkScalar y,
1716 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001717 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001718
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001719 if (fContext->getMatrix().hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001720 // this guy will just call our drawPath()
1721 draw.drawText((const char*)text, byteLength, x, y, paint);
1722 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001723 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001724
1725 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001726 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001727 return;
1728 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001729 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001730 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001731 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1732 }
1733}
1734
1735void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1736 size_t byteLength, const SkScalar pos[],
1737 SkScalar constY, int scalarsPerPos,
1738 const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001739 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001740
bsalomon@google.com3ab43d52012-10-11 19:39:09 +00001741 if (fContext->getMatrix().hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001742 // this guy will just call our drawPath()
1743 draw.drawPosText((const char*)text, byteLength, pos, constY,
1744 scalarsPerPos, paint);
1745 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001746 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001747
1748 GrPaint grPaint;
bsalomon@google.come197cbf2013-01-14 16:46:26 +00001749 if (!skPaint2GrPaintShader(this, paint, true, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001750 return;
1751 }
bsalomon@google.com0e354aa2012-10-08 20:44:25 +00001752 GrTextContext context(fContext, grPaint);
tomhudson@google.com375ff852012-06-29 18:37:57 +00001753 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001754 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1755 scalarsPerPos, paint);
1756 }
1757}
1758
1759void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1760 size_t len, const SkPath& path,
1761 const SkMatrix* m, const SkPaint& paint) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +00001762 CHECK_SHOULD_DRAW(draw, false);
reed@google.comac10a2d2010-12-22 21:39:39 +00001763
1764 SkASSERT(draw.fDevice == this);
1765 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1766}
1767
1768///////////////////////////////////////////////////////////////////////////////
1769
reed@google.comf67e4cf2011-03-15 20:56:58 +00001770bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1771 if (!paint.isLCDRenderText()) {
1772 // we're cool with the paint as is
1773 return false;
1774 }
1775
1776 if (paint.getShader() ||
1777 paint.getXfermode() || // unless its srcover
1778 paint.getMaskFilter() ||
1779 paint.getRasterizer() ||
1780 paint.getColorFilter() ||
1781 paint.getPathEffect() ||
1782 paint.isFakeBoldText() ||
1783 paint.getStyle() != SkPaint::kFill_Style) {
1784 // turn off lcd
1785 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1786 flags->fHinting = paint.getHinting();
1787 return true;
1788 }
1789 // we're cool with the paint as is
1790 return false;
1791}
1792
reed@google.com75d939b2011-12-07 15:07:23 +00001793void SkGpuDevice::flush() {
bsalomon@google.coma6926b12012-10-10 15:25:50 +00001794 DO_DEFERRED_CLEAR();
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001795 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001796}
1797
reed@google.comf67e4cf2011-03-15 20:56:58 +00001798///////////////////////////////////////////////////////////////////////////////
1799
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001800SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1801 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001802 bool isOpaque,
1803 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001804 GrTextureDesc desc;
1805 desc.fConfig = fRenderTarget->config();
1806 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1807 desc.fWidth = width;
1808 desc.fHeight = height;
1809 desc.fSampleCnt = fRenderTarget->numSamples();
1810
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001811 SkAutoTUnref<GrTexture> texture;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001812 // Skia's convention is to only clear a device if it is non-opaque.
1813 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001814
1815#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1816 // layers are never draw in repeat modes, so we can request an approx
1817 // match and ignore any padding.
bsalomon@google.com0797c2c2012-12-20 15:13:01 +00001818 const GrContext::ScratchTexMatch match = (kSaveLayer_Usage == usage) ?
1819 GrContext::kApprox_ScratchTexMatch :
1820 GrContext::kExact_ScratchTexMatch;
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001821 texture.reset(fContext->lockAndRefScratchTexture(desc, match));
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001822#else
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001823 texture.reset(fContext->createUncachedTexture(desc, NULL, 0));
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001824#endif
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001825 if (NULL != texture.get()) {
1826 return SkNEW_ARGS(SkGpuDevice,(fContext, texture, needClear));
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001827 } else {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001828 GrPrintf("---- failed to create compatible device texture [%d %d]\n", width, height);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001829 return NULL;
1830 }
1831}
1832
1833SkGpuDevice::SkGpuDevice(GrContext* context,
1834 GrTexture* texture,
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001835 bool needClear)
robertphillips@google.com641f8b12012-07-31 19:15:58 +00001836 : SkDevice(make_bitmap(context, texture->asRenderTarget())) {
1837
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001838 GrAssert(texture && texture->asRenderTarget());
bsalomon@google.com8090e652012-08-28 15:07:11 +00001839 // This constructor is called from onCreateCompatibleDevice. It has locked the RT in the texture
1840 // cache. We pass true for the third argument so that it will get unlocked.
1841 this->initFromRenderTarget(context, texture->asRenderTarget(), true);
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001842 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001843}