blob: b80d3a6063fc2251276865cd7ef9da83cf892e20 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#include "GrContext.h"
12#include "GrTextContext.h"
13
reed@google.comac10a2d2010-12-22 21:39:39 +000014#include "SkGpuDevice.h"
15#include "SkGrTexturePixelRef.h"
16
Scroggo97c88c22011-05-11 14:05:25 +000017#include "SkColorFilter.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000018#include "SkDrawProcs.h"
19#include "SkGlyphCache.h"
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +000020#include "SkImageFilter.h"
reed@google.comfe626382011-09-21 13:50:35 +000021#include "SkTLazy.h"
reed@google.comc9aa5872011-04-05 21:05:37 +000022#include "SkUtils.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000023
24#define CACHE_LAYER_TEXTURES 1
25
26#if 0
27 extern bool (*gShouldDrawProc)();
28 #define CHECK_SHOULD_DRAW(draw) \
29 do { \
30 if (gShouldDrawProc && !gShouldDrawProc()) return; \
31 this->prepareRenderTarget(draw); \
32 } while (0)
33#else
34 #define CHECK_SHOULD_DRAW(draw) this->prepareRenderTarget(draw)
35#endif
36
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +000037// we use the same texture slot on GrPaint for bitmaps and shaders
38// (since drawBitmap, drawSprite, and drawDevice ignore skia's shader)
39enum {
40 kBitmapTextureIdx = 0,
41 kShaderTextureIdx = 0
42};
43
reed@google.comcde92112011-07-06 20:00:52 +000044
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +000045#define MAX_BLUR_SIGMA 4.0f
46// FIXME: This value comes from from SkBlurMaskFilter.cpp.
47// Should probably be put in a common header someplace.
48#define MAX_BLUR_RADIUS SkIntToScalar(128)
49// This constant approximates the scaling done in the software path's
50// "high quality" mode, in SkBlurMask::Blur() (1 / sqrt(3)).
51// IMHO, it actually should be 1: we blur "less" than we should do
52// according to the CSS and canvas specs, simply because Safari does the same.
53// Firefox used to do the same too, until 4.0 where they fixed it. So at some
54// point we should probably get rid of these scaling constants and rebaseline
55// all the blur tests.
56#define BLUR_SIGMA_SCALE 0.6f
reed@google.comac10a2d2010-12-22 21:39:39 +000057///////////////////////////////////////////////////////////////////////////////
58
59SkGpuDevice::SkAutoCachedTexture::
60 SkAutoCachedTexture(SkGpuDevice* device,
61 const SkBitmap& bitmap,
bsalomon@google.com1fadb202011-12-12 16:10:08 +000062 const GrSamplerState* sampler,
reed@google.comac10a2d2010-12-22 21:39:39 +000063 GrTexture** texture) {
64 GrAssert(texture);
reed@google.comac10a2d2010-12-22 21:39:39 +000065 *texture = this->set(device, bitmap, sampler);
66}
67
68SkGpuDevice::SkAutoCachedTexture::SkAutoCachedTexture() {
reed@google.comac10a2d2010-12-22 21:39:39 +000069}
70
71GrTexture* SkGpuDevice::SkAutoCachedTexture::set(SkGpuDevice* device,
72 const SkBitmap& bitmap,
bsalomon@google.com1fadb202011-12-12 16:10:08 +000073 const GrSamplerState* sampler) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +000074 if (fTex.texture()) {
reed@google.comac10a2d2010-12-22 21:39:39 +000075 fDevice->unlockCachedTexture(fTex);
76 }
77 fDevice = device;
78 GrTexture* texture = (GrTexture*)bitmap.getTexture();
79 if (texture) {
80 // return the native texture
bsalomon@google.com50398bf2011-07-26 20:45:30 +000081 fTex.reset();
reed@google.comac10a2d2010-12-22 21:39:39 +000082 } else {
83 // look it up in our cache
bsalomon@google.com50398bf2011-07-26 20:45:30 +000084 fTex = device->lockCachedTexture(bitmap, sampler);
85 texture = fTex.texture();
reed@google.comac10a2d2010-12-22 21:39:39 +000086 }
87 return texture;
88}
89
90SkGpuDevice::SkAutoCachedTexture::~SkAutoCachedTexture() {
bsalomon@google.com50398bf2011-07-26 20:45:30 +000091 if (fTex.texture()) {
reed@google.comac10a2d2010-12-22 21:39:39 +000092 fDevice->unlockCachedTexture(fTex);
93 }
94}
95
96///////////////////////////////////////////////////////////////////////////////
97
98bool gDoTraceDraw;
99
100struct GrSkDrawProcs : public SkDrawProcs {
101public:
102 GrContext* fContext;
103 GrTextContext* fTextContext;
104 GrFontScaler* fFontScaler; // cached in the skia glyphcache
105};
106
107///////////////////////////////////////////////////////////////////////////////
108
reed@google.comaf951c92011-06-16 19:10:39 +0000109static SkBitmap::Config grConfig2skConfig(GrPixelConfig config, bool* isOpaque) {
110 switch (config) {
111 case kAlpha_8_GrPixelConfig:
112 *isOpaque = false;
113 return SkBitmap::kA8_Config;
114 case kRGB_565_GrPixelConfig:
115 *isOpaque = true;
116 return SkBitmap::kRGB_565_Config;
117 case kRGBA_4444_GrPixelConfig:
118 *isOpaque = false;
119 return SkBitmap::kARGB_4444_Config;
bsalomon@google.comc4364992011-11-07 15:54:49 +0000120 case kSkia8888_PM_GrPixelConfig:
121 // we don't currently have a way of knowing whether
122 // a 8888 is opaque based on the config.
123 *isOpaque = false;
reed@google.comaf951c92011-06-16 19:10:39 +0000124 return SkBitmap::kARGB_8888_Config;
125 default:
126 *isOpaque = false;
127 return SkBitmap::kNo_Config;
128 }
129}
reed@google.comac10a2d2010-12-22 21:39:39 +0000130
reed@google.comaf951c92011-06-16 19:10:39 +0000131static SkBitmap make_bitmap(GrContext* context, GrRenderTarget* renderTarget) {
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000132 GrPixelConfig config = renderTarget->config();
reed@google.comaf951c92011-06-16 19:10:39 +0000133
134 bool isOpaque;
135 SkBitmap bitmap;
136 bitmap.setConfig(grConfig2skConfig(config, &isOpaque),
137 renderTarget->width(), renderTarget->height());
138 bitmap.setIsOpaque(isOpaque);
139 return bitmap;
140}
141
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000142SkGpuDevice::SkGpuDevice(GrContext* context, GrTexture* texture)
143: SkDevice(make_bitmap(context, texture->asRenderTarget())) {
144 this->initFromRenderTarget(context, texture->asRenderTarget());
145}
146
reed@google.comaf951c92011-06-16 19:10:39 +0000147SkGpuDevice::SkGpuDevice(GrContext* context, GrRenderTarget* renderTarget)
148: SkDevice(make_bitmap(context, renderTarget)) {
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000149 this->initFromRenderTarget(context, renderTarget);
150}
151
152void SkGpuDevice::initFromRenderTarget(GrContext* context,
153 GrRenderTarget* renderTarget) {
reed@google.comaf951c92011-06-16 19:10:39 +0000154 fNeedPrepareRenderTarget = false;
155 fDrawProcs = NULL;
156
157 fContext = context;
158 fContext->ref();
159
reed@google.comaf951c92011-06-16 19:10:39 +0000160 fTexture = NULL;
161 fRenderTarget = NULL;
162 fNeedClear = false;
163
bsalomon@google.com971d0c82011-08-19 17:22:05 +0000164 GrAssert(NULL != renderTarget);
165 fRenderTarget = renderTarget;
166 fRenderTarget->ref();
167 // if this RT is also a texture, hold a ref on it
168 fTexture = fRenderTarget->asTexture();
169 SkSafeRef(fTexture);
reed@google.comaf951c92011-06-16 19:10:39 +0000170
171 SkGrRenderTargetPixelRef* pr = new SkGrRenderTargetPixelRef(fRenderTarget);
172 this->setPixelRef(pr, 0)->unref();
173}
174
175SkGpuDevice::SkGpuDevice(GrContext* context, SkBitmap::Config config, int width,
bsalomon@google.come97f0852011-06-17 13:10:25 +0000176 int height, Usage usage)
reed@google.comaf951c92011-06-16 19:10:39 +0000177: SkDevice(config, width, height, false /*isOpaque*/) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000178 fNeedPrepareRenderTarget = false;
179 fDrawProcs = NULL;
180
reed@google.com7b201d22011-01-11 18:59:23 +0000181 fContext = context;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000182 fContext->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000183
reed@google.comac10a2d2010-12-22 21:39:39 +0000184 fTexture = NULL;
185 fRenderTarget = NULL;
186 fNeedClear = false;
187
reed@google.comaf951c92011-06-16 19:10:39 +0000188 if (config != SkBitmap::kRGB_565_Config) {
189 config = SkBitmap::kARGB_8888_Config;
190 }
191 SkBitmap bm;
192 bm.setConfig(config, width, height);
reed@google.comac10a2d2010-12-22 21:39:39 +0000193
194#if CACHE_LAYER_TEXTURES
bsalomon@google.come97f0852011-06-17 13:10:25 +0000195 TexType type = (kSaveLayer_Usage == usage) ?
196 kSaveLayerDeviceRenderTarget_TexType :
197 kDeviceRenderTarget_TexType;
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000198 fCache = this->lockCachedTexture(bm, NULL, type);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000199 fTexture = fCache.texture();
200 if (fTexture) {
reed@google.comaf951c92011-06-16 19:10:39 +0000201 SkASSERT(NULL != fTexture->asRenderTarget());
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000202 // hold a ref directly on fTexture (even though fCache has one) to match
203 // other constructor paths. Simplifies cleanup.
204 fTexture->ref();
reed@google.comaf951c92011-06-16 19:10:39 +0000205 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000206#else
reed@google.comaf951c92011-06-16 19:10:39 +0000207 const GrTextureDesc desc = {
208 kRenderTarget_GrTextureFlagBit,
209 kNone_GrAALevel,
210 width,
211 height,
212 SkGr::Bitmap2PixelConfig(bm)
213 };
reed@google.comac10a2d2010-12-22 21:39:39 +0000214
reed@google.comaf951c92011-06-16 19:10:39 +0000215 fTexture = fContext->createUncachedTexture(desc, NULL, 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000216#endif
reed@google.comaf951c92011-06-16 19:10:39 +0000217 if (NULL != fTexture) {
218 fRenderTarget = fTexture->asRenderTarget();
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000219 fRenderTarget->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000220
reed@google.comaf951c92011-06-16 19:10:39 +0000221 GrAssert(NULL != fRenderTarget);
reed@google.comac10a2d2010-12-22 21:39:39 +0000222
reed@google.comaf951c92011-06-16 19:10:39 +0000223 // we defer the actual clear until our gainFocus()
224 fNeedClear = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000225
reed@google.comaf951c92011-06-16 19:10:39 +0000226 // wrap the bitmap with a pixelref to expose our texture
227 SkGrTexturePixelRef* pr = new SkGrTexturePixelRef(fTexture);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000228 this->setPixelRef(pr, 0)->unref();
reed@google.comaf951c92011-06-16 19:10:39 +0000229 } else {
230 GrPrintf("--- failed to create gpu-offscreen [%d %d]\n",
231 width, height);
232 GrAssert(false);
reed@google.comac10a2d2010-12-22 21:39:39 +0000233 }
234}
235
236SkGpuDevice::~SkGpuDevice() {
237 if (fDrawProcs) {
238 delete fDrawProcs;
239 }
240
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000241 SkSafeUnref(fTexture);
242 SkSafeUnref(fRenderTarget);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000243 if (fCache.texture()) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000244 GrAssert(NULL != fTexture);
245 GrAssert(fRenderTarget == fTexture->asRenderTarget());
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000246 fContext->unlockTexture(fCache);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000247 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000248 fContext->unref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000249}
250
reed@google.comac10a2d2010-12-22 21:39:39 +0000251///////////////////////////////////////////////////////////////////////////////
252
253void SkGpuDevice::makeRenderTargetCurrent() {
254 fContext->setRenderTarget(fRenderTarget);
255 fContext->flush(true);
256 fNeedPrepareRenderTarget = true;
257}
258
259///////////////////////////////////////////////////////////////////////////////
260
bsalomon@google.comc4364992011-11-07 15:54:49 +0000261namespace {
262GrPixelConfig config8888_to_gr_config(SkCanvas::Config8888 config8888) {
263 switch (config8888) {
264 case SkCanvas::kNative_Premul_Config8888:
265 return kSkia8888_PM_GrPixelConfig;
266 case SkCanvas::kNative_Unpremul_Config8888:
267 return kSkia8888_UPM_GrPixelConfig;
268 case SkCanvas::kBGRA_Premul_Config8888:
269 return kBGRA_8888_PM_GrPixelConfig;
270 case SkCanvas::kBGRA_Unpremul_Config8888:
271 return kBGRA_8888_UPM_GrPixelConfig;
272 case SkCanvas::kRGBA_Premul_Config8888:
273 return kRGBA_8888_PM_GrPixelConfig;
274 case SkCanvas::kRGBA_Unpremul_Config8888:
275 return kRGBA_8888_UPM_GrPixelConfig;
276 default:
277 GrCrash("Unexpected Config8888.");
278 return kSkia8888_PM_GrPixelConfig;
279 }
280}
281}
282
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000283bool SkGpuDevice::onReadPixels(const SkBitmap& bitmap,
284 int x, int y,
285 SkCanvas::Config8888 config8888) {
bsalomon@google.com910267d2011-11-02 20:06:25 +0000286 SkASSERT(SkBitmap::kARGB_8888_Config == bitmap.config());
287 SkASSERT(!bitmap.isNull());
288 SkASSERT(SkIRect::MakeWH(this->width(), this->height()).contains(SkIRect::MakeXYWH(x, y, bitmap.width(), bitmap.height())));
reed@google.comac10a2d2010-12-22 21:39:39 +0000289
bsalomon@google.com910267d2011-11-02 20:06:25 +0000290 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000291 GrPixelConfig config;
292 config = config8888_to_gr_config(config8888);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000293 return fContext->readRenderTargetPixels(fRenderTarget,
294 x, y,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000295 bitmap.width(),
296 bitmap.height(),
bsalomon@google.comc4364992011-11-07 15:54:49 +0000297 config,
bsalomon@google.com910267d2011-11-02 20:06:25 +0000298 bitmap.getPixels(),
299 bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000300}
301
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000302void SkGpuDevice::writePixels(const SkBitmap& bitmap, int x, int y,
303 SkCanvas::Config8888 config8888) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000304 SkAutoLockPixels alp(bitmap);
305 if (!bitmap.readyToDraw()) {
306 return;
307 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000308
309 GrPixelConfig config;
310 if (SkBitmap::kARGB_8888_Config == bitmap.config()) {
311 config = config8888_to_gr_config(config8888);
312 } else {
313 config= SkGr::BitmapConfig2PixelConfig(bitmap.config(),
314 bitmap.isOpaque());
315 }
316
bsalomon@google.com6f379512011-11-16 20:36:03 +0000317 fRenderTarget->writePixels(x, y, bitmap.width(), bitmap.height(),
318 config, bitmap.getPixels(), bitmap.rowBytes());
reed@google.comac10a2d2010-12-22 21:39:39 +0000319}
320
321///////////////////////////////////////////////////////////////////////////////
322
323static void convert_matrixclip(GrContext* context, const SkMatrix& matrix,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000324 const SkClipStack& clipStack,
reed@google.com6f8f2922011-03-04 22:27:10 +0000325 const SkRegion& clipRegion,
326 const SkIPoint& origin) {
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000327 context->setMatrix(matrix);
reed@google.comac10a2d2010-12-22 21:39:39 +0000328
329 SkGrClipIterator iter;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000330 iter.reset(clipStack);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000331 const SkIRect& skBounds = clipRegion.getBounds();
332 GrRect bounds;
333 bounds.setLTRB(GrIntToScalar(skBounds.fLeft),
334 GrIntToScalar(skBounds.fTop),
335 GrIntToScalar(skBounds.fRight),
336 GrIntToScalar(skBounds.fBottom));
reed@google.com6f8f2922011-03-04 22:27:10 +0000337 GrClip grc(&iter, GrIntToScalar(-origin.x()), GrIntToScalar(-origin.y()),
338 &bounds);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000339 context->setClip(grc);
reed@google.comac10a2d2010-12-22 21:39:39 +0000340}
341
342// call this ever each draw call, to ensure that the context reflects our state,
343// and not the state from some other canvas/device
344void SkGpuDevice::prepareRenderTarget(const SkDraw& draw) {
345 if (fNeedPrepareRenderTarget ||
bsalomon@google.com5782d712011-01-21 21:03:59 +0000346 fContext->getRenderTarget() != fRenderTarget) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000347
348 fContext->setRenderTarget(fRenderTarget);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000349 SkASSERT(draw.fClipStack);
350 convert_matrixclip(fContext, *draw.fMatrix,
reed@google.com6f8f2922011-03-04 22:27:10 +0000351 *draw.fClipStack, *draw.fClip, this->getOrigin());
reed@google.comac10a2d2010-12-22 21:39:39 +0000352 fNeedPrepareRenderTarget = false;
353 }
354}
355
tomhudson@google.com8a0b0292011-09-13 14:41:06 +0000356void SkGpuDevice::setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
357 const SkClipStack& clipStack) {
358 this->INHERITED::setMatrixClip(matrix, clip, clipStack);
359 // We don't need to set them now because the context may not reflect this device.
bsalomon@google.coma7bf6e22011-04-11 19:20:46 +0000360 fNeedPrepareRenderTarget = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000361}
362
363void SkGpuDevice::gainFocus(SkCanvas* canvas, const SkMatrix& matrix,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000364 const SkRegion& clip, const SkClipStack& clipStack) {
365
reed@google.comac10a2d2010-12-22 21:39:39 +0000366 fContext->setRenderTarget(fRenderTarget);
367
bsalomon@google.comd302f142011-03-03 13:54:13 +0000368 this->INHERITED::gainFocus(canvas, matrix, clip, clipStack);
reed@google.comac10a2d2010-12-22 21:39:39 +0000369
reed@google.com6f8f2922011-03-04 22:27:10 +0000370 convert_matrixclip(fContext, matrix, clipStack, clip, this->getOrigin());
reed@google.comac10a2d2010-12-22 21:39:39 +0000371
372 if (fNeedClear) {
bsalomon@google.com31a58402011-04-27 21:00:02 +0000373 fContext->clear(NULL, 0x0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000374 fNeedClear = false;
375 }
376}
377
reed@google.com75d939b2011-12-07 15:07:23 +0000378SkGpuRenderTarget* SkGpuDevice::accessRenderTarget() {
379 return (SkGpuRenderTarget*)fRenderTarget;
380}
381
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000382bool SkGpuDevice::bindDeviceAsTexture(GrPaint* paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000383 if (NULL != fTexture) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000384 paint->setTexture(kBitmapTextureIdx, fTexture);
reed@google.comac10a2d2010-12-22 21:39:39 +0000385 return true;
386 }
387 return false;
388}
389
390///////////////////////////////////////////////////////////////////////////////
391
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000392SK_COMPILE_ASSERT(SkShader::kNone_BitmapType == 0, shader_type_mismatch);
393SK_COMPILE_ASSERT(SkShader::kDefault_BitmapType == 1, shader_type_mismatch);
394SK_COMPILE_ASSERT(SkShader::kRadial_BitmapType == 2, shader_type_mismatch);
395SK_COMPILE_ASSERT(SkShader::kSweep_BitmapType == 3, shader_type_mismatch);
396SK_COMPILE_ASSERT(SkShader::kTwoPointRadial_BitmapType == 4,
397 shader_type_mismatch);
398SK_COMPILE_ASSERT(SkShader::kLast_BitmapType == 4, shader_type_mismatch);
reed@google.comac10a2d2010-12-22 21:39:39 +0000399
bsalomon@google.com5782d712011-01-21 21:03:59 +0000400static const GrSamplerState::SampleMode sk_bmp_type_to_sample_mode[] = {
401 (GrSamplerState::SampleMode) -1, // kNone_BitmapType
402 GrSamplerState::kNormal_SampleMode, // kDefault_BitmapType
403 GrSamplerState::kRadial_SampleMode, // kRadial_BitmapType
404 GrSamplerState::kSweep_SampleMode, // kSweep_BitmapType
405 GrSamplerState::kRadial2_SampleMode, // kTwoPointRadial_BitmapType
406};
407
408bool SkGpuDevice::skPaint2GrPaintNoShader(const SkPaint& skPaint,
409 bool justAlpha,
Scroggod757df22011-05-16 13:11:16 +0000410 GrPaint* grPaint,
411 bool constantColor) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000412
413 grPaint->fDither = skPaint.isDither();
414 grPaint->fAntiAlias = skPaint.isAntiAlias();
415
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000416 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
417 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000418
419 SkXfermode* mode = skPaint.getXfermode();
420 if (mode) {
421 if (!mode->asCoeff(&sm, &dm)) {
bsalomon@google.com979432b2011-11-05 21:38:22 +0000422 //SkDEBUGCODE(SkDebugf("Unsupported xfer mode.\n");)
bsalomon@google.com5782d712011-01-21 21:03:59 +0000423#if 0
424 return false;
425#endif
426 }
427 }
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000428 grPaint->fSrcBlendCoeff = sk_blend_to_grblend(sm);
429 grPaint->fDstBlendCoeff = sk_blend_to_grblend(dm);
430
bsalomon@google.com5782d712011-01-21 21:03:59 +0000431 if (justAlpha) {
432 uint8_t alpha = skPaint.getAlpha();
433 grPaint->fColor = GrColorPackRGBA(alpha, alpha, alpha, alpha);
Scroggod757df22011-05-16 13:11:16 +0000434 // justAlpha is currently set to true only if there is a texture,
435 // so constantColor should not also be true.
436 GrAssert(!constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000437 } else {
438 grPaint->fColor = SkGr::SkColor2GrColor(skPaint.getColor());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000439 grPaint->setTexture(kShaderTextureIdx, NULL);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000440 }
Scroggo97c88c22011-05-11 14:05:25 +0000441 SkColorFilter* colorFilter = skPaint.getColorFilter();
442 SkColor color;
443 SkXfermode::Mode filterMode;
444 if (colorFilter != NULL && colorFilter->asColorMode(&color, &filterMode)) {
Scroggod757df22011-05-16 13:11:16 +0000445 if (!constantColor) {
446 grPaint->fColorFilterColor = SkGr::SkColor2GrColor(color);
447 grPaint->fColorFilterXfermode = filterMode;
448 return true;
449 }
450 SkColor filtered = colorFilter->filterColor(skPaint.getColor());
451 grPaint->fColor = SkGr::SkColor2GrColor(filtered);
Scroggo97c88c22011-05-11 14:05:25 +0000452 }
Scroggod757df22011-05-16 13:11:16 +0000453 grPaint->resetColorFilter();
bsalomon@google.com5782d712011-01-21 21:03:59 +0000454 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000455}
456
bsalomon@google.com5782d712011-01-21 21:03:59 +0000457bool SkGpuDevice::skPaint2GrPaintShader(const SkPaint& skPaint,
458 SkAutoCachedTexture* act,
459 const SkMatrix& ctm,
Scroggod757df22011-05-16 13:11:16 +0000460 GrPaint* grPaint,
461 bool constantColor) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000462
bsalomon@google.com5782d712011-01-21 21:03:59 +0000463 SkASSERT(NULL != act);
reed@google.comac10a2d2010-12-22 21:39:39 +0000464
bsalomon@google.com5782d712011-01-21 21:03:59 +0000465 SkShader* shader = skPaint.getShader();
reed@google.comac10a2d2010-12-22 21:39:39 +0000466 if (NULL == shader) {
Scroggod757df22011-05-16 13:11:16 +0000467 return this->skPaint2GrPaintNoShader(skPaint,
468 false,
469 grPaint,
470 constantColor);
471 } else if (!this->skPaint2GrPaintNoShader(skPaint, true, grPaint, false)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000472 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000473 }
474
reed@google.comac10a2d2010-12-22 21:39:39 +0000475 SkBitmap bitmap;
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000476 SkMatrix* matrix = grPaint->textureSampler(kShaderTextureIdx)->matrix();
reed@google.comac10a2d2010-12-22 21:39:39 +0000477 SkShader::TileMode tileModes[2];
478 SkScalar twoPointParams[3];
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000479 SkShader::BitmapType bmptype = shader->asABitmap(&bitmap, matrix,
reed@google.comac10a2d2010-12-22 21:39:39 +0000480 tileModes, twoPointParams);
481
bsalomon@google.com5782d712011-01-21 21:03:59 +0000482 GrSamplerState::SampleMode sampleMode = sk_bmp_type_to_sample_mode[bmptype];
483 if (-1 == sampleMode) {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000484 SkShader::GradientInfo info;
485 SkColor color;
486
487 info.fColors = &color;
488 info.fColorOffsets = NULL;
489 info.fColorCount = 1;
490 if (SkShader::kColor_GradientType == shader->asAGradient(&info)) {
491 SkPaint copy(skPaint);
492 copy.setShader(NULL);
bsalomon@google.comcd9cfd72011-07-08 16:55:04 +0000493 // modulate the paint alpha by the shader's solid color alpha
494 U8CPU newA = SkMulDiv255Round(SkColorGetA(color), copy.getAlpha());
495 copy.setColor(SkColorSetA(color, newA));
reed@google.com2be9e8b2011-07-06 21:18:09 +0000496 return this->skPaint2GrPaintNoShader(copy,
497 false,
498 grPaint,
499 constantColor);
500 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000501 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000502 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000503 GrSamplerState* sampler = grPaint->textureSampler(kShaderTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000504 sampler->setSampleMode(sampleMode);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000505 if (skPaint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000506 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000507 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000508 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000509 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000510 sampler->setWrapX(sk_tile_mode_to_grwrap(tileModes[0]));
511 sampler->setWrapY(sk_tile_mode_to_grwrap(tileModes[1]));
reed@google.comac10a2d2010-12-22 21:39:39 +0000512 if (GrSamplerState::kRadial2_SampleMode == sampleMode) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000513 sampler->setRadial2Params(twoPointParams[0],
514 twoPointParams[1],
515 twoPointParams[2] < 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000516 }
517
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000518 GrTexture* texture = act->set(this, bitmap, sampler);
reed@google.comac10a2d2010-12-22 21:39:39 +0000519 if (NULL == texture) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000520 SkDebugf("Couldn't convert bitmap to texture.\n");
521 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000522 }
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000523 grPaint->setTexture(kShaderTextureIdx, texture);
reed@google.comac10a2d2010-12-22 21:39:39 +0000524
525 // since our texture coords will be in local space, we wack the texture
526 // matrix to map them back into 0...1 before we load it
527 SkMatrix localM;
528 if (shader->getLocalMatrix(&localM)) {
529 SkMatrix inverse;
530 if (localM.invert(&inverse)) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000531 matrix->preConcat(inverse);
reed@google.comac10a2d2010-12-22 21:39:39 +0000532 }
533 }
534 if (SkShader::kDefault_BitmapType == bmptype) {
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000535 GrScalar sx = GrFixedToScalar(GR_Fixed1 / bitmap.width());
536 GrScalar sy = GrFixedToScalar(GR_Fixed1 / bitmap.height());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000537 matrix->postScale(sx, sy);
reed@google.comac10a2d2010-12-22 21:39:39 +0000538 } else if (SkShader::kRadial_BitmapType == bmptype) {
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000539 GrScalar s = GrFixedToScalar(GR_Fixed1 / bitmap.width());
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000540 matrix->postScale(s, s);
reed@google.comac10a2d2010-12-22 21:39:39 +0000541 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000542
543 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000544}
545
546///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com5782d712011-01-21 21:03:59 +0000547
bsalomon@google.com398109c2011-04-14 18:40:27 +0000548void SkGpuDevice::clear(SkColor color) {
bsalomon@google.com31a58402011-04-27 21:00:02 +0000549 fContext->clear(NULL, color);
bsalomon@google.com398109c2011-04-14 18:40:27 +0000550}
551
reed@google.comac10a2d2010-12-22 21:39:39 +0000552void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
553 CHECK_SHOULD_DRAW(draw);
554
bsalomon@google.com5782d712011-01-21 21:03:59 +0000555 GrPaint grPaint;
556 SkAutoCachedTexture act;
Scroggod757df22011-05-16 13:11:16 +0000557 if (!this->skPaint2GrPaintShader(paint,
558 &act,
559 *draw.fMatrix,
560 &grPaint,
561 true)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000562 return;
563 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000564
565 fContext->drawPaint(grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000566}
567
568// must be in SkCanvas::PointMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +0000569static const GrPrimitiveType gPointMode2PrimtiveType[] = {
570 kPoints_PrimitiveType,
571 kLines_PrimitiveType,
572 kLineStrip_PrimitiveType
reed@google.comac10a2d2010-12-22 21:39:39 +0000573};
574
575void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000576 size_t count, const SkPoint pts[], const SkPaint& paint) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000577 CHECK_SHOULD_DRAW(draw);
578
579 SkScalar width = paint.getStrokeWidth();
580 if (width < 0) {
581 return;
582 }
583
584 // we only handle hairlines here, else we let the SkDraw call our drawPath()
585 if (width > 0) {
586 draw.drawPoints(mode, count, pts, paint, true);
587 return;
588 }
589
bsalomon@google.com5782d712011-01-21 21:03:59 +0000590 GrPaint grPaint;
591 SkAutoCachedTexture act;
Scroggod757df22011-05-16 13:11:16 +0000592 if (!this->skPaint2GrPaintShader(paint,
593 &act,
594 *draw.fMatrix,
595 &grPaint,
596 true)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000597 return;
598 }
599
bsalomon@google.com5782d712011-01-21 21:03:59 +0000600 fContext->drawVertices(grPaint,
601 gPointMode2PrimtiveType[mode],
602 count,
603 (GrPoint*)pts,
604 NULL,
605 NULL,
606 NULL,
607 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000608}
609
reed@google.comc9aa5872011-04-05 21:05:37 +0000610///////////////////////////////////////////////////////////////////////////////
611
reed@google.comac10a2d2010-12-22 21:39:39 +0000612void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
613 const SkPaint& paint) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000614 CHECK_SHOULD_DRAW(draw);
615
bungeman@google.com79bd8772011-07-18 15:34:08 +0000616 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000617 SkScalar width = paint.getStrokeWidth();
618
619 /*
620 We have special code for hairline strokes, miter-strokes, and fills.
621 Anything else we just call our path code.
622 */
623 bool usePath = doStroke && width > 0 &&
624 paint.getStrokeJoin() != SkPaint::kMiter_Join;
625 // another reason we might need to call drawPath...
626 if (paint.getMaskFilter()) {
627 usePath = true;
628 }
reed@google.com67db6642011-05-26 11:46:35 +0000629 // until we aa rotated rects...
630 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
631 usePath = true;
632 }
bungeman@google.com633722e2011-08-09 18:32:51 +0000633 // small miter limit means right angles show bevel...
634 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
635 paint.getStrokeMiter() < SK_ScalarSqrt2)
636 {
637 usePath = true;
638 }
bungeman@google.com79bd8772011-07-18 15:34:08 +0000639 // until we can both stroke and fill rectangles
bungeman@google.com79bd8772011-07-18 15:34:08 +0000640 if (paint.getStyle() == SkPaint::kStrokeAndFill_Style) {
641 usePath = true;
642 }
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000643
644 if (usePath) {
645 SkPath path;
646 path.addRect(rect);
647 this->drawPath(draw, path, paint, NULL, true);
648 return;
649 }
650
651 GrPaint grPaint;
652 SkAutoCachedTexture act;
Scroggod757df22011-05-16 13:11:16 +0000653 if (!this->skPaint2GrPaintShader(paint,
654 &act,
655 *draw.fMatrix,
656 &grPaint,
657 true)) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000658 return;
659 }
reed@google.com20efde72011-05-09 17:00:02 +0000660 fContext->drawRect(grPaint, rect, doStroke ? width : -1);
reed@google.comac10a2d2010-12-22 21:39:39 +0000661}
662
reed@google.com69302852011-02-16 18:08:07 +0000663#include "SkMaskFilter.h"
664#include "SkBounder.h"
665
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000666static GrPathFill skToGrFillType(SkPath::FillType fillType) {
667 switch (fillType) {
668 case SkPath::kWinding_FillType:
669 return kWinding_PathFill;
670 case SkPath::kEvenOdd_FillType:
671 return kEvenOdd_PathFill;
672 case SkPath::kInverseWinding_FillType:
673 return kInverseWinding_PathFill;
674 case SkPath::kInverseEvenOdd_FillType:
675 return kInverseEvenOdd_PathFill;
676 default:
677 SkDebugf("Unsupported path fill type\n");
678 return kHairLine_PathFill;
679 }
680}
681
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000682static void buildKernel(float sigma, float* kernel, int kernelWidth) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000683 int halfWidth = (kernelWidth - 1) / 2;
684 float sum = 0.0f;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000685 float denom = 1.0f / (2.0f * sigma * sigma);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000686 for (int i = 0; i < kernelWidth; ++i) {
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000687 float x = static_cast<float>(i - halfWidth);
688 // Note that the constant term (1/(sqrt(2*pi*sigma^2)) of the Gaussian
689 // is dropped here, since we renormalize the kernel below.
690 kernel[i] = sk_float_exp(- x * x * denom);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000691 sum += kernel[i];
692 }
693 // Normalize the kernel
694 float scale = 1.0f / sum;
695 for (int i = 0; i < kernelWidth; ++i)
696 kernel[i] *= scale;
697}
698
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000699static void scaleRect(SkRect* rect, float xScale, float yScale) {
700 rect->fLeft *= xScale;
701 rect->fTop *= yScale;
702 rect->fRight *= xScale;
703 rect->fBottom *= yScale;
704}
705
706static float adjustSigma(float sigma, int *scaleFactor, int *halfWidth,
707 int *kernelWidth) {
708 *scaleFactor = 1;
709 while (sigma > MAX_BLUR_SIGMA) {
710 *scaleFactor *= 2;
711 sigma *= 0.5f;
712 }
713 *halfWidth = static_cast<int>(ceilf(sigma * 3.0f));
714 *kernelWidth = *halfWidth * 2 + 1;
715 return sigma;
716}
717
718// Apply a Gaussian blur to srcTexture by sigmaX and sigmaY, within the given
719// rect.
720// temp1 and temp2 are used for allocation of intermediate textures.
721// If temp2 is non-NULL, srcTexture will be untouched, and the return
722// value will be either temp1 or temp2.
723// If temp2 is NULL, srcTexture will be overwritten with intermediate
724// results, and the return value will either be temp1 or srcTexture.
725static GrTexture* gaussianBlur(GrContext* context, GrTexture* srcTexture,
726 GrAutoScratchTexture* temp1,
727 GrAutoScratchTexture* temp2,
728 const SkRect& rect,
729 float sigmaX, float sigmaY) {
730
731 GrRenderTarget* oldRenderTarget = context->getRenderTarget();
732 GrClip oldClip = context->getClip();
733 GrTexture* origTexture = srcTexture;
734 GrAutoMatrix avm(context, GrMatrix::I());
735 SkIRect clearRect;
736 int scaleFactorX, halfWidthX, kernelWidthX;
737 int scaleFactorY, halfWidthY, kernelWidthY;
738 sigmaX = adjustSigma(sigmaX, &scaleFactorX, &halfWidthX, &kernelWidthX);
739 sigmaY = adjustSigma(sigmaY, &scaleFactorY, &halfWidthY, &kernelWidthY);
740
741 SkRect srcRect(rect);
742 scaleRect(&srcRect, 1.0f / scaleFactorX, 1.0f / scaleFactorY);
743 srcRect.roundOut();
744 scaleRect(&srcRect, scaleFactorX, scaleFactorY);
745 context->setClip(srcRect);
746
747 const GrTextureDesc desc = {
748 kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit,
749 kNone_GrAALevel,
750 srcRect.width(),
751 srcRect.height(),
bsalomon@google.com5bc34f02011-12-06 14:46:34 +0000752 kRGBA_8888_GrPixelConfig
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000753 };
754
755 temp1->set(context, desc);
756 if (temp2) temp2->set(context, desc);
757
758 GrTexture* dstTexture = temp1->texture();
759 GrPaint paint;
760 paint.reset();
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000761 paint.textureSampler(0)->setFilter(GrSamplerState::kBilinear_Filter);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000762
763 for (int i = 1; i < scaleFactorX || i < scaleFactorY; i *= 2) {
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000764 paint.textureSampler(0)->matrix()->setIDiv(srcTexture->width(),
765 srcTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000766 context->setRenderTarget(dstTexture->asRenderTarget());
767 SkRect dstRect(srcRect);
768 scaleRect(&dstRect, i < scaleFactorX ? 0.5f : 1.0f,
769 i < scaleFactorY ? 0.5f : 1.0f);
770 paint.setTexture(0, srcTexture);
771 context->drawRectToRect(paint, dstRect, srcRect);
772 srcRect = dstRect;
773 SkTSwap(srcTexture, dstTexture);
774 // If temp2 is non-NULL, don't render back to origTexture
775 if (temp2 && dstTexture == origTexture) dstTexture = temp2->texture();
776 }
777
778 if (sigmaX > 0.0f) {
779 SkAutoTMalloc<float> kernelStorageX(kernelWidthX);
780 float* kernelX = kernelStorageX.get();
781 buildKernel(sigmaX, kernelX, kernelWidthX);
782
783 if (scaleFactorX > 1) {
784 // Clear out a halfWidth to the right of the srcRect to prevent the
785 // X convolution from reading garbage.
786 clearRect = SkIRect::MakeXYWH(
787 srcRect.fRight, srcRect.fTop, halfWidthX, srcRect.height());
788 context->clear(&clearRect, 0x0);
789 }
790
791 context->setRenderTarget(dstTexture->asRenderTarget());
792 context->convolveInX(srcTexture, srcRect, kernelX, kernelWidthX);
793 SkTSwap(srcTexture, dstTexture);
794 if (temp2 && dstTexture == origTexture) dstTexture = temp2->texture();
795 }
796
797 if (sigmaY > 0.0f) {
798 SkAutoTMalloc<float> kernelStorageY(kernelWidthY);
799 float* kernelY = kernelStorageY.get();
800 buildKernel(sigmaY, kernelY, kernelWidthY);
801
802 if (scaleFactorY > 1 || sigmaX > 0.0f) {
803 // Clear out a halfWidth below the srcRect to prevent the Y
804 // convolution from reading garbage.
805 clearRect = SkIRect::MakeXYWH(
806 srcRect.fLeft, srcRect.fBottom, srcRect.width(), halfWidthY);
807 context->clear(&clearRect, 0x0);
808 }
809
810 context->setRenderTarget(dstTexture->asRenderTarget());
811 context->convolveInY(srcTexture, srcRect, kernelY, kernelWidthY);
812 SkTSwap(srcTexture, dstTexture);
813 if (temp2 && dstTexture == origTexture) dstTexture = temp2->texture();
814 }
815
816 if (scaleFactorX > 1 || scaleFactorY > 1) {
817 // Clear one pixel to the right and below, to accommodate bilinear
818 // upsampling.
819 clearRect = SkIRect::MakeXYWH(
820 srcRect.fLeft, srcRect.fBottom, srcRect.width() + 1, 1);
821 context->clear(&clearRect, 0x0);
822 clearRect = SkIRect::MakeXYWH(
823 srcRect.fRight, srcRect.fTop, 1, srcRect.height());
824 context->clear(&clearRect, 0x0);
825 // FIXME: This should be mitchell, not bilinear.
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000826 paint.textureSampler(0)->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000827 paint.textureSampler(0)->matrix()->setIDiv(srcTexture->width(),
828 srcTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000829 context->setRenderTarget(dstTexture->asRenderTarget());
830 paint.setTexture(0, srcTexture);
831 SkRect dstRect(srcRect);
832 scaleRect(&dstRect, scaleFactorX, scaleFactorY);
833 context->drawRectToRect(paint, dstRect, srcRect);
834 srcRect = dstRect;
835 SkTSwap(srcTexture, dstTexture);
836 }
837 context->setRenderTarget(oldRenderTarget);
838 context->setClip(oldClip);
839 return srcTexture;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000840}
841
842static bool drawWithGPUMaskFilter(GrContext* context, const SkPath& path,
843 SkMaskFilter* filter, const SkMatrix& matrix,
844 const SkRegion& clip, SkBounder* bounder,
845 GrPaint* grp) {
senorblanco@chromium.orga479fc72011-07-19 16:40:58 +0000846#ifdef SK_DISABLE_GPU_BLUR
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000847 return false;
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000848#endif
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000849 SkMaskFilter::BlurInfo info;
850 SkMaskFilter::BlurType blurType = filter->asABlur(&info);
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000851 if (SkMaskFilter::kNone_BlurType == blurType ||
852 !context->supportsShaders()) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000853 return false;
854 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000855 SkScalar radius = info.fIgnoreTransform ? info.fRadius
856 : matrix.mapRadius(info.fRadius);
857 radius = SkMinScalar(radius, MAX_BLUR_RADIUS);
senorblanco@chromium.org68c4d122011-08-01 21:20:31 +0000858 if (radius <= 0) {
859 return false;
860 }
senorblanco@chromium.orge36ddf02011-07-15 14:28:16 +0000861 float sigma = SkScalarToFloat(radius) * BLUR_SIGMA_SCALE;
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000862 float sigma3 = sigma * 3.0f;
863
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000864 SkRect srcRect = path.getBounds();
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000865 SkRect clipRect;
866 clipRect.set(clip.getBounds());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000867
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000868 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
869 srcRect.inset(-sigma3, -sigma3);
870 clipRect.inset(-sigma3, -sigma3);
871 srcRect.intersect(clipRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000872 SkRect finalRect = srcRect;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000873 SkIRect finalIRect;
874 finalRect.roundOut(&finalIRect);
875 if (clip.quickReject(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000876 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000877 }
878 if (bounder && !bounder->doIRect(finalIRect)) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000879 return true;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000880 }
881 GrPoint offset = GrPoint::Make(-srcRect.fLeft, -srcRect.fTop);
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000882 srcRect.offset(offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000883 const GrTextureDesc desc = {
884 kRenderTarget_GrTextureFlagBit,
885 kNone_GrAALevel,
886 srcRect.width(),
887 srcRect.height(),
888 // We actually only need A8, but it often isn't supported as a
889 // render target
bsalomon@google.com5bc34f02011-12-06 14:46:34 +0000890 kRGBA_8888_PM_GrPixelConfig
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000891 };
892
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000893 GrAutoScratchTexture pathEntry(context, desc);
894 GrTexture* pathTexture = pathEntry.texture();
895 if (NULL == pathTexture) {
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000896 return false;
897 }
898 GrRenderTarget* oldRenderTarget = context->getRenderTarget();
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000899 // Once this code moves into GrContext, this should be changed to use
900 // an AutoClipRestore.
901 GrClip oldClip = context->getClip();
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000902 context->setRenderTarget(pathTexture->asRenderTarget());
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000903 context->setClip(srcRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000904 context->clear(NULL, 0);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000905 GrPaint tempPaint;
906 tempPaint.reset();
907
908 GrAutoMatrix avm(context, GrMatrix::I());
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000909 tempPaint.fAntiAlias = grp->fAntiAlias;
910 if (tempPaint.fAntiAlias) {
911 // AA uses the "coverage" stages on GrDrawTarget. Coverage with a dst
912 // blend coeff of zero requires dual source blending support in order
913 // to properly blend partially covered pixels. This means the AA
914 // code path may not be taken. So we use a dst blend coeff of ISA. We
915 // could special case AA draws to a dst surface with known alpha=0 to
916 // use a zero dst coeff when dual source blending isn't available.
917 tempPaint.fSrcBlendCoeff = kOne_BlendCoeff;
918 tempPaint.fDstBlendCoeff = kISC_BlendCoeff;
919 }
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000920 // Draw hard shadow to pathTexture with path topleft at origin 0,0.
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000921 context->drawPath(tempPaint, path, skToGrFillType(path.getFillType()), &offset);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000922
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000923 GrAutoScratchTexture temp1, temp2;
924 // If we're doing a normal blur, we can clobber the pathTexture in the
925 // gaussianBlur. Otherwise, we need to save it for later compositing.
926 bool isNormalBlur = blurType == SkMaskFilter::kNormal_BlurType;
927 GrTexture* blurTexture = gaussianBlur(context, pathTexture,
928 &temp1, isNormalBlur ? NULL : &temp2,
929 srcRect, sigma, sigma);
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000930
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000931 if (!isNormalBlur) {
932 GrPaint paint;
933 paint.reset();
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +0000934 paint.textureSampler(0)->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000935 paint.textureSampler(0)->matrix()->setIDiv(pathTexture->width(),
936 pathTexture->height());
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000937 // Blend pathTexture over blurTexture.
938 context->setRenderTarget(blurTexture->asRenderTarget());
939 paint.setTexture(0, pathTexture);
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +0000940 if (SkMaskFilter::kInner_BlurType == blurType) {
941 // inner: dst = dst * src
942 paint.fSrcBlendCoeff = kDC_BlendCoeff;
943 paint.fDstBlendCoeff = kZero_BlendCoeff;
944 } else if (SkMaskFilter::kSolid_BlurType == blurType) {
945 // solid: dst = src + dst - src * dst
946 // = (1 - dst) * src + 1 * dst
947 paint.fSrcBlendCoeff = kIDC_BlendCoeff;
948 paint.fDstBlendCoeff = kOne_BlendCoeff;
949 } else if (SkMaskFilter::kOuter_BlurType == blurType) {
950 // outer: dst = dst * (1 - src)
951 // = 0 * src + (1 - src) * dst
952 paint.fSrcBlendCoeff = kZero_BlendCoeff;
953 paint.fDstBlendCoeff = kISC_BlendCoeff;
954 }
955 context->drawRect(paint, srcRect);
956 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000957 context->setRenderTarget(oldRenderTarget);
senorblanco@chromium.org42dd0f92011-07-14 15:29:57 +0000958 context->setClip(oldClip);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000959
960 if (grp->hasTextureOrMask()) {
961 GrMatrix inverse;
962 if (!matrix.invert(&inverse)) {
963 return false;
964 }
965 grp->preConcatActiveSamplerMatrices(inverse);
966 }
967
968 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
969 // we assume the last mask index is available for use
970 GrAssert(NULL == grp->getMask(MASK_IDX));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +0000971 grp->setMask(MASK_IDX, blurTexture);
bsalomon@google.com97912912011-12-06 16:30:36 +0000972 grp->maskSampler(MASK_IDX)->reset();
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000973
bsalomon@google.comaa814fe2011-12-12 18:45:07 +0000974 grp->maskSampler(MASK_IDX)->matrix()->setTranslate(-finalRect.fLeft,
975 -finalRect.fTop);
976 grp->maskSampler(MASK_IDX)->matrix()->postIDiv(blurTexture->width(),
977 blurTexture->height());
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000978 context->drawRect(*grp, finalRect);
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000979 return true;
980}
981
reed@google.com69302852011-02-16 18:08:07 +0000982static bool drawWithMaskFilter(GrContext* context, const SkPath& path,
983 SkMaskFilter* filter, const SkMatrix& matrix,
984 const SkRegion& clip, SkBounder* bounder,
985 GrPaint* grp) {
986 SkMask srcM, dstM;
987
988 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM,
989 SkMask::kComputeBoundsAndRenderImage_CreateMode)) {
990 return false;
991 }
bungeman@google.com02f55842011-10-04 21:25:00 +0000992 SkAutoMaskFreeImage autoSrc(srcM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000993
994 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
995 return false;
996 }
997 // this will free-up dstM when we're done (allocated in filterMask())
bungeman@google.com02f55842011-10-04 21:25:00 +0000998 SkAutoMaskFreeImage autoDst(dstM.fImage);
reed@google.com69302852011-02-16 18:08:07 +0000999
1000 if (clip.quickReject(dstM.fBounds)) {
1001 return false;
1002 }
1003 if (bounder && !bounder->doIRect(dstM.fBounds)) {
1004 return false;
1005 }
1006
1007 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
1008 // the current clip (and identity matrix) and grpaint settings
1009
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001010 // used to compute inverse view, if necessary
1011 GrMatrix ivm = context->getMatrix();
1012
reed@google.com0c219b62011-02-16 21:31:18 +00001013 GrAutoMatrix avm(context, GrMatrix::I());
reed@google.com69302852011-02-16 18:08:07 +00001014
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001015 const GrTextureDesc desc = {
1016 kNone_GrTextureFlags,
1017 kNone_GrAALevel,
reed@google.com69302852011-02-16 18:08:07 +00001018 dstM.fBounds.width(),
1019 dstM.fBounds.height(),
bsalomon@google.com5bc34f02011-12-06 14:46:34 +00001020 kAlpha_8_GrPixelConfig
reed@google.com69302852011-02-16 18:08:07 +00001021 };
1022
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001023 GrAutoScratchTexture ast(context, desc);
1024 GrTexture* texture = ast.texture();
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001025
reed@google.com69302852011-02-16 18:08:07 +00001026 if (NULL == texture) {
1027 return false;
1028 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001029 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
bsalomon@google.comeb2aa1d2011-07-14 15:45:19 +00001030 dstM.fImage, dstM.fRowBytes);
reed@google.com69302852011-02-16 18:08:07 +00001031
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001032 if (grp->hasTextureOrMask() && ivm.invert(&ivm)) {
1033 grp->preConcatActiveSamplerMatrices(ivm);
1034 }
1035
1036 static const int MASK_IDX = GrPaint::kMaxMasks - 1;
1037 // we assume the last mask index is available for use
1038 GrAssert(NULL == grp->getMask(MASK_IDX));
1039 grp->setMask(MASK_IDX, texture);
bsalomon@google.com97912912011-12-06 16:30:36 +00001040 grp->maskSampler(MASK_IDX)->reset();
reed@google.com69302852011-02-16 18:08:07 +00001041
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001042 GrRect d;
1043 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
reed@google.com0c219b62011-02-16 21:31:18 +00001044 GrIntToScalar(dstM.fBounds.fTop),
1045 GrIntToScalar(dstM.fBounds.fRight),
1046 GrIntToScalar(dstM.fBounds.fBottom));
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001047
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001048 GrMatrix* m = grp->maskSampler(MASK_IDX)->matrix();
1049 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1050 -dstM.fBounds.fTop*SK_Scalar1);
1051 m->postIDiv(texture->width(), texture->height());
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001052 context->drawRect(*grp, d);
reed@google.com69302852011-02-16 18:08:07 +00001053 return true;
1054}
reed@google.com69302852011-02-16 18:08:07 +00001055
reed@google.com0c219b62011-02-16 21:31:18 +00001056void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
reed@google.comfe626382011-09-21 13:50:35 +00001057 const SkPaint& origPaint, const SkMatrix* prePathMatrix,
reed@google.comac10a2d2010-12-22 21:39:39 +00001058 bool pathIsMutable) {
1059 CHECK_SHOULD_DRAW(draw);
1060
reed@google.comfe626382011-09-21 13:50:35 +00001061 bool doFill = true;
1062 SkTLazy<SkPaint> lazyPaint;
1063 const SkPaint* paint = &origPaint;
1064
1065 // can we cheat, and threat a thin stroke as a hairline (w/ modulated alpha)
1066 // if we can, we draw lots faster (raster device does this same test)
1067 {
1068 SkAlpha newAlpha;
1069 if (SkDrawTreatAsHairline(*paint, *draw.fMatrix, &newAlpha)) {
1070 lazyPaint.set(*paint);
1071 lazyPaint.get()->setAlpha(newAlpha);
1072 lazyPaint.get()->setStrokeWidth(0);
1073 paint = lazyPaint.get();
1074 doFill = false;
1075 }
1076 }
1077 // must reference paint from here down, and not origPaint
1078 // since we may have change the paint (using lazyPaint for storage)
1079
bsalomon@google.com5782d712011-01-21 21:03:59 +00001080 GrPaint grPaint;
1081 SkAutoCachedTexture act;
reed@google.comfe626382011-09-21 13:50:35 +00001082 if (!this->skPaint2GrPaintShader(*paint,
Scroggod757df22011-05-16 13:11:16 +00001083 &act,
1084 *draw.fMatrix,
1085 &grPaint,
1086 true)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001087 return;
1088 }
1089
reed@google.comfe626382011-09-21 13:50:35 +00001090 // If we have a prematrix, apply it to the path, optimizing for the case
1091 // where the original path can in fact be modified in place (even though
1092 // its parameter type is const).
1093 SkPath* pathPtr = const_cast<SkPath*>(&origSrcPath);
1094 SkPath tmpPath;
reed@google.comac10a2d2010-12-22 21:39:39 +00001095
1096 if (prePathMatrix) {
reed@google.come3445642011-02-16 23:20:39 +00001097 SkPath* result = pathPtr;
reed@google.com0c219b62011-02-16 21:31:18 +00001098
reed@google.come3445642011-02-16 23:20:39 +00001099 if (!pathIsMutable) {
1100 result = &tmpPath;
1101 pathIsMutable = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001102 }
reed@google.come3445642011-02-16 23:20:39 +00001103 // should I push prePathMatrix on our MV stack temporarily, instead
1104 // of applying it here? See SkDraw.cpp
1105 pathPtr->transform(*prePathMatrix, result);
1106 pathPtr = result;
reed@google.comac10a2d2010-12-22 21:39:39 +00001107 }
reed@google.com0c219b62011-02-16 21:31:18 +00001108 // at this point we're done with prePathMatrix
1109 SkDEBUGCODE(prePathMatrix = (const SkMatrix*)0x50FF8001;)
reed@google.comac10a2d2010-12-22 21:39:39 +00001110
reed@google.comfe626382011-09-21 13:50:35 +00001111 if (doFill && (paint->getPathEffect() ||
1112 paint->getStyle() != SkPaint::kFill_Style)) {
1113 // it is safe to use tmpPath here, even if we already used it for the
1114 // prepathmatrix, since getFillPath can take the same object for its
1115 // input and output safely.
1116 doFill = paint->getFillPath(*pathPtr, &tmpPath);
reed@google.com0c219b62011-02-16 21:31:18 +00001117 pathPtr = &tmpPath;
1118 }
1119
reed@google.comfe626382011-09-21 13:50:35 +00001120 if (paint->getMaskFilter()) {
reed@google.com0c219b62011-02-16 21:31:18 +00001121 // avoid possibly allocating a new path in transform if we can
1122 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
1123
1124 // transform the path into device space
reed@google.come3445642011-02-16 23:20:39 +00001125 pathPtr->transform(*draw.fMatrix, devPathPtr);
reed@google.comfe626382011-09-21 13:50:35 +00001126 if (!drawWithGPUMaskFilter(fContext, *devPathPtr, paint->getMaskFilter(),
senorblanco@chromium.orgb08ea1b2011-07-12 16:54:59 +00001127 *draw.fMatrix, *draw.fClip, draw.fBounder,
1128 &grPaint)) {
reed@google.comfe626382011-09-21 13:50:35 +00001129 drawWithMaskFilter(fContext, *devPathPtr, paint->getMaskFilter(),
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +00001130 *draw.fMatrix, *draw.fClip, draw.fBounder,
1131 &grPaint);
1132 }
reed@google.com69302852011-02-16 18:08:07 +00001133 return;
1134 }
reed@google.com69302852011-02-16 18:08:07 +00001135
bsalomon@google.comffca4002011-02-22 20:34:01 +00001136 GrPathFill fill = kHairLine_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001137
reed@google.com0c219b62011-02-16 21:31:18 +00001138 if (doFill) {
1139 switch (pathPtr->getFillType()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001140 case SkPath::kWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001141 fill = kWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001142 break;
1143 case SkPath::kEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001144 fill = kEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001145 break;
1146 case SkPath::kInverseWinding_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001147 fill = kInverseWinding_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001148 break;
1149 case SkPath::kInverseEvenOdd_FillType:
bsalomon@google.comffca4002011-02-22 20:34:01 +00001150 fill = kInverseEvenOdd_PathFill;
reed@google.comac10a2d2010-12-22 21:39:39 +00001151 break;
1152 default:
bsalomon@google.com5782d712011-01-21 21:03:59 +00001153 SkDebugf("Unsupported path fill type\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001154 return;
1155 }
1156 }
1157
reed@google.com07f3ee12011-05-16 17:21:57 +00001158 fContext->drawPath(grPaint, *pathPtr, fill);
reed@google.comac10a2d2010-12-22 21:39:39 +00001159}
1160
bsalomon@google.comfb309512011-11-30 14:13:48 +00001161namespace {
1162
1163inline int get_tile_count(int l, int t, int r, int b, int tileSize) {
1164 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1165 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1166 return tilesX * tilesY;
1167}
1168
1169inline int determine_tile_size(const SkBitmap& bitmap,
1170 const SkIRect* srcRectPtr,
1171 int maxTextureSize) {
1172 static const int kSmallTileSize = 1 << 10;
1173 if (maxTextureSize <= kSmallTileSize) {
1174 return maxTextureSize;
1175 }
1176
1177 size_t maxTexTotalTileSize;
1178 size_t smallTotalTileSize;
1179
1180 if (NULL == srcRectPtr) {
1181 int w = bitmap.width();
1182 int h = bitmap.height();
1183 maxTexTotalTileSize = get_tile_count(0, 0, w, h, maxTextureSize);
1184 smallTotalTileSize = get_tile_count(0, 0, w, h, kSmallTileSize);
1185 } else {
1186 maxTexTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1187 srcRectPtr->fTop,
1188 srcRectPtr->fRight,
1189 srcRectPtr->fBottom,
1190 maxTextureSize);
1191 smallTotalTileSize = get_tile_count(srcRectPtr->fLeft,
1192 srcRectPtr->fTop,
1193 srcRectPtr->fRight,
1194 srcRectPtr->fBottom,
1195 kSmallTileSize);
1196 }
1197 maxTexTotalTileSize *= maxTextureSize * maxTextureSize;
1198 smallTotalTileSize *= kSmallTileSize * kSmallTileSize;
1199
1200 if (maxTexTotalTileSize > 2 * smallTotalTileSize) {
1201 return kSmallTileSize;
1202 } else {
1203 return maxTextureSize;
1204 }
1205}
1206}
1207
1208bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
1209 const GrSamplerState& sampler,
1210 const SkIRect* srcRectPtr,
1211 int* tileSize) const {
1212 SkASSERT(NULL != tileSize);
1213
1214 // if bitmap is explictly texture backed then just use the texture
1215 if (NULL != bitmap.getTexture()) {
1216 return false;
1217 }
1218 // if it's larger than the max texture size, then we have no choice but
1219 // tiling
1220 const int maxTextureSize = fContext->getMaxTextureSize();
1221 if (bitmap.width() > maxTextureSize ||
1222 bitmap.height() > maxTextureSize) {
1223 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1224 return true;
1225 }
1226 // if we are going to have to draw the whole thing, then don't tile
1227 if (NULL == srcRectPtr) {
1228 return false;
1229 }
1230 // if the entire texture is already in our cache then no reason to tile it
1231 if (this->isBitmapInTextureCache(bitmap, sampler)) {
1232 return false;
1233 }
1234
1235 // At this point we know we could do the draw by uploading the entire bitmap
1236 // as a texture. However, if the texture would be large compared to the
1237 // cache size and we don't require most of it for this draw then tile to
1238 // reduce the amount of upload and cache spill.
1239
1240 // assumption here is that sw bitmap size is a good proxy for its size as
1241 // a texture
1242 size_t bmpSize = bitmap.getSize();
1243 size_t cacheSize;
1244 fContext->getTextureCacheLimits(NULL, &cacheSize);
1245 if (bmpSize < cacheSize / 2) {
1246 return false;
1247 }
1248
1249 SkFixed fracUsed =
1250 SkFixedMul((srcRectPtr->width() << 16) / bitmap.width(),
1251 (srcRectPtr->height() << 16) / bitmap.height());
1252 if (fracUsed <= SK_FixedHalf) {
1253 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1254 return true;
1255 } else {
1256 return false;
1257 }
1258}
1259
reed@google.comac10a2d2010-12-22 21:39:39 +00001260void SkGpuDevice::drawBitmap(const SkDraw& draw,
1261 const SkBitmap& bitmap,
1262 const SkIRect* srcRectPtr,
1263 const SkMatrix& m,
1264 const SkPaint& paint) {
1265 CHECK_SHOULD_DRAW(draw);
1266
1267 SkIRect srcRect;
1268 if (NULL == srcRectPtr) {
1269 srcRect.set(0, 0, bitmap.width(), bitmap.height());
1270 } else {
1271 srcRect = *srcRectPtr;
1272 }
1273
junov@google.comd935cfb2011-06-27 20:48:23 +00001274 if (paint.getMaskFilter()){
junov@google.com1d329782011-07-28 20:10:09 +00001275 // Convert the bitmap to a shader so that the rect can be drawn
1276 // through drawRect, which supports mask filters.
1277 SkBitmap tmp; // subset of bitmap, if necessary
junov@google.comd935cfb2011-06-27 20:48:23 +00001278 const SkBitmap* bitmapPtr = &bitmap;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001279 if (srcRectPtr) {
1280 if (!bitmap.extractSubset(&tmp, srcRect)) {
1281 return; // extraction failed
1282 }
1283 bitmapPtr = &tmp;
junov@google.com1d329782011-07-28 20:10:09 +00001284 srcRect.set(0,0, srcRect.width(), srcRect.height());
junov@google.comd935cfb2011-06-27 20:48:23 +00001285 }
1286 SkPaint paintWithTexture(paint);
1287 paintWithTexture.setShader(SkShader::CreateBitmapShader( *bitmapPtr,
1288 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
junov@google.comd935cfb2011-06-27 20:48:23 +00001289 SkRect ScalarRect;
epoger@google.com9ef2d832011-07-01 21:12:20 +00001290 ScalarRect.set(srcRect);
junov@google.comd935cfb2011-06-27 20:48:23 +00001291
junov@google.com1d329782011-07-28 20:10:09 +00001292 // Transform 'm' needs to be concatenated to the draw matrix,
1293 // rather than transforming the primitive directly, so that 'm' will
1294 // also affect the behavior of the mask filter.
1295 SkMatrix drawMatrix;
1296 drawMatrix.setConcat(*draw.fMatrix, m);
1297 SkDraw transformedDraw(draw);
1298 transformedDraw.fMatrix = &drawMatrix;
1299
1300 this->drawRect(transformedDraw, ScalarRect, paintWithTexture);
1301
junov@google.comd935cfb2011-06-27 20:48:23 +00001302 return;
1303 }
1304
bsalomon@google.com5782d712011-01-21 21:03:59 +00001305 GrPaint grPaint;
Scroggod757df22011-05-16 13:11:16 +00001306 if (!this->skPaint2GrPaintNoShader(paint, true, &grPaint, false)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001307 return;
1308 }
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001309 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001310 if (paint.isFilterBitmap()) {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001311 sampler->setFilter(GrSamplerState::kBilinear_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001312 } else {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001313 sampler->setFilter(GrSamplerState::kNearest_Filter);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +00001314 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001315
bsalomon@google.comfb309512011-11-30 14:13:48 +00001316 int tileSize;
1317 if (!this->shouldTileBitmap(bitmap, *sampler, srcRectPtr, &tileSize)) {
1318 // take the simple case
bsalomon@google.com5782d712011-01-21 21:03:59 +00001319 this->internalDrawBitmap(draw, bitmap, srcRect, m, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001320 return;
1321 }
1322
1323 // undo the translate done by SkCanvas
1324 int DX = SkMax32(0, srcRect.fLeft);
1325 int DY = SkMax32(0, srcRect.fTop);
1326 // compute clip bounds in local coordinates
1327 SkIRect clipRect;
1328 {
1329 SkRect r;
1330 r.set(draw.fClip->getBounds());
1331 SkMatrix matrix, inverse;
1332 matrix.setConcat(*draw.fMatrix, m);
1333 if (!matrix.invert(&inverse)) {
1334 return;
1335 }
1336 inverse.mapRect(&r);
1337 r.roundOut(&clipRect);
1338 // apply the canvas' translate to our local clip
1339 clipRect.offset(DX, DY);
1340 }
1341
bsalomon@google.comfb309512011-11-30 14:13:48 +00001342 int nx = bitmap.width() / tileSize;
1343 int ny = bitmap.height() / tileSize;
reed@google.comac10a2d2010-12-22 21:39:39 +00001344 for (int x = 0; x <= nx; x++) {
1345 for (int y = 0; y <= ny; y++) {
1346 SkIRect tileR;
bsalomon@google.comfb309512011-11-30 14:13:48 +00001347 tileR.set(x * tileSize, y * tileSize,
1348 (x + 1) * tileSize, (y + 1) * tileSize);
reed@google.comac10a2d2010-12-22 21:39:39 +00001349 if (!SkIRect::Intersects(tileR, clipRect)) {
1350 continue;
1351 }
1352
1353 SkIRect srcR = tileR;
1354 if (!srcR.intersect(srcRect)) {
1355 continue;
1356 }
1357
1358 SkBitmap tmpB;
1359 if (bitmap.extractSubset(&tmpB, tileR)) {
1360 // now offset it to make it "local" to our tmp bitmap
1361 srcR.offset(-tileR.fLeft, -tileR.fTop);
1362
1363 SkMatrix tmpM(m);
1364 {
1365 int dx = tileR.fLeft - DX + SkMax32(0, srcR.fLeft);
1366 int dy = tileR.fTop - DY + SkMax32(0, srcR.fTop);
1367 tmpM.preTranslate(SkIntToScalar(dx), SkIntToScalar(dy));
1368 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001369 this->internalDrawBitmap(draw, tmpB, srcR, tmpM, &grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +00001370 }
1371 }
1372 }
1373}
1374
1375/*
1376 * This is called by drawBitmap(), which has to handle images that may be too
1377 * large to be represented by a single texture.
1378 *
bsalomon@google.com5782d712011-01-21 21:03:59 +00001379 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1380 * and that non-texture portion of the GrPaint has already been setup.
reed@google.comac10a2d2010-12-22 21:39:39 +00001381 */
1382void SkGpuDevice::internalDrawBitmap(const SkDraw& draw,
1383 const SkBitmap& bitmap,
1384 const SkIRect& srcRect,
1385 const SkMatrix& m,
bsalomon@google.com5782d712011-01-21 21:03:59 +00001386 GrPaint* grPaint) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001387 SkASSERT(bitmap.width() <= fContext->getMaxTextureSize() &&
1388 bitmap.height() <= fContext->getMaxTextureSize());
reed@google.comac10a2d2010-12-22 21:39:39 +00001389
reed@google.com9c49bc32011-07-07 13:42:37 +00001390 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
reed@google.comac10a2d2010-12-22 21:39:39 +00001391 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
reed@google.com9c49bc32011-07-07 13:42:37 +00001392 SkDebugf("nothing to draw\n");
reed@google.comac10a2d2010-12-22 21:39:39 +00001393 return;
1394 }
1395
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001396 GrSamplerState* sampler = grPaint->textureSampler(kBitmapTextureIdx);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001397
1398 sampler->setWrapX(GrSamplerState::kClamp_WrapMode);
1399 sampler->setWrapY(GrSamplerState::kClamp_WrapMode);
1400 sampler->setSampleMode(GrSamplerState::kNormal_SampleMode);
bsalomon@google.comaa814fe2011-12-12 18:45:07 +00001401 sampler->matrix()->reset();
reed@google.comac10a2d2010-12-22 21:39:39 +00001402
1403 GrTexture* texture;
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001404 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
reed@google.comac10a2d2010-12-22 21:39:39 +00001405 if (NULL == texture) {
1406 return;
1407 }
1408
bsalomon@google.com452943d2011-10-31 17:37:14 +00001409 grPaint->setTexture(kBitmapTextureIdx, texture);
reed@google.com46799cd2011-02-22 20:56:26 +00001410
reed@google.com20efde72011-05-09 17:00:02 +00001411 GrRect dstRect = SkRect::MakeWH(GrIntToScalar(srcRect.width()),
1412 GrIntToScalar(srcRect.height()));
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001413 GrRect paintRect;
junov@google.com6acc9b32011-05-16 18:32:07 +00001414 paintRect.setLTRB(GrFixedToScalar((srcRect.fLeft << 16) / bitmap.width()),
1415 GrFixedToScalar((srcRect.fTop << 16) / bitmap.height()),
1416 GrFixedToScalar((srcRect.fRight << 16) / bitmap.width()),
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001417 GrFixedToScalar((srcRect.fBottom << 16) / bitmap.height()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001418
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001419 if (GrSamplerState::kNearest_Filter != sampler->getFilter() &&
junov@google.com6acc9b32011-05-16 18:32:07 +00001420 (srcRect.width() < bitmap.width() ||
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001421 srcRect.height() < bitmap.height())) {
junov@google.com6acc9b32011-05-16 18:32:07 +00001422 // If drawing a subrect of the bitmap and filtering is enabled,
1423 // use a constrained texture domain to avoid color bleeding
1424 GrScalar left, top, right, bottom;
1425 if (srcRect.width() > 1) {
1426 GrScalar border = GR_ScalarHalf / bitmap.width();
1427 left = paintRect.left() + border;
1428 right = paintRect.right() - border;
1429 } else {
1430 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1431 }
1432 if (srcRect.height() > 1) {
1433 GrScalar border = GR_ScalarHalf / bitmap.height();
1434 top = paintRect.top() + border;
1435 bottom = paintRect.bottom() - border;
1436 } else {
1437 top = bottom = GrScalarHalf(paintRect.top() + paintRect.bottom());
1438 }
1439 GrRect textureDomain;
1440 textureDomain.setLTRB(left, top, right, bottom);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001441 sampler->setTextureDomain(textureDomain);
junov@google.com6acc9b32011-05-16 18:32:07 +00001442 }
1443
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001444 fContext->drawRectToRect(*grPaint, dstRect, paintRect, &m);
reed@google.comac10a2d2010-12-22 21:39:39 +00001445}
1446
1447void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1448 int left, int top, const SkPaint& paint) {
1449 CHECK_SHOULD_DRAW(draw);
1450
1451 SkAutoLockPixels alp(bitmap);
1452 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1453 return;
1454 }
1455
bsalomon@google.com5782d712011-01-21 21:03:59 +00001456 GrPaint grPaint;
Scroggod757df22011-05-16 13:11:16 +00001457 if(!this->skPaint2GrPaintNoShader(paint, true, &grPaint, false)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001458 return;
1459 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001460
bsalomon@google.com5782d712011-01-21 21:03:59 +00001461 GrAutoMatrix avm(fContext, GrMatrix::I());
1462
bsalomon@google.com39ee0ff2011-12-06 15:32:52 +00001463 GrSamplerState* sampler = grPaint.textureSampler(kBitmapTextureIdx);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001464
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001465 GrTexture* texture;
bsalomon@google.com97912912011-12-06 16:30:36 +00001466 sampler->reset();
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001467 SkAutoCachedTexture act(this, bitmap, sampler, &texture);
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +00001468
1469 grPaint.setTexture(kBitmapTextureIdx, texture);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001470
bsalomon@google.com5782d712011-01-21 21:03:59 +00001471 fContext->drawRectToRect(grPaint,
reed@google.com20efde72011-05-09 17:00:02 +00001472 GrRect::MakeXYWH(GrIntToScalar(left),
1473 GrIntToScalar(top),
1474 GrIntToScalar(bitmap.width()),
1475 GrIntToScalar(bitmap.height())),
1476 GrRect::MakeWH(GR_Scalar1, GR_Scalar1));
reed@google.comac10a2d2010-12-22 21:39:39 +00001477}
1478
1479void SkGpuDevice::drawDevice(const SkDraw& draw, SkDevice* dev,
1480 int x, int y, const SkPaint& paint) {
1481 CHECK_SHOULD_DRAW(draw);
1482
bsalomon@google.com5782d712011-01-21 21:03:59 +00001483 GrPaint grPaint;
bsalomon@google.comc6cf7232011-02-17 16:43:10 +00001484 if (!((SkGpuDevice*)dev)->bindDeviceAsTexture(&grPaint) ||
Scroggod757df22011-05-16 13:11:16 +00001485 !this->skPaint2GrPaintNoShader(paint, true, &grPaint, false)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001486 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001487 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001488
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001489 GrTexture* devTex = grPaint.getTexture(0);
1490 SkASSERT(NULL != devTex);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001491
1492 const SkBitmap& bm = dev->accessBitmap(false);
1493 int w = bm.width();
1494 int h = bm.height();
1495
1496 GrAutoMatrix avm(fContext, GrMatrix::I());
1497
bsalomon@google.com97912912011-12-06 16:30:36 +00001498 grPaint.textureSampler(kBitmapTextureIdx)->reset();
bsalomon@google.com5782d712011-01-21 21:03:59 +00001499
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001500 GrRect dstRect = GrRect::MakeXYWH(GrIntToScalar(x),
1501 GrIntToScalar(y),
1502 GrIntToScalar(w),
1503 GrIntToScalar(h));
senorblanco@chromium.org60014ca2011-11-09 16:05:58 +00001504 SkImageFilter* imageFilter = paint.getImageFilter();
1505 SkSize size;
1506 if (NULL != imageFilter && imageFilter->asABlur(&size)) {
1507 GrAutoScratchTexture temp1, temp2;
1508 GrTexture* blurTexture = gaussianBlur(fContext,
1509 devTex, &temp1, &temp2,
1510 GrRect::MakeWH(w, h),
1511 size.width(),
1512 size.height());
1513 grPaint.setTexture(kBitmapTextureIdx, blurTexture);
1514 devTex = blurTexture;
1515 }
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001516 // The device being drawn may not fill up its texture (saveLayer uses
1517 // the approximate ).
1518 GrRect srcRect = GrRect::MakeWH(GR_Scalar1 * w / devTex->width(),
1519 GR_Scalar1 * h / devTex->height());
1520
1521 fContext->drawRectToRect(grPaint, dstRect, srcRect);
reed@google.comac10a2d2010-12-22 21:39:39 +00001522}
1523
1524///////////////////////////////////////////////////////////////////////////////
1525
1526// must be in SkCanvas::VertexMode order
bsalomon@google.comffca4002011-02-22 20:34:01 +00001527static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1528 kTriangles_PrimitiveType,
1529 kTriangleStrip_PrimitiveType,
1530 kTriangleFan_PrimitiveType,
reed@google.comac10a2d2010-12-22 21:39:39 +00001531};
1532
1533void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1534 int vertexCount, const SkPoint vertices[],
1535 const SkPoint texs[], const SkColor colors[],
1536 SkXfermode* xmode,
1537 const uint16_t indices[], int indexCount,
1538 const SkPaint& paint) {
1539 CHECK_SHOULD_DRAW(draw);
1540
bsalomon@google.com5782d712011-01-21 21:03:59 +00001541 GrPaint grPaint;
1542 SkAutoCachedTexture act;
1543 // we ignore the shader if texs is null.
1544 if (NULL == texs) {
Scroggod757df22011-05-16 13:11:16 +00001545 if (!this->skPaint2GrPaintNoShader(paint,
1546 false,
1547 &grPaint,
1548 NULL == colors)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001549 return;
1550 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001551 } else {
reed@google.com1a2e8d22011-01-21 22:08:29 +00001552 if (!this->skPaint2GrPaintShader(paint, &act,
1553 *draw.fMatrix,
Scroggod757df22011-05-16 13:11:16 +00001554 &grPaint,
1555 NULL == colors)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001556 return;
1557 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001558 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001559
1560 if (NULL != xmode && NULL != texs && NULL != colors) {
mike@reedtribe.orgbe2aa2a2011-11-17 02:32:04 +00001561 if (!SkXfermode::IsMode(xmode, SkXfermode::kMultiply_Mode)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001562 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1563#if 0
1564 return
1565#endif
1566 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001567 }
bsalomon@google.com5782d712011-01-21 21:03:59 +00001568
bsalomon@google.com498776a2011-08-16 19:20:44 +00001569 SkAutoSTMalloc<128, GrColor> convertedColors(0);
1570 if (NULL != colors) {
1571 // need to convert byte order and from non-PM to PM
bsalomon@google.com7d4679a2011-09-02 22:06:24 +00001572 convertedColors.reset(vertexCount);
bsalomon@google.com498776a2011-08-16 19:20:44 +00001573 for (int i = 0; i < vertexCount; ++i) {
1574 convertedColors[i] = SkGr::SkColor2GrColor(colors[i]);
1575 }
1576 colors = convertedColors.get();
reed@google.comac10a2d2010-12-22 21:39:39 +00001577 }
bsalomon@google.com498776a2011-08-16 19:20:44 +00001578 fContext->drawVertices(grPaint,
1579 gVertexMode2PrimitiveType[vmode],
1580 vertexCount,
1581 (GrPoint*) vertices,
1582 (GrPoint*) texs,
1583 colors,
1584 indices,
1585 indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +00001586}
1587
1588///////////////////////////////////////////////////////////////////////////////
1589
1590static void GlyphCacheAuxProc(void* data) {
1591 delete (GrFontScaler*)data;
1592}
1593
1594static GrFontScaler* get_gr_font_scaler(SkGlyphCache* cache) {
1595 void* auxData;
1596 GrFontScaler* scaler = NULL;
1597 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
1598 scaler = (GrFontScaler*)auxData;
1599 }
1600 if (NULL == scaler) {
1601 scaler = new SkGrFontScaler(cache);
1602 cache->setAuxProc(GlyphCacheAuxProc, scaler);
1603 }
1604 return scaler;
1605}
1606
1607static void SkGPU_Draw1Glyph(const SkDraw1Glyph& state,
1608 SkFixed fx, SkFixed fy,
1609 const SkGlyph& glyph) {
1610 SkASSERT(glyph.fWidth > 0 && glyph.fHeight > 0);
1611
1612 GrSkDrawProcs* procs = (GrSkDrawProcs*)state.fDraw->fProcs;
1613
1614 if (NULL == procs->fFontScaler) {
1615 procs->fFontScaler = get_gr_font_scaler(state.fCache);
1616 }
reed@google.com39ce0ac2011-04-08 15:42:19 +00001617
1618 /*
reed@google.com3b139f52011-06-07 17:56:25 +00001619 * What should we do with fy? (assuming horizontal/latin text)
reed@google.com39ce0ac2011-04-08 15:42:19 +00001620 *
reed@google.com3b139f52011-06-07 17:56:25 +00001621 * The raster code calls SkFixedFloorToFixed on it, as it does with fx.
1622 * It calls that rather than round, because our caller has already added
1623 * SK_FixedHalf, so that calling floor gives us the rounded integer.
1624 *
1625 * Test code between raster and gpu (they should draw the same)
1626 *
1627 * canvas->drawText("Hamburgefons", 12, 0, 16.5f, paint);
1628 *
1629 * Perhaps we should only perform this integralization if there is no
1630 * fExtMatrix...
reed@google.com39ce0ac2011-04-08 15:42:19 +00001631 */
reed@google.com3b139f52011-06-07 17:56:25 +00001632 fy = SkFixedFloorToFixed(fy);
1633
reed@google.comac10a2d2010-12-22 21:39:39 +00001634 procs->fTextContext->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(), fx, 0),
reed@google.com3b139f52011-06-07 17:56:25 +00001635 SkFixedFloorToFixed(fx), fy,
reed@google.comac10a2d2010-12-22 21:39:39 +00001636 procs->fFontScaler);
1637}
1638
bsalomon@google.com5782d712011-01-21 21:03:59 +00001639SkDrawProcs* SkGpuDevice::initDrawForText(GrTextContext* context) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001640
1641 // deferred allocation
1642 if (NULL == fDrawProcs) {
1643 fDrawProcs = new GrSkDrawProcs;
1644 fDrawProcs->fD1GProc = SkGPU_Draw1Glyph;
1645 fDrawProcs->fContext = fContext;
1646 }
1647
1648 // init our (and GL's) state
1649 fDrawProcs->fTextContext = context;
1650 fDrawProcs->fFontScaler = NULL;
1651 return fDrawProcs;
1652}
1653
1654void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
1655 size_t byteLength, SkScalar x, SkScalar y,
1656 const SkPaint& paint) {
1657 CHECK_SHOULD_DRAW(draw);
1658
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001659 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001660 // this guy will just call our drawPath()
1661 draw.drawText((const char*)text, byteLength, x, y, paint);
1662 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001663 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001664
1665 GrPaint grPaint;
1666 SkAutoCachedTexture act;
1667
Scroggod757df22011-05-16 13:11:16 +00001668 if (!this->skPaint2GrPaintShader(paint,
1669 &act,
1670 *draw.fMatrix,
1671 &grPaint,
1672 true)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001673 return;
1674 }
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001675 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001676 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001677 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
1678 }
1679}
1680
1681void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
1682 size_t byteLength, const SkScalar pos[],
1683 SkScalar constY, int scalarsPerPos,
1684 const SkPaint& paint) {
1685 CHECK_SHOULD_DRAW(draw);
1686
tomhudson@google.comdd5f7442011-08-30 15:13:55 +00001687 if (draw.fMatrix->hasPerspective()) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001688 // this guy will just call our drawPath()
1689 draw.drawPosText((const char*)text, byteLength, pos, constY,
1690 scalarsPerPos, paint);
1691 } else {
reed@google.comac10a2d2010-12-22 21:39:39 +00001692 SkDraw myDraw(draw);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001693
1694 GrPaint grPaint;
1695 SkAutoCachedTexture act;
Scroggod757df22011-05-16 13:11:16 +00001696 if (!this->skPaint2GrPaintShader(paint,
1697 &act,
1698 *draw.fMatrix,
1699 &grPaint,
1700 true)) {
bsalomon@google.com5782d712011-01-21 21:03:59 +00001701 return;
1702 }
1703
bsalomon@google.comcc4dac32011-05-10 13:52:42 +00001704 GrTextContext context(fContext, grPaint, draw.fExtMatrix);
bsalomon@google.com5782d712011-01-21 21:03:59 +00001705 myDraw.fProcs = this->initDrawForText(&context);
reed@google.comac10a2d2010-12-22 21:39:39 +00001706 this->INHERITED::drawPosText(myDraw, text, byteLength, pos, constY,
1707 scalarsPerPos, paint);
1708 }
1709}
1710
1711void SkGpuDevice::drawTextOnPath(const SkDraw& draw, const void* text,
1712 size_t len, const SkPath& path,
1713 const SkMatrix* m, const SkPaint& paint) {
1714 CHECK_SHOULD_DRAW(draw);
1715
1716 SkASSERT(draw.fDevice == this);
1717 draw.drawTextOnPath((const char*)text, len, path, m, paint);
1718}
1719
1720///////////////////////////////////////////////////////////////////////////////
1721
reed@google.comf67e4cf2011-03-15 20:56:58 +00001722bool SkGpuDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
1723 if (!paint.isLCDRenderText()) {
1724 // we're cool with the paint as is
1725 return false;
1726 }
1727
1728 if (paint.getShader() ||
1729 paint.getXfermode() || // unless its srcover
1730 paint.getMaskFilter() ||
1731 paint.getRasterizer() ||
1732 paint.getColorFilter() ||
1733 paint.getPathEffect() ||
1734 paint.isFakeBoldText() ||
1735 paint.getStyle() != SkPaint::kFill_Style) {
1736 // turn off lcd
1737 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
1738 flags->fHinting = paint.getHinting();
1739 return true;
1740 }
1741 // we're cool with the paint as is
1742 return false;
1743}
1744
reed@google.com75d939b2011-12-07 15:07:23 +00001745void SkGpuDevice::flush() {
1746 fContext->flush(false);
1747}
1748
reed@google.comf67e4cf2011-03-15 20:56:58 +00001749///////////////////////////////////////////////////////////////////////////////
1750
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001751SkGpuDevice::TexCache SkGpuDevice::lockCachedTexture(const SkBitmap& bitmap,
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001752 const GrSamplerState* sampler,
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001753 TexType type) {
1754 GrContext::TextureCacheEntry entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001755 GrContext* ctx = this->context();
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001756
bsalomon@google.come97f0852011-06-17 13:10:25 +00001757 if (kBitmap_TexType != type) {
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001758 const GrTextureDesc desc = {
1759 kRenderTarget_GrTextureFlagBit,
1760 kNone_GrAALevel,
1761 bitmap.width(),
1762 bitmap.height(),
bsalomon@google.com5bc34f02011-12-06 14:46:34 +00001763 SkGr::Bitmap2PixelConfig(bitmap)
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001764 };
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001765 GrContext::ScratchTexMatch match;
bsalomon@google.come97f0852011-06-17 13:10:25 +00001766 if (kSaveLayerDeviceRenderTarget_TexType == type) {
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001767 // we know layers will only be drawn through drawDevice.
1768 // drawDevice has been made to work with content embedded in a
1769 // larger texture so its okay to use the approximate version.
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001770 match = GrContext::kApprox_ScratchTexMatch;
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001771 } else {
bsalomon@google.come97f0852011-06-17 13:10:25 +00001772 SkASSERT(kDeviceRenderTarget_TexType == type);
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001773 match = GrContext::kExact_ScratchTexMatch;
bsalomon@google.comb5b31682011-06-16 18:05:35 +00001774 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001775 entry = ctx->lockScratchTexture(desc, match);
reed@google.comac10a2d2010-12-22 21:39:39 +00001776 } else {
junov@google.com4ee7ae52011-06-30 17:30:49 +00001777 if (!bitmap.isVolatile()) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001778 GrContext::TextureKey key = bitmap.getGenerationID();
1779 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
junov@google.com4ee7ae52011-06-30 17:30:49 +00001780
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001781 entry = ctx->findAndLockTexture(key, bitmap.width(),
1782 bitmap.height(), sampler);
1783 if (NULL == entry.texture()) {
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001784 entry = sk_gr_create_bitmap_texture(ctx, key, sampler,
junov@google.com4ee7ae52011-06-30 17:30:49 +00001785 bitmap);
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001786 }
junov@google.com4ee7ae52011-06-30 17:30:49 +00001787 } else {
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001788 entry = sk_gr_create_bitmap_texture(ctx, gUNCACHED_KEY,
1789 sampler, bitmap);
junov@google.com4ee7ae52011-06-30 17:30:49 +00001790 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001791 if (NULL == entry.texture()) {
junov@google.com4ee7ae52011-06-30 17:30:49 +00001792 GrPrintf("---- failed to create texture for cache [%d %d]\n",
1793 bitmap.width(), bitmap.height());
reed@google.comac10a2d2010-12-22 21:39:39 +00001794 }
1795 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001796 return entry;
reed@google.comac10a2d2010-12-22 21:39:39 +00001797}
1798
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001799void SkGpuDevice::unlockCachedTexture(TexCache cache) {
1800 this->context()->unlockTexture(cache);
reed@google.comac10a2d2010-12-22 21:39:39 +00001801}
1802
bsalomon@google.comfb309512011-11-30 14:13:48 +00001803bool SkGpuDevice::isBitmapInTextureCache(const SkBitmap& bitmap,
1804 const GrSamplerState& sampler) const {
1805 GrContext::TextureKey key = bitmap.getGenerationID();
1806 key |= ((uint64_t) bitmap.pixelRefOffset()) << 32;
1807 return this->context()->isTextureInCache(key, bitmap.width(),
bsalomon@google.com1fadb202011-12-12 16:10:08 +00001808 bitmap.height(), &sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +00001809
1810}
1811
1812
bsalomon@google.come97f0852011-06-17 13:10:25 +00001813SkDevice* SkGpuDevice::onCreateCompatibleDevice(SkBitmap::Config config,
1814 int width, int height,
1815 bool isOpaque,
1816 Usage usage) {
1817 return SkNEW_ARGS(SkGpuDevice,(this->context(), config,
1818 width, height, usage));
1819}
1820