blob: 4e3baa3653c54411e081a7ec6312f6ba8534352e [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.com898e7b52012-06-01 20:42:15 +000010#include "effects/GrGradientEffects.h"
twiz@google.com58071162012-07-18 21:41:50 +000011#include "effects/GrColorTableEffect.h"
tomhudson@google.com2f68e762012-07-17 18:43:21 +000012#include "effects/GrTextureDomainEffect.h"
epoger@google.comec3ed6a2011-07-28 14:26:00 +000013
reed@google.comac10a2d2010-12-22 21:39:39 +000014#include "GrContext.h"
15#include "GrTextContext.h"
16
robertphillips@google.come9c04692012-06-29 00:30:13 +000017#include "SkGrTexturePixelRef.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000018
Scroggo97c88c22011-05-11 14:05:25 +000019#include "SkColorFilter.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000020#include "SkDrawProcs.h"
21#include "SkGlyphCache.h"
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +000022#include "SkImageFilter.h"
reed@google.comfe626382011-09-21 13:50:35 +000023#include "SkTLazy.h"
reed@google.comc9aa5872011-04-05 21:05:37 +000024#include "SkUtils.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000025
bsalomon@google.com06cd7322012-03-30 18:45:35 +000026#define CACHE_COMPATIBLE_DEVICE_TEXTURES 1
reed@google.comac10a2d2010-12-22 21:39:39 +000027
28#if 0
29 extern bool (*gShouldDrawProc)();
30 #define CHECK_SHOULD_DRAW(draw) \
31 do { \
32 if (gShouldDrawProc && !gShouldDrawProc()) return; \
33 this->prepareRenderTarget(draw); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000034 GrAssert(!fNeedClear) \
reed@google.comac10a2d2010-12-22 21:39:39 +000035 } while (0)
36#else
bsalomon@google.com06cd7322012-03-30 18:45:35 +000037 #define CHECK_SHOULD_DRAW(draw) this->prepareRenderTarget(draw); \
38 GrAssert(!fNeedClear)
reed@google.comac10a2d2010-12-22 21:39:39 +000039#endif
40
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000041// we use the same texture slot on GrPaint for bitmaps and shaders
42// (since drawBitmap, drawSprite, and drawDevice ignore skia's shader)
43enum {
44 kBitmapTextureIdx = 0,
twiz@google.com58071162012-07-18 21:41:50 +000045 kShaderTextureIdx = 0,
46 kColorFilterTextureIdx = 1
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000047};
48
reed@google.comcde92112011-07-06 20:00:52 +000049
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000050#define MAX_BLUR_SIGMA 4.0f
51// FIXME: This value comes from from SkBlurMaskFilter.cpp.
52// Should probably be put in a common header someplace.
53#define MAX_BLUR_RADIUS SkIntToScalar(128)
54// This constant approximates the scaling done in the software path's
55// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
56// IMHO, it actually should be 1: we blur "less" than we should do
57// according to the CSS and canvas specs, simply because Safari does the same.
58// Firefox used to do the same too, until 4.0 where they fixed it. So at some
59// point we should probably get rid of these scaling constants and rebaseline
60// all the blur tests.
61#define BLUR_SIGMA_SCALE 0.6f
junov@chromium.orgf32a9b62012-03-16 20:54:17 +000062// This constant represents the screen alignment criterion in texels for
63// requiring texture domain clamping to prevent color bleeding when drawing
64// a sub region of a larger source image.
65#define COLOR_BLEED_TOLERANCE SkFloatToScalar(0.001f)
bsalomon@google.com06cd7322012-03-30 18:45:35 +000066
67#define DO_DEFERRED_CLEAR \
68 do { \
69 if (fNeedClear) { \
bsalomon@google.com730ca3b2012-04-03 13:25:12 +000070 this->clear(0x0); \
bsalomon@google.com06cd7322012-03-30 18:45:35 +000071 fNeedClear = false; \
72 } \
73 } while (false) \
74
reed@google.comac10a2d2010-12-22 21:39:39 +000075///////////////////////////////////////////////////////////////////////////////
76
reed@google.comb0a34d82012-07-11 19:57:55 +000077#define CHECK_FOR_NODRAW_ANNOTATION(paint) \
78 do { if (paint.isNoDrawAnnotation()) { return; } } while (0)
79
80///////////////////////////////////////////////////////////////////////////////
81
82
bsalomon@google.com84405e02012-03-05 19:57:21 +000083class SkGpuDevice::SkAutoCachedTexture : public ::SkNoncopyable {
84public:
85 SkAutoCachedTexture() { }
86 SkAutoCachedTexture(SkGpuDevice* device,
87 const SkBitmap& bitmap,
88 const GrSamplerState* sampler,
89 GrTexture** texture) {
90 GrAssert(texture);
91 *texture = this->set(device, bitmap, sampler);
reed@google.comac10a2d2010-12-22 21:39:39 +000092 }
reed@google.comac10a2d2010-12-22 21:39:39 +000093
bsalomon@google.com84405e02012-03-05 19:57:21 +000094 ~SkAutoCachedTexture() {
95 if (fTex.texture()) {
rileya@google.com24f3ad12012-07-18 21:47:40 +000096 GrUnlockCachedBitmapTexture(fDevice->context(), fTex);
bsalomon@google.com84405e02012-03-05 19:57:21 +000097 }
reed@google.comac10a2d2010-12-22 21:39:39 +000098 }
bsalomon@google.com84405e02012-03-05 19:57:21 +000099
100 GrTexture* set(SkGpuDevice* device,
101 const SkBitmap& bitmap,
102 const GrSamplerState* sampler) {
103 if (fTex.texture()) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000104 GrUnlockCachedBitmapTexture(fDevice->context(), fTex);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000105 }
106 fDevice = device;
107 GrTexture* texture = (GrTexture*)bitmap.getTexture();
108 if (texture) {
109 // return the native texture
110 fTex.reset();
111 } else {
112 // look it up in our cache
rileya@google.com24f3ad12012-07-18 21:47:40 +0000113 fTex = GrLockCachedBitmapTexture(device->context(), bitmap, sampler);
bsalomon@google.com84405e02012-03-05 19:57:21 +0000114 texture = fTex.texture();
115 }
116 return texture;
117 }
118
119private:
120 SkGpuDevice* fDevice;
121 GrContext::TextureCacheEntry fTex;
122};
reed@google.comac10a2d2010-12-22 21:39:39 +0000123
124///////////////////////////////////////////////////////////////////////////////
125
126bool gDoTraceDraw;
127
128struct GrSkDrawProcs : public SkDrawProcs {
129public:
130 GrContext* fContext;
131 GrTextContext* fTextContext;
132 GrFontScaler* fFontScaler; // cached in the skia glyphcache
133};
134
135///////////////////////////////////////////////////////////////////////////////
136
reed@google.comaf951c92011-06-16 19:10:39 +0000137static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
138 switch (config) {
139 case kAlpha_8_GrPixelConfig:
140 *isOpaque = false;
141 return SkBitmap::kA8_Config;
142 case kRGB_565_GrPixelConfig:
143 *isOpaque = true;
144 return SkBitmap::kRGB_565_Config;
145 case kRGBA_4444_GrPixelConfig:
146 *isOpaque = false;
147 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000148 case kSkia8888_PM_GrPixelConfig:
149 // we don't currently have a way of knowing whether
150 // a 8888 is opaque based on the config.
151 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000152 return SkBitmap::kARGB_8888_Config;
153 default:
154 *isOpaque = false;
155 return SkBitmap::kNo_Config;
156 }
157}
reed@google.comac10a2d2010-12-22 21:39:39 +0000158
reed@google.comaf951c92011-06-16 19:10:39 +0000159static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000160 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000161
162 bool isOpaque;
163 SkBitmap bitmap;
164 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
165 renderTarget->width(), renderTarget->height());
166 bitmap.setIsOpaque(isOpaque);
167 return bitmap;
168}
169
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000170SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000171: SkDevice(make_bitmap(context, texture->asRenderTarget()))
172, fClipStack(NULL) {
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000173 this->initFromRenderTarget(context, texture->asRenderTarget());
174}
175
reed@google.comaf951c92011-06-16 19:10:39 +0000176SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000177: SkDevice(make_bitmap(context, renderTarget))
178, fClipStack(NULL) {
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000179 this->initFromRenderTarget(context, renderTarget);
180}
181
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000182void SkGpuDevice::initFromRenderTarget(GrContext* context,
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000183 GrRenderTarget* renderTarget) {
reed@google.comaf951c92011-06-16 19:10:39 +0000184 fNeedPrepareRenderTarget = false;
185 fDrawProcs = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000186
reed@google.comaf951c92011-06-16 19:10:39 +0000187 fContext = context;
188 fContext->ref();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000189
reed@google.comaf951c92011-06-16 19:10:39 +0000190 fTexture = NULL;
191 fRenderTarget = NULL;
192 fNeedClear = false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000193
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000194 GrAssert(NULL != renderTarget);
195 fRenderTarget = renderTarget;
196 fRenderTarget->ref();
197 // if this RT is also a texture, hold a ref on it
198 fTexture = fRenderTarget->asTexture();
199 SkSafeRef(fTexture);
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000200
201 // Create a pixel ref for the underlying SkBitmap. We prefer a texture pixel
202 // ref to a render target pixel reft. The pixel ref may get ref'ed outside
203 // the device via accessBitmap. This external ref may outlive the device.
204 // Since textures own their render targets (but not vice-versa) we
205 // are ensuring that both objects will live as long as the pixel ref.
206 SkPixelRef* pr;
207 if (fTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000208 pr = SkNEW_ARGS(SkGrTexturePixelRef, (fTexture));
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000209 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000210 pr = SkNEW_ARGS(SkGrRenderTargetPixelRef, (fRenderTarget));
bsalomon@google.comd9ce1252012-01-24 02:31:42 +0000211 }
reed@google.comaf951c92011-06-16 19:10:39 +0000212 this->setPixelRef(pr, 0)->unref();
213}
214
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000215SkGpuDevice::SkGpuDevice(GrContext* context,
216 SkBitmap::Config config,
217 int width,
218 int height)
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000219 : SkDevice(config, width, height, false /*isOpaque*/)
220 , fClipStack(NULL) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000221 fNeedPrepareRenderTarget = false;
222 fDrawProcs = NULL;
223
reed@google.com7b201d22011-01-11 18:59:23 +0000224 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000225 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000226
reed@google.comac10a2d2010-12-22 21:39:39 +0000227 fTexture = NULL;
228 fRenderTarget = NULL;
229 fNeedClear = false;
230
reed@google.comaf951c92011-06-16 19:10:39 +0000231 if (config != SkBitmap::kRGB_565_Config) {
232 config = SkBitmap::kARGB_8888_Config;
233 }
234 SkBitmap bm;
235 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000236
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000237 GrTextureDesc desc;
238 desc.fFlags = kRenderTarget_GrTextureFlagBit;
239 desc.fWidth = width;
240 desc.fHeight = height;
rileya@google.com24f3ad12012-07-18 21:47:40 +0000241 desc.fConfig = SkBitmapConfig2GrPixelConfig(bm.config());
reed@google.comac10a2d2010-12-22 21:39:39 +0000242
reed@google.comaf951c92011-06-16 19:10:39 +0000243 fTexture = fContext->createUncachedTexture(desc, NULL, 0);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000244
reed@google.comaf951c92011-06-16 19:10:39 +0000245 if (NULL != fTexture) {
246 fRenderTarget = fTexture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000247 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000248
reed@google.comaf951c92011-06-16 19:10:39 +0000249 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000250
reed@google.comaf951c92011-06-16 19:10:39 +0000251 // wrap the bitmap with a pixelref to expose our texture
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000252 SkGrTexturePixelRef* pr = SkNEW_ARGS(SkGrTexturePixelRef, (fTexture));
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000253 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000254 } else {
255 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
256 width, height);
257 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000258 }
259}
260
261SkGpuDevice::~SkGpuDevice() {
262 if (fDrawProcs) {
263 delete fDrawProcs;
264 }
265
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000266 // The SkGpuDevice gives the context the render target (e.g., in gainFocus)
267 // This call gives the context a chance to relinquish it
268 fContext->setRenderTarget(NULL);
269
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000270 SkSafeUnref(fTexture);
271 SkSafeUnref(fRenderTarget);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000272 if (fCache.texture()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000273 GrAssert(NULL != fTexture);
274 GrAssert(fRenderTarget == fTexture->asRenderTarget());
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000275 fContext->unlockTexture(fCache);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000276 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000277 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000278}
279
reed@google.comac10a2d2010-12-22 21:39:39 +0000280///////////////////////////////////////////////////////////////////////////////
281
282void SkGpuDevice::makeRenderTargetCurrent() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000283 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000284 fContext->setRenderTarget(fRenderTarget);
285 fContext->flush(true);
286 fNeedPrepareRenderTarget = true;
287}
288
289///////////////////////////////////////////////////////////////////////////////
290
bsalomon@google.comc4364992011-11-07 15:54:49 +0000291namespace {
292GrPixelConfig config8888_to_gr_config(SkCanvas::Config8888 config8888) {
293 switch (config8888) {
294 case SkCanvas::kNative_Premul_Config8888:
295 return kSkia8888_PM_GrPixelConfig;
296 case SkCanvas::kNative_Unpremul_Config8888:
297 return kSkia8888_UPM_GrPixelConfig;
298 case SkCanvas::kBGRA_Premul_Config8888:
299 return kBGRA_8888_PM_GrPixelConfig;
300 case SkCanvas::kBGRA_Unpremul_Config8888:
301 return kBGRA_8888_UPM_GrPixelConfig;
302 case SkCanvas::kRGBA_Premul_Config8888:
303 return kRGBA_8888_PM_GrPixelConfig;
304 case SkCanvas::kRGBA_Unpremul_Config8888:
305 return kRGBA_8888_UPM_GrPixelConfig;
306 default:
307 GrCrash("Unexpected Config8888.");
308 return kSkia8888_PM_GrPixelConfig;
309 }
310}
311}
312
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000313bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
314 int x, int y,
315 SkCanvas::Config8888 config8888) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000316 DO_DEFERRED_CLEAR;
bsalomon@google.com910267d2011-11-02 20:06:25 +0000317 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
318 SkASSERT(!bitmap.isNull());
319 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000320
bsalomon@google.com910267d2011-11-02 20:06:25 +0000321 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000322 GrPixelConfig config;
323 config = config8888_to_gr_config(config8888);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000324 return fContext->readRenderTargetPixels(fRenderTarget,
325 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000326 bitmap.width(),
327 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000328 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000329 bitmap.getPixels(),
330 bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000331}
332
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000333void SkGpuDevice::writePixels(const SkBitmap& bitmap, int x, int y,
334 SkCanvas::Config8888 config8888) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000335 SkAutoLockPixels alp(bitmap);
336 if (!bitmap.readyToDraw()) {
337 return;
338 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000339
340 GrPixelConfig config;
341 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
342 config = config8888_to_gr_config(config8888);
343 } else {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000344 config= SkBitmapConfig2GrPixelConfig(bitmap.config());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000345 }
346
bsalomon@google.com6f379512011-11-16 20:36:03 +0000347 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
348 config, bitmap.getPixels(), bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000349}
350
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000351void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
352 INHERITED::onAttachToCanvas(canvas);
353
354 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
355 fClipStack = canvas->getClipStack();
356}
357
358void SkGpuDevice::onDetachFromCanvas() {
359 INHERITED::onDetachFromCanvas();
360
361 fClipStack = NULL;
362}
363
reed@google.comac10a2d2010-12-22 21:39:39 +0000364///////////////////////////////////////////////////////////////////////////////
365
366static void convert_matrixclip(GrContext* context, const SkMatrix& matrix,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000367 const SkClipStack& clipStack,
reed@google.com6f8f2922011-03-04 22:27:10 +0000368 const SkRegion& clipRegion,
369 const SkIPoint& origin) {
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000370 context->setMatrix(matrix);
reed@google.comac10a2d2010-12-22 21:39:39 +0000371
372 SkGrClipIterator iter;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000373 iter.reset(clipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000374 const SkIRect& skBounds = clipRegion.getBounds();
375 GrRect bounds;
376 bounds.setLTRB(GrIntToScalar(skBounds.fLeft),
377 GrIntToScalar(skBounds.fTop),
378 GrIntToScalar(skBounds.fRight),
379 GrIntToScalar(skBounds.fBottom));
reed@google.com6f8f2922011-03-04 22:27:10 +0000380 GrClip grc(&iter, GrIntToScalar(-origin.x()), GrIntToScalar(-origin.y()),
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000381 bounds);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000382 context->setClip(grc);
reed@google.comac10a2d2010-12-22 21:39:39 +0000383}
384
385// call this ever each draw call, to ensure that the context reflects our state,
386// and not the state from some other canvas/device
387void SkGpuDevice::prepareRenderTarget(const SkDraw& draw) {
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000388 GrAssert(NULL != fClipStack);
389
reed@google.comac10a2d2010-12-22 21:39:39 +0000390 if (fNeedPrepareRenderTarget ||
bsalomon@google.com5782d712011-01-21 21:03:59 +0000391 fContext->getRenderTarget() != fRenderTarget) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000392
393 fContext->setRenderTarget(fRenderTarget);
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000394 SkASSERT(draw.fClipStack && draw.fClipStack == fClipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000395 convert_matrixclip(fContext, *draw.fMatrix,
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000396 *fClipStack, *draw.fClip, this->getOrigin());
reed@google.comac10a2d2010-12-22 21:39:39 +0000397 fNeedPrepareRenderTarget = false;
398 }
399}
400
tomhudson@google.com8a0b0292011-09-13 14:41:06 +0000401void SkGpuDevice::setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
402 const SkClipStack& clipStack) {
403 this->INHERITED::setMatrixClip(matrix, clip, clipStack);
404 // We don't need to set them now because the context may not reflect this device.
bsalomon@google.coma7bf6e22011-04-11 19:20:46 +0000405 fNeedPrepareRenderTarget = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000406}
407
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000408void SkGpuDevice::gainFocus(const SkMatrix& matrix, const SkRegion& clip) {
409
410 GrAssert(NULL != fClipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000411
reed@google.comac10a2d2010-12-22 21:39:39 +0000412 fContext->setRenderTarget(fRenderTarget);
413
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000414 this->INHERITED::gainFocus(matrix, clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000415
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000416 convert_matrixclip(fContext, matrix, *fClipStack, clip, this->getOrigin());
reed@google.comac10a2d2010-12-22 21:39:39 +0000417
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000418 DO_DEFERRED_CLEAR;
reed@google.comac10a2d2010-12-22 21:39:39 +0000419}
420
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000421SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000422 DO_DEFERRED_CLEAR;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000423 return (SkGpuRenderTarget*)fRenderTarget;
reed@google.com75d939b2011-12-07 15:07:23 +0000424}
425
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000426bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000427 if (NULL != fTexture) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000428 paint->setTexture(kBitmapTextureIdx, fTexture);
reed@google.comac10a2d2010-12-22 21:39:39 +0000429 return true;
430 }
431 return false;
432}
433
434///////////////////////////////////////////////////////////////////////////////
435
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000436SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
437SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
438SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
439SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
440SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
441 shader_type_mismatch);
rileya@google.com3e332582012-07-03 13:43:35 +0000442SK_COMPILE_ASSERT(SkShader::kTwoPointConical_BitmapType == 5,
443 shader_type_mismatch);
rileya@google.com22e57f92012-07-19 15:16:19 +0000444SK_COMPILE_ASSERT(SkShader::kLinear_BitmapType == 6, shader_type_mismatch);
445SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 6, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000446
bsalomon@google.com84405e02012-03-05 19:57:21 +0000447namespace {
448
449// converts a SkPaint to a GrPaint, ignoring the skPaint's shader
450// justAlpha indicates that skPaint's alpha should be used rather than the color
451// Callers may subsequently modify the GrPaint. Setting constantColor indicates
452// that the final paint will draw the same color at every pixel. This allows
453// an optimization where the the color filter can be applied to the skPaint's
twiz@google.com58071162012-07-18 21:41:50 +0000454// color once while converting to GrPaint and then ignored.
455inline bool skPaint2GrPaintNoShader(SkGpuDevice* dev,
456 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000457 bool justAlpha,
458 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000459 SkGpuDevice::SkAutoCachedTexture* act,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000460 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000461
462 grPaint->fDither = skPaint.isDither();
463 grPaint->fAntiAlias = skPaint.isAntiAlias();
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000464 grPaint->fCoverage = 0xFF;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000465
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000466 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
467 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000468
469 SkXfermode* mode = skPaint.getXfermode();
470 if (mode) {
471 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000472 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000473#if 0
474 return false;
475#endif
476 }
477 }
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000478 grPaint->fSrcBlendCoeff = sk_blend_to_grblend(sm);
479 grPaint->fDstBlendCoeff = sk_blend_to_grblend(dm);
480
bsalomon@google.com5782d712011-01-21 21:03:59 +0000481 if (justAlpha) {
482 uint8_t alpha = skPaint.getAlpha();
483 grPaint->fColor = GrColorPackRGBA(alpha, alpha, alpha, alpha);
Scroggod757df22011-05-16 13:11:16 +0000484 // justAlpha is currently set to true only if there is a texture,
485 // so constantColor should not also be true.
486 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000487 } else {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000488 grPaint->fColor = SkColor2GrColor(skPaint.getColor());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000489 grPaint->setTexture(kShaderTextureIdx, NULL);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000490 }
Scroggo97c88c22011-05-11 14:05:25 +0000491 SkColorFilter* colorFilter = skPaint.getColorFilter();
492 SkColor color;
493 SkXfermode::Mode filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000494 SkScalar matrix[20];
twiz@google.com58071162012-07-18 21:41:50 +0000495 SkBitmap colorTransformTable;
Scroggo97c88c22011-05-11 14:05:25 +0000496 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000497 grPaint->fColorMatrixEnabled = false;
Scroggod757df22011-05-16 13:11:16 +0000498 if (!constantColor) {
rileya@google.com24f3ad12012-07-18 21:47:40 +0000499 grPaint->fColorFilterColor = SkColor2GrColor(color);
Scroggod757df22011-05-16 13:11:16 +0000500 grPaint->fColorFilterXfermode = filterMode;
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000501 } else {
502 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
rileya@google.com24f3ad12012-07-18 21:47:40 +0000503 grPaint->fColor = SkColor2GrColor(filtered);
senorblanco@chromium.orgb3c20fa2012-01-03 21:20:19 +0000504 grPaint->resetColorFilter();
Scroggod757df22011-05-16 13:11:16 +0000505 }
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000506 } else if (colorFilter != NULL && colorFilter->asColorMatrix(matrix)) {
507 grPaint->fColorMatrixEnabled = true;
508 memcpy(grPaint->fColorMatrix, matrix, sizeof(matrix));
509 grPaint->fColorFilterXfermode = SkXfermode::kDst_Mode;
twiz@google.com58071162012-07-18 21:41:50 +0000510 } else if (colorFilter != NULL && colorFilter->asComponentTable(
511 &colorTransformTable)) {
512 grPaint->resetColorFilter();
513
514 GrSamplerState* colorSampler = grPaint->textureSampler(kColorFilterTextureIdx);
515 GrTexture* texture = act->set(dev, colorTransformTable, colorSampler);
516
517 colorSampler->setCustomStage(SkNEW_ARGS(GrColorTableEffect, (texture)))->unref();
518 colorSampler->setFilter(GrSamplerState::kNearest_Filter);
519 colorSampler->setWrapX(GrSamplerState::kClamp_WrapMode);
520 colorSampler->setWrapY(GrSamplerState::kClamp_WrapMode);
senorblanco@chromium.org50bdad82012-01-03 20:51:57 +0000521 } else {
522 grPaint->resetColorFilter();
Scroggo97c88c22011-05-11 14:05:25 +0000523 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000524 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000525}
526
bsalomon@google.com84405e02012-03-05 19:57:21 +0000527// This function is similar to skPaint2GrPaintNoShader but also converts
528// skPaint's shader to a GrTexture/GrSamplerState if possible. The texture to
529// be used is set on grPaint and returned in param act. constantColor has the
530// same meaning as in skPaint2GrPaintNoShader.
531inline bool skPaint2GrPaintShader(SkGpuDevice* dev,
532 const SkPaint& skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000533 bool constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000534 SkGpuDevice::SkAutoCachedTexture textures[GrPaint::kMaxTextures],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000535 GrPaint* grPaint) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000536 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000537 if (NULL == shader) {
twiz@google.com58071162012-07-18 21:41:50 +0000538 return skPaint2GrPaintNoShader(dev,
539 skPaint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000540 false,
541 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000542 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000543 grPaint);
twiz@google.com58071162012-07-18 21:41:50 +0000544 } else if (!skPaint2GrPaintNoShader(dev, skPaint, true, false,
545 &textures[kColorFilterTextureIdx], grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000546 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000547 }
548
reed@google.comac10a2d2010-12-22 21:39:39 +0000549 SkBitmap bitmap;
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000550 SkMatrix* matrix = grPaint->textureSampler(kShaderTextureIdx)->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000551 SkShader::TileMode tileModes[2];
552 SkScalar twoPointParams[3];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000553 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000554 tileModes, twoPointParams);
555
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000556 if (SkShader::kNone_BitmapType == bmptype) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000557 SkShader::GradientInfo info;
558 SkColor color;
559
560 info.fColors = &color;
561 info.fColorOffsets = NULL;
562 info.fColorCount = 1;
563 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
564 SkPaint copy(skPaint);
565 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000566 // modulate the paint alpha by the shader's solid color alpha
567 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
568 copy.setColor(SkColorSetA(color, newA));
twiz@google.com58071162012-07-18 21:41:50 +0000569 return skPaint2GrPaintNoShader(dev,
570 copy,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000571 false,
572 constantColor,
twiz@google.com58071162012-07-18 21:41:50 +0000573 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +0000574 grPaint);
reed@google.com2be9e8b2011-07-06 21:18:09 +0000575 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000576 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000577 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000578
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000579 GrSamplerState* sampler = grPaint->textureSampler(kShaderTextureIdx);
twiz@google.com58071162012-07-18 21:41:50 +0000580 GrTexture* texture = textures[kShaderTextureIdx].set(dev, bitmap, sampler);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000581 if (NULL == texture) {
582 SkDebugf("Couldn't convert bitmap to texture.\n");
583 return false;
584 }
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000585
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000586 switch (bmptype) {
bsalomon@google.com3a5dab42012-06-04 20:21:28 +0000587 case SkShader::kRadial_BitmapType:
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000588 sampler->setCustomStage(SkNEW_ARGS(GrRadialGradient, (texture)))->unref();
bsalomon@google.com3a5dab42012-06-04 20:21:28 +0000589 sampler->setFilter(GrSamplerState::kBilinear_Filter);
590 break;
591 case SkShader::kSweep_BitmapType:
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000592 sampler->setCustomStage(SkNEW_ARGS(GrSweepGradient, (texture)))->unref();
bsalomon@google.com3a5dab42012-06-04 20:21:28 +0000593 sampler->setFilter(GrSamplerState::kBilinear_Filter);
594 break;
595 case SkShader::kTwoPointRadial_BitmapType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000596 sampler->setCustomStage(SkNEW_ARGS(GrRadial2Gradient,
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000597 (texture,
598 twoPointParams[0],
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000599 twoPointParams[1],
600 twoPointParams[2] < 0)))->unref();
bsalomon@google.com3a5dab42012-06-04 20:21:28 +0000601 sampler->setFilter(GrSamplerState::kBilinear_Filter);
602 break;
rileya@google.com3e332582012-07-03 13:43:35 +0000603 case SkShader::kTwoPointConical_BitmapType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000604 sampler->setCustomStage(SkNEW_ARGS(GrConical2Gradient,
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000605 (texture,
606 twoPointParams[0],
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000607 twoPointParams[1],
608 twoPointParams[2])))->unref();
rileya@google.com3e332582012-07-03 13:43:35 +0000609 sampler->setFilter(GrSamplerState::kBilinear_Filter);
610 break;
rileya@google.com22e57f92012-07-19 15:16:19 +0000611 case SkShader::kLinear_BitmapType:
612 sampler->setCustomStage(SkNEW_ARGS(GrLinearGradient, (texture)))->unref();
613 if (skPaint.isFilterBitmap()) {
614 sampler->setFilter(GrSamplerState::kBilinear_Filter);
615 } else {
616 sampler->setFilter(GrSamplerState::kNearest_Filter);
617 }
618 break;
bsalomon@google.com3a5dab42012-06-04 20:21:28 +0000619 default:
620 if (skPaint.isFilterBitmap()) {
621 sampler->setFilter(GrSamplerState::kBilinear_Filter);
622 } else {
623 sampler->setFilter(GrSamplerState::kNearest_Filter);
624 }
tomhudson@google.come742bf02012-07-13 19:54:19 +0000625 // TODO - once we have a trivial GrCustomStage for texture drawing,
626 // create that here & get rid of the paint's texture
627 grPaint->setTexture(kShaderTextureIdx, texture);
bsalomon@google.com3a5dab42012-06-04 20:21:28 +0000628 break;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000629 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000630 sampler->setWrapX(sk_tile_mode_to_grwrap(tileModes[0]));
631 sampler->setWrapY(sk_tile_mode_to_grwrap(tileModes[1]));
reed@google.comac10a2d2010-12-22 21:39:39 +0000632
reed@google.comac10a2d2010-12-22 21:39:39 +0000633 // since our texture coords will be in local space, we wack the texture
634 // matrix to map them back into 0...1 before we load it
635 SkMatrix localM;
636 if (shader->getLocalMatrix(&localM)) {
637 SkMatrix inverse;
638 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000639 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000640 }
641 }
642 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000643 GrScalar sx = SkFloatToScalar(1.f / bitmap.width());
644 GrScalar sy = SkFloatToScalar(1.f / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000645 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000646 } else if (SkShader::kRadial_BitmapType == bmptype) {
bsalomon@google.com91832162012-03-08 19:53:02 +0000647 GrScalar s = SkFloatToScalar(1.f / bitmap.width());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000648 matrix->postScale(s, s);
reed@google.comac10a2d2010-12-22 21:39:39 +0000649 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000650
651 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000652}
bsalomon@google.com84405e02012-03-05 19:57:21 +0000653}
reed@google.comac10a2d2010-12-22 21:39:39 +0000654
655///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com398109c2011-04-14 18:40:27 +0000656void SkGpuDevice::clear(SkColor color) {
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000657 fContext->clear(NULL, color, fRenderTarget);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000658}
659
reed@google.comac10a2d2010-12-22 21:39:39 +0000660void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
661 CHECK_SHOULD_DRAW(draw);
662
bsalomon@google.com5782d712011-01-21 21:03:59 +0000663 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000664 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000665 if (!skPaint2GrPaintShader(this,
666 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000667 true,
twiz@google.com58071162012-07-18 21:41:50 +0000668 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000669 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000670 return;
671 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000672
673 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000674}
675
676// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000677static const GrPrimitiveType gPointMode2PrimtiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +0000678 kPoints_GrPrimitiveType,
679 kLines_GrPrimitiveType,
680 kLineStrip_GrPrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000681};
682
683void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000684 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000685 CHECK_SHOULD_DRAW(draw);
686
687 SkScalar width = paint.getStrokeWidth();
688 if (width < 0) {
689 return;
690 }
691
bsalomon@google.comb702c0f2012-06-18 12:52:56 +0000692 // we only handle hairlines and paints without path effects or mask filters,
693 // else we let the SkDraw call our drawPath()
694 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000695 draw.drawPoints(mode, count, pts, paint, true);
696 return;
697 }
698
bsalomon@google.com5782d712011-01-21 21:03:59 +0000699 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000700 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000701 if (!skPaint2GrPaintShader(this,
702 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000703 true,
twiz@google.com58071162012-07-18 21:41:50 +0000704 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000705 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000706 return;
707 }
708
bsalomon@google.com5782d712011-01-21 21:03:59 +0000709 fContext->drawVertices(grPaint,
710 gPointMode2PrimtiveType[mode],
711 count,
712 (GrPoint*)pts,
713 NULL,
714 NULL,
715 NULL,
716 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000717}
718
reed@google.comc9aa5872011-04-05 21:05:37 +0000719///////////////////////////////////////////////////////////////////////////////
720
reed@google.comac10a2d2010-12-22 21:39:39 +0000721void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
722 const SkPaint& paint) {
reed@google.comb0a34d82012-07-11 19:57:55 +0000723 CHECK_FOR_NODRAW_ANNOTATION(paint);
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000724 CHECK_SHOULD_DRAW(draw);
725
bungeman@google.com79bd8772011-07-18 15:34:08 +0000726 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000727 SkScalar width = paint.getStrokeWidth();
728
729 /*
730 We have special code for hairline strokes, miter-strokes, and fills.
731 Anything else we just call our path code.
732 */
733 bool usePath = doStroke && width > 0 &&
734 paint.getStrokeJoin() != SkPaint::kMiter_Join;
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000735 // another two reasons we might need to call drawPath...
736 if (paint.getMaskFilter() || paint.getPathEffect()) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000737 usePath = true;
738 }
reed@google.com67db6642011-05-26 11:46:35 +0000739 // until we aa rotated rects...
740 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
741 usePath = true;
742 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000743 // small miter limit means right angles show bevel...
744 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
745 paint.getStrokeMiter() < SK_ScalarSqrt2)
746 {
747 usePath = true;
748 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000749 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000750 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
751 usePath = true;
752 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000753
754 if (usePath) {
755 SkPath path;
756 path.addRect(rect);
757 this->drawPath(draw, path, paint, NULL, true);
758 return;
759 }
760
761 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +0000762 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +0000763 if (!skPaint2GrPaintShader(this,
764 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000765 true,
twiz@google.com58071162012-07-18 21:41:50 +0000766 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +0000767 &grPaint)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000768 return;
769 }
reed@google.com20efde72011-05-09 17:00:02 +0000770 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000771}
772
reed@google.com69302852011-02-16 18:08:07 +0000773#include "SkMaskFilter.h"
774#include "SkBounder.h"
775
bsalomon@google.com85003222012-03-28 14:44:37 +0000776///////////////////////////////////////////////////////////////////////////////
777
778// helpers for applying mask filters
779namespace {
780
781GrPathFill skToGrFillType(SkPath::FillType fillType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000782 switch (fillType) {
783 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000784 return kWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000785 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000786 return kEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000787 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000788 return kInverseWinding_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000789 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +0000790 return kInverseEvenOdd_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000791 default:
792 SkDebugf("Unsupported path fill type\n");
bsalomon@google.com47059542012-06-06 20:51:20 +0000793 return kHairLine_GrPathFill;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000794 }
795}
796
bsalomon@google.com85003222012-03-28 14:44:37 +0000797// We prefer to blur small rect with small radius via CPU.
798#define MIN_GPU_BLUR_SIZE SkIntToScalar(64)
799#define MIN_GPU_BLUR_RADIUS SkIntToScalar(32)
800inline bool shouldDrawBlurWithCPU(const SkRect& rect, SkScalar radius) {
801 if (rect.width() <= MIN_GPU_BLUR_SIZE &&
802 rect.height() <= MIN_GPU_BLUR_SIZE &&
803 radius <= MIN_GPU_BLUR_RADIUS) {
804 return true;
805 }
806 return false;
807}
808
809bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
810 SkMaskFilter* filter, const SkMatrix& matrix,
811 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000812 GrPaint* grp, GrPathFill pathFillType) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000813#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000814 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000815#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000816 SkMaskFilter::BlurInfo info;
817 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.comdafde9e2012-01-11 18:45:39 +0000818 if (SkMaskFilter::kNone_BlurType == blurType) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000819 return false;
820 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000821 SkScalar radius = info.fIgnoreTransform ? info.fRadius
822 : matrix.mapRadius(info.fRadius);
823 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000824 if (radius <= 0) {
825 return false;
826 }
bsalomon@google.com85003222012-03-28 14:44:37 +0000827
828 SkRect srcRect = path.getBounds();
829 if (shouldDrawBlurWithCPU(srcRect, radius)) {
830 return false;
831 }
832
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000833 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000834 float sigma3 = sigma * 3.0f;
835
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000836 SkRect clipRect;
837 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000838
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000839 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
robertphillips@google.com5af56062012-04-27 15:39:52 +0000840 srcRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
841 clipRect.inset(SkFloatToScalar(-sigma3), SkFloatToScalar(-sigma3));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000842 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000843 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000844 SkIRect finalIRect;
845 finalRect.roundOut(&finalIRect);
846 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000847 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000848 }
849 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000850 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000851 }
852 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000853 srcRect.offset(offset);
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000854 GrTextureDesc desc;
855 desc.fFlags = kRenderTarget_GrTextureFlagBit;
856 desc.fWidth = SkScalarCeilToInt(srcRect.width());
857 desc.fHeight = SkScalarCeilToInt(srcRect.height());
858 // We actually only need A8, but it often isn't supported as a
859 // render target so default to RGBA_8888
860 desc.fConfig = kRGBA_8888_PM_GrPixelConfig;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000861
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000862 if (context->isConfigRenderable(kAlpha_8_GrPixelConfig)) {
863 desc.fConfig = kAlpha_8_GrPixelConfig;
864 }
865
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000866 GrAutoScratchTexture pathEntry(context, desc);
867 GrTexture* pathTexture = pathEntry.texture();
868 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000869 return false;
870 }
871 GrRenderTarget* oldRenderTarget = context->getRenderTarget();
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000872 // Once this code moves into GrContext, this should be changed to use
873 // an AutoClipRestore.
874 GrClip oldClip = context->getClip();
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000875 context->setRenderTarget(pathTexture->asRenderTarget());
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000876
877 GrClip newClip(srcRect);
878 context->setClip(newClip);
879
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000880 context->clear(NULL, 0);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000881 GrPaint tempPaint;
882 tempPaint.reset();
883
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000884 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000885 tempPaint.fAntiAlias = grp->fAntiAlias;
886 if (tempPaint.fAntiAlias) {
887 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
888 // blend coeff of zero requires dual source blending support in order
889 // to properly blend partially covered pixels. This means the AA
890 // code path may not be taken. So we use a dst blend coeff of ISA. We
891 // could special case AA draws to a dst surface with known alpha=0 to
892 // use a zero dst coeff when dual source blending isn't available.
bsalomon@google.com47059542012-06-06 20:51:20 +0000893 tempPaint.fSrcBlendCoeff = kOne_GrBlendCoeff;
894 tempPaint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000895 }
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000896 // Draw hard shadow to pathTexture with path topleft at origin 0,0.
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000897 context->drawPath(tempPaint, path, pathFillType, &offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000898
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000899 // If we're doing a normal blur, we can clobber the pathTexture in the
900 // gaussianBlur. Otherwise, we need to save it for later compositing.
901 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +0000902 SkAutoTUnref<GrTexture> blurTexture(context->gaussianBlur(
903 pathTexture, isNormalBlur, srcRect, sigma, sigma));
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000904
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000905 if (!isNormalBlur) {
906 GrPaint paint;
907 paint.reset();
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000908 paint.textureSampler(0)->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000909 paint.textureSampler(0)->matrix()->setIDiv(pathTexture->width(),
910 pathTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000911 // Blend pathTexture over blurTexture.
912 context->setRenderTarget(blurTexture->asRenderTarget());
913 paint.setTexture(0, pathTexture);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000914 if (SkMaskFilter::kInner_BlurType == blurType) {
915 // inner: dst = dst * src
bsalomon@google.com47059542012-06-06 20:51:20 +0000916 paint.fSrcBlendCoeff = kDC_GrBlendCoeff;
917 paint.fDstBlendCoeff = kZero_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000918 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
919 // solid: dst = src + dst - src * dst
920 // = (1 - dst) * src + 1 * dst
bsalomon@google.com47059542012-06-06 20:51:20 +0000921 paint.fSrcBlendCoeff = kIDC_GrBlendCoeff;
922 paint.fDstBlendCoeff = kOne_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000923 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
924 // outer: dst = dst * (1 - src)
925 // = 0 * src + (1 - src) * dst
bsalomon@google.com47059542012-06-06 20:51:20 +0000926 paint.fSrcBlendCoeff = kZero_GrBlendCoeff;
927 paint.fDstBlendCoeff = kISC_GrBlendCoeff;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000928 }
929 context->drawRect(paint, srcRect);
930 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000931 context->setRenderTarget(oldRenderTarget);
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000932 context->setClip(oldClip);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000933
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000934 if (grp->hasTextureOrMask()) {
935 GrMatrix inverse;
936 if (!matrix.invert(&inverse)) {
937 return false;
938 }
939 grp->preConcatActiveSamplerMatrices(inverse);
940 }
941
942 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
943 // we assume the last mask index is available for use
tomhudson@google.comf13f5882012-06-25 17:27:28 +0000944 GrAssert(!grp->isMaskStageEnabled(MASK_IDX));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000945 grp->setMask(MASK_IDX, blurTexture);
bsalomon@google.com97912912011-12-06 16:30:36 +0000946 grp->maskSampler(MASK_IDX)->reset();
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000947
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000948 grp->maskSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
949 -finalRect.fTop);
950 grp->maskSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
951 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000952 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000953 return true;
954}
955
bsalomon@google.com85003222012-03-28 14:44:37 +0000956bool drawWithMaskFilter(GrContext* context, const SkPath& path,
957 SkMaskFilter* filter, const SkMatrix& matrix,
958 const SkRegion& clip, SkBounder* bounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000959 GrPaint* grp, SkPaint::Style style) {
reed@google.com69302852011-02-16 18:08:07 +0000960 SkMask srcM, dstM;
961
962 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +0000963 SkMask::kComputeBoundsAndRenderImage_CreateMode,
junov@chromium.orgaad7e272012-04-04 21:01:08 +0000964 style)) {
reed@google.com69302852011-02-16 18:08:07 +0000965 return false;
966 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000967 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000968
969 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
970 return false;
971 }
972 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000973 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000974
975 if (clip.quickReject(dstM.fBounds)) {
976 return false;
977 }
978 if (bounder && !bounder->doIRect(dstM.fBounds)) {
979 return false;
980 }
981
982 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
983 // the current clip (and identity matrix) and grpaint settings
984
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000985 // used to compute inverse view, if necessary
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000986 GrMatrix ivm = matrix;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000987
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000988 GrContext::AutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +0000989
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000990 GrTextureDesc desc;
991 desc.fWidth = dstM.fBounds.width();
992 desc.fHeight = dstM.fBounds.height();
993 desc.fConfig = kAlpha_8_GrPixelConfig;
reed@google.com69302852011-02-16 18:08:07 +0000994
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000995 GrAutoScratchTexture ast(context, desc);
996 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +0000997
reed@google.com69302852011-02-16 18:08:07 +0000998 if (NULL == texture) {
999 return false;
1000 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001001 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001002 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +00001003
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001004 if (grp->hasTextureOrMask() && ivm.invert(&ivm)) {
1005 grp->preConcatActiveSamplerMatrices(ivm);
1006 }
1007
1008 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
1009 // we assume the last mask index is available for use
tomhudson@google.comf13f5882012-06-25 17:27:28 +00001010 GrAssert(!grp->isMaskStageEnabled(MASK_IDX));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001011 grp->setMask(MASK_IDX, texture);
bsalomon@google.com97912912011-12-06 16:30:36 +00001012 grp->maskSampler(MASK_IDX)->reset();
reed@google.com69302852011-02-16 18:08:07 +00001013
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001014 GrRect d;
1015 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +00001016 GrIntToScalar(dstM.fBounds.fTop),
1017 GrIntToScalar(dstM.fBounds.fRight),
1018 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001019
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001020 GrMatrix* m = grp->maskSampler(MASK_IDX)->matrix();
1021 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1022 -dstM.fBounds.fTop*SK_Scalar1);
1023 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001024 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +00001025 return true;
1026}
reed@google.com69302852011-02-16 18:08:07 +00001027
bsalomon@google.com85003222012-03-28 14:44:37 +00001028}
1029
1030///////////////////////////////////////////////////////////////////////////////
1031
reed@google.com0c219b62011-02-16 21:31:18 +00001032void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001033 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +00001034 bool pathIsMutable) {
reed@google.comb0a34d82012-07-11 19:57:55 +00001035 CHECK_FOR_NODRAW_ANNOTATION(paint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001036 CHECK_SHOULD_DRAW(draw);
1037
reed@google.comfe626382011-09-21 13:50:35 +00001038 bool doFill = true;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001039
bsalomon@google.com5782d712011-01-21 21:03:59 +00001040 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001041 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001042 if (!skPaint2GrPaintShader(this,
1043 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001044 true,
twiz@google.com58071162012-07-18 21:41:50 +00001045 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001046 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001047 return;
1048 }
1049
bsalomon@google.com8c0a0d32012-03-05 16:01:18 +00001050 // can we cheat, and threat a thin stroke as a hairline w/ coverage
1051 // if we can, we draw lots faster (raster device does this same test)
1052 SkScalar hairlineCoverage;
1053 if (SkDrawTreatAsHairline(paint, *draw.fMatrix, &hairlineCoverage)) {
1054 doFill = false;
1055 grPaint.fCoverage = SkScalarRoundToInt(hairlineCoverage *
1056 grPaint.fCoverage);
1057 }
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001058
reed@google.comfe626382011-09-21 13:50:35 +00001059 // If we have a prematrix, apply it to the path, optimizing for the case
1060 // where the original path can in fact be modified in place (even though
1061 // its parameter type is const).
1062 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1063 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001064
1065 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001066 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001067
reed@google.come3445642011-02-16 23:20:39 +00001068 if (!pathIsMutable) {
1069 result = &tmpPath;
1070 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001071 }
reed@google.come3445642011-02-16 23:20:39 +00001072 // should I push prePathMatrix on our MV stack temporarily, instead
1073 // of applying it here? See SkDraw.cpp
1074 pathPtr->transform(*prePathMatrix, result);
1075 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001076 }
reed@google.com0c219b62011-02-16 21:31:18 +00001077 // at this point we're done with prePathMatrix
1078 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001079
bsalomon@google.com8b58c4d2012-02-13 14:49:09 +00001080 if (paint.getPathEffect() ||
1081 (doFill && paint.getStyle() != SkPaint::kFill_Style)) {
reed@google.comfe626382011-09-21 13:50:35 +00001082 // it is safe to use tmpPath here, even if we already used it for the
1083 // prepathmatrix, since getFillPath can take the same object for its
1084 // input and output safely.
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001085 doFill = paint.getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001086 pathPtr = &tmpPath;
1087 }
1088
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001089 if (paint.getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001090 // avoid possibly allocating a new path in transform if we can
1091 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1092
1093 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001094 pathPtr->transform(*draw.fMatrix, devPathPtr);
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001095 GrPathFill pathFillType = doFill ?
bsalomon@google.com47059542012-06-06 20:51:20 +00001096 skToGrFillType(devPathPtr->getFillType()) : kHairLine_GrPathFill;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001097 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001098 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001099 &grPaint, pathFillType)) {
1100 SkPaint::Style style = doFill ? SkPaint::kFill_Style :
1101 SkPaint::kStroke_Style;
bsalomon@google.comdd1be602012-01-18 20:34:00 +00001102 drawWithMaskFilter(fContext, *devPathPtr, paint.getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001103 *draw.fMatrix, *draw.fClip, draw.fBounder,
junov@chromium.orgaad7e272012-04-04 21:01:08 +00001104 &grPaint, style);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001105 }
reed@google.com69302852011-02-16 18:08:07 +00001106 return;
1107 }
reed@google.com69302852011-02-16 18:08:07 +00001108
bsalomon@google.com47059542012-06-06 20:51:20 +00001109 GrPathFill fill = kHairLine_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001110
reed@google.com0c219b62011-02-16 21:31:18 +00001111 if (doFill) {
1112 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001113 case SkPath::kWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001114 fill = kWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001115 break;
1116 case SkPath::kEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001117 fill = kEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001118 break;
1119 case SkPath::kInverseWinding_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001120 fill = kInverseWinding_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001121 break;
1122 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.com47059542012-06-06 20:51:20 +00001123 fill = kInverseEvenOdd_GrPathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001124 break;
1125 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001126 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001127 return;
1128 }
1129 }
1130
reed@google.com07f3ee12011-05-16 17:21:57 +00001131 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001132}
1133
bsalomon@google.comfb309512011-11-30 14:13:48 +00001134namespace {
1135
1136inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1137 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1138 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1139 return tilesX * tilesY;
1140}
1141
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001142inline int determine_tile_size(const SkBitmap& bitmap,
bsalomon@google.comfb309512011-11-30 14:13:48 +00001143 const SkIRect* srcRectPtr,
1144 int maxTextureSize) {
1145 static const int kSmallTileSize = 1 << 10;
1146 if (maxTextureSize <= kSmallTileSize) {
1147 return maxTextureSize;
1148 }
1149
1150 size_t maxTexTotalTileSize;
1151 size_t smallTotalTileSize;
1152
1153 if (NULL == srcRectPtr) {
1154 int w = bitmap.width();
1155 int h = bitmap.height();
1156 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1157 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1158 } else {
1159 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1160 srcRectPtr->fTop,
1161 srcRectPtr->fRight,
1162 srcRectPtr->fBottom,
1163 maxTextureSize);
1164 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1165 srcRectPtr->fTop,
1166 srcRectPtr->fRight,
1167 srcRectPtr->fBottom,
1168 kSmallTileSize);
1169 }
1170 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1171 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1172
1173 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1174 return kSmallTileSize;
1175 } else {
1176 return maxTextureSize;
1177 }
1178}
1179}
1180
1181bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
1182 const GrSamplerState& sampler,
1183 const SkIRect* srcRectPtr,
1184 int* tileSize) const {
1185 SkASSERT(NULL != tileSize);
1186
1187 // if bitmap is explictly texture backed then just use the texture
1188 if (NULL != bitmap.getTexture()) {
1189 return false;
1190 }
1191 // if it's larger than the max texture size, then we have no choice but
1192 // tiling
1193 const int maxTextureSize = fContext->getMaxTextureSize();
1194 if (bitmap.width() > maxTextureSize ||
1195 bitmap.height() > maxTextureSize) {
1196 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1197 return true;
1198 }
1199 // if we are going to have to draw the whole thing, then don't tile
1200 if (NULL == srcRectPtr) {
1201 return false;
1202 }
1203 // if the entire texture is already in our cache then no reason to tile it
1204 if (this->isBitmapInTextureCache(bitmap, sampler)) {
1205 return false;
1206 }
1207
1208 // At this point we know we could do the draw by uploading the entire bitmap
1209 // as a texture. However, if the texture would be large compared to the
1210 // cache size and we don't require most of it for this draw then tile to
1211 // reduce the amount of upload and cache spill.
1212
1213 // assumption here is that sw bitmap size is a good proxy for its size as
1214 // a texture
1215 size_t bmpSize = bitmap.getSize();
bsalomon@google.com07fc0d12012-06-22 15:15:59 +00001216 size_t cacheSize;
1217 fContext->getTextureCacheLimits(NULL, &cacheSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001218 if (bmpSize < cacheSize / 2) {
1219 return false;
1220 }
1221
1222 SkFixed fracUsed =
1223 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1224 (srcRectPtr->height() << 16) / bitmap.height());
1225 if (fracUsed <= SK_FixedHalf) {
1226 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1227 return true;
1228 } else {
1229 return false;
1230 }
1231}
1232
reed@google.comac10a2d2010-12-22 21:39:39 +00001233void SkGpuDevice::drawBitmap(const SkDraw& draw,
1234 const SkBitmap& bitmap,
1235 const SkIRect* srcRectPtr,
1236 const SkMatrix& m,
1237 const SkPaint& paint) {
1238 CHECK_SHOULD_DRAW(draw);
1239
1240 SkIRect srcRect;
1241 if (NULL == srcRectPtr) {
1242 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1243 } else {
1244 srcRect = *srcRectPtr;
1245 }
1246
junov@google.comd935cfb2011-06-27 20:48:23 +00001247 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001248 // Convert the bitmap to a shader so that the rect can be drawn
1249 // through drawRect, which supports mask filters.
1250 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001251 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001252 if (srcRectPtr) {
1253 if (!bitmap.extractSubset(&tmp, srcRect)) {
1254 return; // extraction failed
1255 }
1256 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001257 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001258 }
1259 SkPaint paintWithTexture(paint);
1260 paintWithTexture.setShader(SkShader::CreateBitmapShader( *bitmapPtr,
1261 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001262 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001263 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001264
junov@google.com1d329782011-07-28 20:10:09 +00001265 // Transform 'm' needs to be concatenated to the draw matrix,
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001266 // rather than transforming the primitive directly, so that 'm' will
junov@google.com1d329782011-07-28 20:10:09 +00001267 // also affect the behavior of the mask filter.
1268 SkMatrix drawMatrix;
1269 drawMatrix.setConcat(*draw.fMatrix, m);
1270 SkDraw transformedDraw(draw);
1271 transformedDraw.fMatrix = &drawMatrix;
1272
1273 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1274
junov@google.comd935cfb2011-06-27 20:48:23 +00001275 return;
1276 }
1277
bsalomon@google.com5782d712011-01-21 21:03:59 +00001278 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001279 SkAutoCachedTexture colorLutTexture;
1280 if (!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001281 return;
1282 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001283 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001284 if (paint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001285 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001286 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001287 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001288 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001289
bsalomon@google.comfb309512011-11-30 14:13:48 +00001290 int tileSize;
1291 if (!this->shouldTileBitmap(bitmap, *sampler, srcRectPtr, &tileSize)) {
1292 // take the simple case
bsalomon@google.com5782d712011-01-21 21:03:59 +00001293 this->internalDrawBitmap(draw, bitmap, srcRect, m, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001294 return;
1295 }
1296
1297 // undo the translate done by SkCanvas
1298 int DX = SkMax32(0, srcRect.fLeft);
1299 int DY = SkMax32(0, srcRect.fTop);
1300 // compute clip bounds in local coordinates
1301 SkIRect clipRect;
1302 {
1303 SkRect r;
1304 r.set(draw.fClip->getBounds());
1305 SkMatrix matrix, inverse;
1306 matrix.setConcat(*draw.fMatrix, m);
1307 if (!matrix.invert(&inverse)) {
1308 return;
1309 }
1310 inverse.mapRect(&r);
1311 r.roundOut(&clipRect);
1312 // apply the canvas' translate to our local clip
1313 clipRect.offset(DX, DY);
1314 }
1315
bsalomon@google.comfb309512011-11-30 14:13:48 +00001316 int nx = bitmap.width() / tileSize;
1317 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001318 for (int x = 0; x <= nx; x++) {
1319 for (int y = 0; y <= ny; y++) {
1320 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001321 tileR.set(x * tileSize, y * tileSize,
1322 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001323 if (!SkIRect::Intersects(tileR, clipRect)) {
1324 continue;
1325 }
1326
1327 SkIRect srcR = tileR;
1328 if (!srcR.intersect(srcRect)) {
1329 continue;
1330 }
1331
1332 SkBitmap tmpB;
1333 if (bitmap.extractSubset(&tmpB, tileR)) {
1334 // now offset it to make it "local" to our tmp bitmap
1335 srcR.offset(-tileR.fLeft, -tileR.fTop);
1336
1337 SkMatrix tmpM(m);
1338 {
1339 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1340 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1341 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1342 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001343 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001344 }
1345 }
1346 }
1347}
1348
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001349namespace {
1350
1351bool hasAlignedSamples(const SkRect& srcRect, const SkRect& transformedRect) {
1352 // detect pixel disalignment
1353 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
1354 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
1355 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
1356 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
1357 SkScalarAbs(transformedRect.width() - srcRect.width()) <
1358 COLOR_BLEED_TOLERANCE &&
1359 SkScalarAbs(transformedRect.height() - srcRect.height()) <
1360 COLOR_BLEED_TOLERANCE) {
1361 return true;
1362 }
1363 return false;
1364}
1365
1366bool mayColorBleed(const SkRect& srcRect, const SkRect& transformedRect,
1367 const SkMatrix& m) {
1368 // Only gets called if hasAlignedSamples returned false.
1369 // So we can assume that sampling is axis aligned but not texel aligned.
1370 GrAssert(!hasAlignedSamples(srcRect, transformedRect));
1371 SkRect innerSrcRect(srcRect), innerTransformedRect,
1372 outerTransformedRect(transformedRect);
1373 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
1374 m.mapRect(&innerTransformedRect, innerSrcRect);
1375
1376 // The gap between outerTransformedRect and innerTransformedRect
1377 // represents the projection of the source border area, which is
1378 // problematic for color bleeding. We must check whether any
1379 // destination pixels sample the border area.
1380 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1381 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
1382 SkIRect outer, inner;
1383 outerTransformedRect.round(&outer);
1384 innerTransformedRect.round(&inner);
1385 // If the inner and outer rects round to the same result, it means the
1386 // border does not overlap any pixel centers. Yay!
1387 return inner != outer;
1388}
1389
1390} // unnamed namespace
1391
reed@google.comac10a2d2010-12-22 21:39:39 +00001392/*
1393 * This is called by drawBitmap(), which has to handle images that may be too
1394 * large to be represented by a single texture.
1395 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001396 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1397 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001398 */
1399void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1400 const SkBitmap& bitmap,
1401 const SkIRect& srcRect,
1402 const SkMatrix& m,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001403 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001404 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1405 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001406
reed@google.com9c49bc32011-07-07 13:42:37 +00001407 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001408 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001409 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001410 return;
1411 }
1412
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001413 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001414
1415 sampler->setWrapX(GrSamplerState::kClamp_WrapMode);
1416 sampler->setWrapY(GrSamplerState::kClamp_WrapMode);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001417 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001418
1419 GrTexture* texture;
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001420 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001421 if (NULL == texture) {
1422 return;
1423 }
1424
bsalomon@google.com452943d2011-10-31 17:37:14 +00001425 grPaint->setTexture(kBitmapTextureIdx, texture);
reed@google.com46799cd2011-02-22 20:56:26 +00001426
reed@google.com20efde72011-05-09 17:00:02 +00001427 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1428 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001429 GrRect paintRect;
bsalomon@google.com91832162012-03-08 19:53:02 +00001430 float wInv = 1.f / bitmap.width();
1431 float hInv = 1.f / bitmap.height();
1432 paintRect.setLTRB(SkFloatToScalar(srcRect.fLeft * wInv),
1433 SkFloatToScalar(srcRect.fTop * hInv),
1434 SkFloatToScalar(srcRect.fRight * wInv),
1435 SkFloatToScalar(srcRect.fBottom * hInv));
reed@google.comac10a2d2010-12-22 21:39:39 +00001436
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001437 bool needsTextureDomain = false;
1438 if (GrSamplerState::kBilinear_Filter == sampler->getFilter())
1439 {
1440 // Need texture domain if drawing a sub rect.
1441 needsTextureDomain = srcRect.width() < bitmap.width() ||
1442 srcRect.height() < bitmap.height();
1443 if (m.rectStaysRect() && draw.fMatrix->rectStaysRect()) {
1444 // sampling is axis-aligned
1445 GrRect floatSrcRect, transformedRect;
1446 floatSrcRect.set(srcRect);
1447 SkMatrix srcToDeviceMatrix(m);
1448 srcToDeviceMatrix.postConcat(*draw.fMatrix);
1449 srcToDeviceMatrix.mapRect(&transformedRect, floatSrcRect);
1450
1451 if (hasAlignedSamples(floatSrcRect, transformedRect)) {
1452 // Samples are texel-aligned, so filtering is futile
1453 sampler->setFilter(GrSamplerState::kNearest_Filter);
1454 needsTextureDomain = false;
1455 } else {
1456 needsTextureDomain = needsTextureDomain &&
1457 mayColorBleed(floatSrcRect, transformedRect, m);
1458 }
1459 }
1460 }
1461
1462 GrRect textureDomain = GrRect::MakeEmpty();
1463
1464 if (needsTextureDomain) {
1465 // Use a constrained texture domain to avoid color bleeding
junov@google.com6acc9b32011-05-16 18:32:07 +00001466 GrScalar left, top, right, bottom;
1467 if (srcRect.width() > 1) {
1468 GrScalar border = GR_ScalarHalf / bitmap.width();
1469 left = paintRect.left() + border;
1470 right = paintRect.right() - border;
1471 } else {
1472 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1473 }
1474 if (srcRect.height() > 1) {
1475 GrScalar border = GR_ScalarHalf / bitmap.height();
1476 top = paintRect.top() + border;
1477 bottom = paintRect.bottom() - border;
1478 } else {
1479 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1480 }
junov@chromium.orgf32a9b62012-03-16 20:54:17 +00001481 textureDomain.setLTRB(left, top, right, bottom);
tomhudson@google.com2f68e762012-07-17 18:43:21 +00001482 sampler->setCustomStage(SkNEW_ARGS(GrTextureDomainEffect,
1483 (texture,
1484 textureDomain)))->unref();
junov@google.com6acc9b32011-05-16 18:32:07 +00001485 }
1486
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001487 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001488}
1489
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001490namespace {
1491
1492void apply_custom_stage(GrContext* context,
1493 GrTexture* srcTexture,
1494 GrTexture* dstTexture,
1495 const GrRect& rect,
1496 GrCustomStage* stage) {
1497 SkASSERT(srcTexture && srcTexture->getContext() == context);
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001498 GrContext::AutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001499 GrContext::AutoRenderTarget art(context, dstTexture->asRenderTarget());
robertphillips@google.com56c79b12012-07-11 20:57:46 +00001500 GrContext::AutoClip acs(context, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001501
1502 GrMatrix sampleM;
1503 sampleM.setIDiv(srcTexture->width(), srcTexture->height());
1504 GrPaint paint;
1505 paint.reset();
1506 paint.textureSampler(0)->setFilter(GrSamplerState::kBilinear_Filter);
1507 paint.textureSampler(0)->reset(sampleM);
1508 paint.textureSampler(0)->setCustomStage(stage);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001509 context->drawRect(paint, rect);
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001510}
1511
1512};
1513
reed@google.com8926b162012-03-23 15:36:36 +00001514static GrTexture* filter_texture(GrContext* context, GrTexture* texture,
1515 SkImageFilter* filter, const GrRect& rect) {
1516 GrAssert(filter);
1517
1518 SkSize blurSize;
1519 SkISize radius;
1520
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001521 GrTextureDesc desc;
1522 desc.fFlags = kRenderTarget_GrTextureFlagBit,
1523 desc.fWidth = SkScalarCeilToInt(rect.width());
1524 desc.fHeight = SkScalarCeilToInt(rect.height());
1525 desc.fConfig = kRGBA_8888_PM_GrPixelConfig;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001526 GrCustomStage* stage;
reed@google.com8926b162012-03-23 15:36:36 +00001527
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001528 if (filter->asNewCustomStage(&stage, texture)) {
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001529 GrAutoScratchTexture dst(context, desc);
1530 apply_custom_stage(context, texture, dst.texture(), rect, stage);
1531 texture = dst.detach();
1532 stage->unref();
1533 } else if (filter->asABlur(&blurSize)) {
senorblanco@chromium.org1e95d712012-07-18 19:52:53 +00001534 texture = context->gaussianBlur(texture, false, rect,
reed@google.com8926b162012-03-23 15:36:36 +00001535 blurSize.width(),
1536 blurSize.height());
reed@google.com8926b162012-03-23 15:36:36 +00001537 } else if (filter->asADilate(&radius)) {
reed@google.com8926b162012-03-23 15:36:36 +00001538 texture = context->applyMorphology(texture, rect,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001539 GrContext::kDilate_MorphologyType,
reed@google.com8926b162012-03-23 15:36:36 +00001540 radius);
reed@google.com8926b162012-03-23 15:36:36 +00001541 } else if (filter->asAnErode(&radius)) {
reed@google.com8926b162012-03-23 15:36:36 +00001542 texture = context->applyMorphology(texture, rect,
bsalomon@google.comb505a122012-05-31 18:40:36 +00001543 GrContext::kErode_MorphologyType,
reed@google.com8926b162012-03-23 15:36:36 +00001544 radius);
reed@google.com8926b162012-03-23 15:36:36 +00001545 }
1546 return texture;
1547}
1548
reed@google.comac10a2d2010-12-22 21:39:39 +00001549void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1550 int left, int top, const SkPaint& paint) {
1551 CHECK_SHOULD_DRAW(draw);
1552
reed@google.com8926b162012-03-23 15:36:36 +00001553 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001554 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1555 return;
1556 }
1557
reed@google.com76dd2772012-01-05 21:15:07 +00001558 int w = bitmap.width();
1559 int h = bitmap.height();
1560
bsalomon@google.com5782d712011-01-21 21:03:59 +00001561 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001562 SkAutoCachedTexture colorLutTexture;
1563 if(!skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001564 return;
1565 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001566
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001567 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001568
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001569 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001570
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001571 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001572 sampler->reset();
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001573 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.com8926b162012-03-23 15:36:36 +00001574 grPaint.setTexture(kBitmapTextureIdx, texture);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001575
reed@google.com8926b162012-03-23 15:36:36 +00001576 SkImageFilter* filter = paint.getImageFilter();
1577 if (NULL != filter) {
1578 GrTexture* filteredTexture = filter_texture(fContext, texture, filter,
robertphillips@google.com8637a362012-04-10 18:32:35 +00001579 GrRect::MakeWH(SkIntToScalar(w), SkIntToScalar(h)));
reed@google.com8926b162012-03-23 15:36:36 +00001580 if (filteredTexture) {
1581 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1582 texture = filteredTexture;
1583 filteredTexture->unref();
1584 }
reed@google.com76dd2772012-01-05 21:15:07 +00001585 }
reed@google.com8926b162012-03-23 15:36:36 +00001586
bsalomon@google.com5782d712011-01-21 21:03:59 +00001587 fContext->drawRectToRect(grPaint,
reed@google.com76dd2772012-01-05 21:15:07 +00001588 GrRect::MakeXYWH(GrIntToScalar(left),
1589 GrIntToScalar(top),
1590 GrIntToScalar(w),
1591 GrIntToScalar(h)),
1592 GrRect::MakeWH(GR_Scalar1 * w / texture->width(),
1593 GR_Scalar1 * h / texture->height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001594}
1595
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001596void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* device,
reed@google.comac10a2d2010-12-22 21:39:39 +00001597 int x, int y, const SkPaint& paint) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001598 // clear of the source device must occur before CHECK_SHOULD_DRAW
1599 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
1600 if (dev->fNeedClear) {
1601 // TODO: could check here whether we really need to draw at all
1602 dev->clear(0x0);
1603 }
1604
reed@google.comac10a2d2010-12-22 21:39:39 +00001605 CHECK_SHOULD_DRAW(draw);
1606
bsalomon@google.com5782d712011-01-21 21:03:59 +00001607 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001608 SkAutoCachedTexture colorLutTexture;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001609 if (!dev->bindDeviceAsTexture(&grPaint) ||
twiz@google.com58071162012-07-18 21:41:50 +00001610 !skPaint2GrPaintNoShader(this, paint, true, false, &colorLutTexture, &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001611 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001612 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001613
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001614 GrTexture* devTex = grPaint.getTexture(0);
1615 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001616
reed@google.com8926b162012-03-23 15:36:36 +00001617 SkImageFilter* filter = paint.getImageFilter();
1618 if (NULL != filter) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001619 GrRect rect = GrRect::MakeWH(SkIntToScalar(devTex->width()),
1620 SkIntToScalar(devTex->height()));
reed@google.com8926b162012-03-23 15:36:36 +00001621 GrTexture* filteredTexture = filter_texture(fContext, devTex, filter,
1622 rect);
1623 if (filteredTexture) {
1624 grPaint.setTexture(kBitmapTextureIdx, filteredTexture);
1625 devTex = filteredTexture;
1626 filteredTexture->unref();
1627 }
1628 }
1629
bsalomon@google.com5782d712011-01-21 21:03:59 +00001630 const SkBitmap& bm = dev->accessBitmap(false);
1631 int w = bm.width();
1632 int h = bm.height();
1633
robertphillips@google.comfea85ac2012-07-11 18:53:23 +00001634 GrContext::AutoMatrix avm(fContext, GrMatrix::I());
bsalomon@google.com5782d712011-01-21 21:03:59 +00001635
bsalomon@google.com97912912011-12-06 16:30:36 +00001636 grPaint.textureSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com5782d712011-01-21 21:03:59 +00001637
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001638 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1639 GrIntToScalar(y),
1640 GrIntToScalar(w),
1641 GrIntToScalar(h));
reed@google.com76dd2772012-01-05 21:15:07 +00001642
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001643 // The device being drawn may not fill up its texture (saveLayer uses
1644 // the approximate ).
1645 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1646 GR_Scalar1 * h / devTex->height());
1647
1648 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001649}
1650
reed@google.com8926b162012-03-23 15:36:36 +00001651bool SkGpuDevice::canHandleImageFilter(SkImageFilter* filter) {
reed@google.com76dd2772012-01-05 21:15:07 +00001652 SkSize size;
senorblanco@chromium.org05054f12012-03-02 21:05:45 +00001653 SkISize radius;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001654
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001655 if (!filter->asNewCustomStage(NULL, NULL) &&
senorblanco@chromium.org894790d2012-07-11 16:01:22 +00001656 !filter->asABlur(&size) &&
1657 !filter->asADilate(&radius) &&
1658 !filter->asAnErode(&radius)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001659 return false;
1660 }
reed@google.com8926b162012-03-23 15:36:36 +00001661 return true;
1662}
1663
1664bool SkGpuDevice::filterImage(SkImageFilter* filter, const SkBitmap& src,
1665 const SkMatrix& ctm,
1666 SkBitmap* result, SkIPoint* offset) {
1667 // want explicitly our impl, so guard against a subclass of us overriding it
1668 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
reed@google.com76dd2772012-01-05 21:15:07 +00001669 return false;
1670 }
reed@google.com8926b162012-03-23 15:36:36 +00001671
1672 SkAutoLockPixels alp(src, !src.getTexture());
1673 if (!src.getTexture() && !src.readyToDraw()) {
1674 return false;
1675 }
1676
1677 GrPaint paint;
1678 paint.reset();
1679
1680 GrSamplerState* sampler = paint.textureSampler(kBitmapTextureIdx);
1681
1682 GrTexture* texture;
1683 SkAutoCachedTexture act(this, src, sampler, &texture);
1684
1685 result->setConfig(src.config(), src.width(), src.height());
robertphillips@google.com8637a362012-04-10 18:32:35 +00001686 GrRect rect = GrRect::MakeWH(SkIntToScalar(src.width()),
1687 SkIntToScalar(src.height()));
reed@google.com8926b162012-03-23 15:36:36 +00001688 GrTexture* resultTexture = filter_texture(fContext, texture, filter, rect);
1689 if (resultTexture) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001690 result->setPixelRef(SkNEW_ARGS(SkGrTexturePixelRef,
1691 (resultTexture)))->unref();
reed@google.com8926b162012-03-23 15:36:36 +00001692 resultTexture->unref();
1693 }
reed@google.com76dd2772012-01-05 21:15:07 +00001694 return true;
1695}
1696
reed@google.comac10a2d2010-12-22 21:39:39 +00001697///////////////////////////////////////////////////////////////////////////////
1698
1699// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001700static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
bsalomon@google.com47059542012-06-06 20:51:20 +00001701 kTriangles_GrPrimitiveType,
1702 kTriangleStrip_GrPrimitiveType,
1703 kTriangleFan_GrPrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001704};
1705
1706void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1707 int vertexCount, const SkPoint vertices[],
1708 const SkPoint texs[], const SkColor colors[],
1709 SkXfermode* xmode,
1710 const uint16_t indices[], int indexCount,
1711 const SkPaint& paint) {
1712 CHECK_SHOULD_DRAW(draw);
1713
bsalomon@google.com5782d712011-01-21 21:03:59 +00001714 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001715 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com5782d712011-01-21 21:03:59 +00001716 // we ignore the shader if texs is null.
1717 if (NULL == texs) {
twiz@google.com58071162012-07-18 21:41:50 +00001718 if (!skPaint2GrPaintNoShader(this,
1719 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001720 false,
1721 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001722 &textures[kColorFilterTextureIdx],
bsalomon@google.com84405e02012-03-05 19:57:21 +00001723 &grPaint)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001724 return;
1725 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001726 } else {
bsalomon@google.com84405e02012-03-05 19:57:21 +00001727 if (!skPaint2GrPaintShader(this,
1728 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001729 NULL == colors,
twiz@google.com58071162012-07-18 21:41:50 +00001730 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001731 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001732 return;
1733 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001734 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001735
1736 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001737 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001738 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1739#if 0
1740 return
1741#endif
1742 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001743 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001744
bsalomon@google.com498776a2011-08-16 19:20:44 +00001745 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1746 if (NULL != colors) {
1747 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001748 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001749 for (int i = 0; i < vertexCount; ++i) {
rileya@google.com24f3ad12012-07-18 21:47:40 +00001750 convertedColors[i] = SkColor2GrColor(colors[i]);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001751 }
1752 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001753 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001754 fContext->drawVertices(grPaint,
1755 gVertexMode2PrimitiveType[vmode],
1756 vertexCount,
1757 (GrPoint*) vertices,
1758 (GrPoint*) texs,
1759 colors,
1760 indices,
1761 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001762}
1763
1764///////////////////////////////////////////////////////////////////////////////
1765
1766static void GlyphCacheAuxProc(void* data) {
reed@google.com26344cf2012-06-27 18:23:01 +00001767 GrFontScaler* scaler = (GrFontScaler*)data;
1768 SkSafeUnref(scaler);
reed@google.comac10a2d2010-12-22 21:39:39 +00001769}
1770
1771static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1772 void* auxData;
1773 GrFontScaler* scaler = NULL;
1774 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1775 scaler = (GrFontScaler*)auxData;
1776 }
1777 if (NULL == scaler) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001778 scaler = SkNEW_ARGS(SkGrFontScaler, (cache));
reed@google.comac10a2d2010-12-22 21:39:39 +00001779 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1780 }
1781 return scaler;
1782}
1783
1784static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1785 SkFixed fx, SkFixed fy,
1786 const SkGlyph& glyph) {
1787 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1788
bungeman@google.com15865a72012-01-11 16:28:04 +00001789 GrSkDrawProcs* procs = static_cast<GrSkDrawProcs*>(state.fDraw->fProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001790
1791 if (NULL == procs->fFontScaler) {
1792 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1793 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001794
bungeman@google.com15865a72012-01-11 16:28:04 +00001795 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
1796 glyph.getSubXFixed(),
1797 glyph.getSubYFixed()),
1798 SkFixedFloorToFixed(fx),
1799 SkFixedFloorToFixed(fy),
reed@google.comac10a2d2010-12-22 21:39:39 +00001800 procs->fFontScaler);
1801}
1802
bsalomon@google.com5782d712011-01-21 21:03:59 +00001803SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001804
1805 // deferred allocation
1806 if (NULL == fDrawProcs) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001807 fDrawProcs = SkNEW(GrSkDrawProcs);
reed@google.comac10a2d2010-12-22 21:39:39 +00001808 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1809 fDrawProcs->fContext = fContext;
1810 }
1811
1812 // init our (and GL's) state
1813 fDrawProcs->fTextContext = context;
1814 fDrawProcs->fFontScaler = NULL;
1815 return fDrawProcs;
1816}
1817
1818void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1819 size_t byteLength, SkScalar x, SkScalar y,
1820 const SkPaint& paint) {
1821 CHECK_SHOULD_DRAW(draw);
1822
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001823 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001824 // this guy will just call our drawPath()
1825 draw.drawText((const char*)text, byteLength, x, y, paint);
1826 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001827 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001828
1829 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001830 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001831 if (!skPaint2GrPaintShader(this,
1832 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001833 true,
twiz@google.com58071162012-07-18 21:41:50 +00001834 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001835 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001836 return;
1837 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001838 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1839 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001840 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1841 }
1842}
1843
1844void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1845 size_t byteLength, const SkScalar pos[],
1846 SkScalar constY, int scalarsPerPos,
1847 const SkPaint& paint) {
1848 CHECK_SHOULD_DRAW(draw);
1849
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001850 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001851 // this guy will just call our drawPath()
1852 draw.drawPosText((const char*)text, byteLength, pos, constY,
1853 scalarsPerPos, paint);
1854 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001855 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001856
1857 GrPaint grPaint;
twiz@google.com58071162012-07-18 21:41:50 +00001858 SkAutoCachedTexture textures[GrPaint::kMaxTextures];
bsalomon@google.com84405e02012-03-05 19:57:21 +00001859 if (!skPaint2GrPaintShader(this,
1860 paint,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001861 true,
twiz@google.com58071162012-07-18 21:41:50 +00001862 textures,
bsalomon@google.com84405e02012-03-05 19:57:21 +00001863 &grPaint)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001864 return;
1865 }
tomhudson@google.com375ff852012-06-29 18:37:57 +00001866 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
1867 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001868 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1869 scalarsPerPos, paint);
1870 }
1871}
1872
1873void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1874 size_t len, const SkPath& path,
1875 const SkMatrix* m, const SkPaint& paint) {
1876 CHECK_SHOULD_DRAW(draw);
1877
1878 SkASSERT(draw.fDevice == this);
1879 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1880}
1881
1882///////////////////////////////////////////////////////////////////////////////
1883
reed@google.comf67e4cf2011-03-15 20:56:58 +00001884bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1885 if (!paint.isLCDRenderText()) {
1886 // we're cool with the paint as is
1887 return false;
1888 }
1889
1890 if (paint.getShader() ||
1891 paint.getXfermode() || // unless its srcover
1892 paint.getMaskFilter() ||
1893 paint.getRasterizer() ||
1894 paint.getColorFilter() ||
1895 paint.getPathEffect() ||
1896 paint.isFakeBoldText() ||
1897 paint.getStyle() != SkPaint::kFill_Style) {
1898 // turn off lcd
1899 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1900 flags->fHinting = paint.getHinting();
1901 return true;
1902 }
1903 // we're cool with the paint as is
1904 return false;
1905}
1906
reed@google.com75d939b2011-12-07 15:07:23 +00001907void SkGpuDevice::flush() {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001908 DO_DEFERRED_CLEAR;
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001909 fContext->resolveRenderTarget(fRenderTarget);
reed@google.com75d939b2011-12-07 15:07:23 +00001910}
1911
reed@google.comf67e4cf2011-03-15 20:56:58 +00001912///////////////////////////////////////////////////////////////////////////////
1913
bsalomon@google.comfb309512011-11-30 14:13:48 +00001914bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
1915 const GrSamplerState& sampler) const {
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001916 uint64_t key = bitmap.getGenerationID();
bsalomon@google.comfb309512011-11-30 14:13:48 +00001917 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001918
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001919 GrTextureDesc desc;
1920 desc.fWidth = bitmap.width();
1921 desc.fHeight = bitmap.height();
rileya@google.com24f3ad12012-07-18 21:47:40 +00001922 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001923 desc.fClientCacheID = key;
robertphillips@google.coma1e57952012-06-04 20:05:28 +00001924
robertphillips@google.com75b3c962012-06-07 12:08:45 +00001925 return this->context()->isTextureInCache(desc, &sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001926}
1927
1928
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001929SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1930 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +00001931 bool isOpaque,
1932 Usage usage) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001933 GrTextureDesc desc;
1934 desc.fConfig = fRenderTarget->config();
1935 desc.fFlags = kRenderTarget_GrTextureFlagBit;
1936 desc.fWidth = width;
1937 desc.fHeight = height;
1938 desc.fSampleCnt = fRenderTarget->numSamples();
1939
1940 GrContext::TextureCacheEntry cacheEntry;
1941 GrTexture* texture;
1942 SkAutoTUnref<GrTexture> tunref;
bsalomon@google.com1b3ac8b2012-04-09 21:40:54 +00001943 // Skia's convention is to only clear a device if it is non-opaque.
1944 bool needClear = !isOpaque;
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001945
1946#if CACHE_COMPATIBLE_DEVICE_TEXTURES
1947 // layers are never draw in repeat modes, so we can request an approx
1948 // match and ignore any padding.
1949 GrContext::ScratchTexMatch matchType = (kSaveLayer_Usage == usage) ?
1950 GrContext::kApprox_ScratchTexMatch :
1951 GrContext::kExact_ScratchTexMatch;
1952 cacheEntry = fContext->lockScratchTexture(desc, matchType);
1953 texture = cacheEntry.texture();
1954#else
1955 tunref.reset(fContext->createUncachedTexture(desc, NULL, 0));
1956 texture = tunref.get();
1957#endif
1958 if (texture) {
1959 return SkNEW_ARGS(SkGpuDevice,(fContext,
1960 texture,
1961 cacheEntry,
1962 needClear));
1963 } else {
1964 GrPrintf("---- failed to create compatible device texture [%d %d]\n",
1965 width, height);
1966 return NULL;
1967 }
1968}
1969
1970SkGpuDevice::SkGpuDevice(GrContext* context,
1971 GrTexture* texture,
1972 TexCache cacheEntry,
1973 bool needClear)
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001974 : SkDevice(make_bitmap(context, texture->asRenderTarget()))
1975 , fClipStack(NULL) {
bsalomon@google.com06cd7322012-03-30 18:45:35 +00001976 GrAssert(texture && texture->asRenderTarget());
1977 GrAssert(NULL == cacheEntry.texture() || texture == cacheEntry.texture());
1978 this->initFromRenderTarget(context, texture->asRenderTarget());
1979 fCache = cacheEntry;
1980 fNeedClear = needClear;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001981}
1982