blob: 7052d2531cff56b9212f964efb6b82df33900301 [file] [log] [blame]
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001/*
2 * 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.
6 */
7
8#include "SkGpuDevice.h"
9
robertphillipsccb1b572015-05-27 11:02:55 -070010#include "GrBlurUtils.h"
kkinnunenabcfab42015-02-22 22:53:44 -080011#include "GrContext.h"
robertphillipsea461502015-05-26 11:38:03 -070012#include "GrDrawContext.h"
robertphillips2334fb62015-06-17 05:43:33 -070013#include "GrFontScaler.h"
kkinnunenabcfab42015-02-22 22:53:44 -080014#include "GrGpu.h"
15#include "GrGpuResourcePriv.h"
robertphillips98d709b2014-09-02 10:20:50 -070016#include "GrLayerHoister.h"
robertphillips274b4ba2014-09-04 07:24:18 -070017#include "GrRecordReplaceDraw.h"
egdanield58a0ba2014-06-11 10:30:05 -070018#include "GrStrokeInfo.h"
joshualitt8f94bb22015-04-28 07:04:11 -070019#include "GrTextContext.h"
egdanielbbcb38d2014-06-19 10:19:29 -070020#include "GrTracing.h"
robertphillips30d78412014-11-24 09:49:17 -080021#include "SkCanvasPriv.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000022#include "SkDrawProcs.h"
kkinnunenabcfab42015-02-22 22:53:44 -080023#include "SkErrorInternals.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000024#include "SkGlyphCache.h"
kkinnunenabcfab42015-02-22 22:53:44 -080025#include "SkGrTexturePixelRef.h"
reeda85d4d02015-05-06 12:56:48 -070026#include "SkImage_Base.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000027#include "SkImageFilter.h"
robertphillips82365912014-11-12 09:32:34 -080028#include "SkLayerInfo.h"
commit-bot@chromium.org82139702014-03-10 22:53:20 +000029#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000030#include "SkPathEffect.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000031#include "SkPicture.h"
robertphillipsdb539902014-07-01 08:47:04 -070032#include "SkPictureData.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000033#include "SkRRect.h"
kkinnunenabcfab42015-02-22 22:53:44 -080034#include "SkRecord.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000035#include "SkStroke.h"
reed@google.com76f10a32014-02-05 15:32:21 +000036#include "SkSurface.h"
kkinnunenabcfab42015-02-22 22:53:44 -080037#include "SkSurface_Gpu.h"
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +000038#include "SkTLazy.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000039#include "SkUtils.h"
commit-bot@chromium.org559a8832014-05-30 10:08:22 +000040#include "SkVertState.h"
robertphillips320c9232014-07-29 06:07:19 -070041#include "SkXfermode.h"
joshualitta61c8172015-08-17 10:51:22 -070042#include "batches/GrRectBatchFactory.h"
kkinnunenabcfab42015-02-22 22:53:44 -080043#include "effects/GrBicubicEffect.h"
44#include "effects/GrDashingEffect.h"
45#include "effects/GrSimpleTextureEffect.h"
46#include "effects/GrTextureDomain.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000047
reedf037e0b2014-10-30 11:34:15 -070048#if SK_SUPPORT_GPU
49
senorblanco55b6d8b2014-07-30 11:26:46 -070050enum { kDefaultImageFilterCacheSize = 32 * 1024 * 1024 };
51
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000052#if 0
53 extern bool (*gShouldDrawProc)();
joshualitt5531d512014-12-17 15:50:11 -080054 #define CHECK_SHOULD_DRAW(draw) \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000055 do { \
56 if (gShouldDrawProc && !gShouldDrawProc()) return; \
joshualitt5531d512014-12-17 15:50:11 -080057 this->prepareDraw(draw); \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000058 } while (0)
59#else
joshualitt5531d512014-12-17 15:50:11 -080060 #define CHECK_SHOULD_DRAW(draw) this->prepareDraw(draw)
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000061#endif
62
63// This constant represents the screen alignment criterion in texels for
64// requiring texture domain clamping to prevent color bleeding when drawing
65// a sub region of a larger source image.
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000066#define COLOR_BLEED_TOLERANCE 0.001f
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000067
68#define DO_DEFERRED_CLEAR() \
69 do { \
bsalomonafe30052015-01-16 07:32:33 -080070 if (fNeedClear) { \
71 this->clearAll(); \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000072 } \
73 } while (false) \
74
75///////////////////////////////////////////////////////////////////////////////
76
77#define CHECK_FOR_ANNOTATION(paint) \
78 do { if (paint.getAnnotation()) { return; } } while (0)
79
80///////////////////////////////////////////////////////////////////////////////
81
bsalomonbcf0a522014-10-08 08:40:09 -070082// Helper for turning a bitmap into a texture. If the bitmap is GrTexture backed this
83// just accesses the backing GrTexture. Otherwise, it creates a cached texture
84// representation and releases it in the destructor.
85class AutoBitmapTexture : public SkNoncopyable {
Brian Salomon9323b8b2014-10-07 15:07:38 -040086public:
bsalomonbcf0a522014-10-08 08:40:09 -070087 AutoBitmapTexture() {}
robertphillipsdbe60742014-09-30 06:54:17 -070088
bsalomonbcf0a522014-10-08 08:40:09 -070089 AutoBitmapTexture(GrContext* context,
90 const SkBitmap& bitmap,
91 const GrTextureParams* params,
92 GrTexture** texture) {
Brian Salomon9323b8b2014-10-07 15:07:38 -040093 SkASSERT(texture);
bsalomonbcf0a522014-10-08 08:40:09 -070094 *texture = this->set(context, bitmap, params);
Brian Salomon9323b8b2014-10-07 15:07:38 -040095 }
96
bsalomonbcf0a522014-10-08 08:40:09 -070097 GrTexture* set(GrContext* context,
Brian Salomon9323b8b2014-10-07 15:07:38 -040098 const SkBitmap& bitmap,
99 const GrTextureParams* params) {
bsalomonbcf0a522014-10-08 08:40:09 -0700100 // Either get the texture directly from the bitmap, or else use the cache and
101 // remember to unref it.
102 if (GrTexture* bmpTexture = bitmap.getTexture()) {
103 fTexture.reset(NULL);
104 return bmpTexture;
105 } else {
106 fTexture.reset(GrRefCachedBitmapTexture(context, bitmap, params));
107 return fTexture.get();
Brian Salomon9323b8b2014-10-07 15:07:38 -0400108 }
Brian Salomon9323b8b2014-10-07 15:07:38 -0400109 }
110
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000111private:
bsalomonbcf0a522014-10-08 08:40:09 -0700112 SkAutoTUnref<GrTexture> fTexture;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000113};
114
115///////////////////////////////////////////////////////////////////////////////
116
117struct GrSkDrawProcs : public SkDrawProcs {
118public:
119 GrContext* fContext;
120 GrTextContext* fTextContext;
121 GrFontScaler* fFontScaler; // cached in the skia glyphcache
122};
123
124///////////////////////////////////////////////////////////////////////////////
125
bsalomon74f681d2015-06-23 14:38:48 -0700126/** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation
127 should fail. */
128bool SkGpuDevice::CheckAlphaTypeAndGetFlags(
129 const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) {
130 *flags = 0;
131 if (info) {
132 switch (info->alphaType()) {
133 case kPremul_SkAlphaType:
134 break;
135 case kOpaque_SkAlphaType:
136 *flags |= SkGpuDevice::kIsOpaque_Flag;
137 break;
138 default: // If it is unpremul or unknown don't try to render
139 return false;
140 }
141 }
142 if (kClear_InitContents == init) {
143 *flags |= kNeedClear_Flag;
144 }
145 return true;
146}
147
148SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, const SkSurfaceProps* props,
149 InitContents init) {
150 return SkGpuDevice::Create(rt, rt->width(), rt->height(), props, init);
senorblancod0d37ca2015-04-02 04:54:56 -0700151}
152
153SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, int width, int height,
bsalomon74f681d2015-06-23 14:38:48 -0700154 const SkSurfaceProps* props, InitContents init) {
bsalomonafe30052015-01-16 07:32:33 -0800155 if (!rt || rt->wasDestroyed()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000156 return NULL;
157 }
bsalomon74f681d2015-06-23 14:38:48 -0700158 unsigned flags;
159 if (!CheckAlphaTypeAndGetFlags(NULL, init, &flags)) {
160 return NULL;
161 }
senorblancod0d37ca2015-04-02 04:54:56 -0700162 return SkNEW_ARGS(SkGpuDevice, (rt, width, height, props, flags));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000163}
164
bsalomon74f681d2015-06-23 14:38:48 -0700165SkGpuDevice* SkGpuDevice::Create(GrContext* context, SkSurface::Budgeted budgeted,
166 const SkImageInfo& info, int sampleCount,
167 const SkSurfaceProps* props, InitContents init) {
168 unsigned flags;
169 if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) {
170 return NULL;
171 }
172
173 SkAutoTUnref<GrRenderTarget> rt(CreateRenderTarget(context, budgeted, info, sampleCount));
174 if (NULL == rt) {
175 return NULL;
176 }
177
178 return SkNEW_ARGS(SkGpuDevice, (rt, info.width(), info.height(), props, flags));
179}
180
senorblancod0d37ca2015-04-02 04:54:56 -0700181SkGpuDevice::SkGpuDevice(GrRenderTarget* rt, int width, int height,
182 const SkSurfaceProps* props, unsigned flags)
robertphillipsfcf78292015-06-19 11:49:52 -0700183 : INHERITED(SkSurfacePropsCopyOrDefault(props))
reedb2db8982014-11-13 12:41:02 -0800184{
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000185 fDrawProcs = NULL;
186
bsalomonafe30052015-01-16 07:32:33 -0800187 fContext = SkRef(rt->getContext());
bsalomon74f681d2015-06-23 14:38:48 -0700188 fNeedClear = SkToBool(flags & kNeedClear_Flag);
189 fOpaque = SkToBool(flags & kIsOpaque_Flag);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000190
bsalomonafe30052015-01-16 07:32:33 -0800191 fRenderTarget = SkRef(rt);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000192
bsalomon74f681d2015-06-23 14:38:48 -0700193 SkAlphaType at = fOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
194 SkImageInfo info = rt->surfacePriv().info(at).makeWH(width, height);
bsalomonafe30052015-01-16 07:32:33 -0800195 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (info, rt));
bsalomonafbf2d62014-09-30 12:18:44 -0700196 fLegacyBitmap.setInfo(info);
reed89443ab2014-06-27 11:34:19 -0700197 fLegacyBitmap.setPixelRef(pr)->unref();
kkinnunenc6cb56f2014-06-24 00:12:27 -0700198
robertphillips7b05ff12015-06-19 14:14:54 -0700199 fDrawContext.reset(SkRef(fContext->drawContext(&this->surfaceProps())));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000200}
201
kkinnunenabcfab42015-02-22 22:53:44 -0800202GrRenderTarget* SkGpuDevice::CreateRenderTarget(GrContext* context, SkSurface::Budgeted budgeted,
203 const SkImageInfo& origInfo, int sampleCount) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000204 if (kUnknown_SkColorType == origInfo.colorType() ||
205 origInfo.width() < 0 || origInfo.height() < 0) {
206 return NULL;
207 }
208
bsalomonafe30052015-01-16 07:32:33 -0800209 if (!context) {
210 return NULL;
211 }
212
reede5ea5002014-09-03 11:54:58 -0700213 SkColorType ct = origInfo.colorType();
214 SkAlphaType at = origInfo.alphaType();
reede5ea5002014-09-03 11:54:58 -0700215 if (kRGB_565_SkColorType == ct) {
216 at = kOpaque_SkAlphaType; // force this setting
bsalomonafe30052015-01-16 07:32:33 -0800217 } else if (ct != kBGRA_8888_SkColorType && ct != kRGBA_8888_SkColorType) {
218 // Fall back from whatever ct was to default of kRGBA or kBGRA which is aliased as kN32
reede5ea5002014-09-03 11:54:58 -0700219 ct = kN32_SkColorType;
bsalomonafe30052015-01-16 07:32:33 -0800220 }
221 if (kOpaque_SkAlphaType != at) {
222 at = kPremul_SkAlphaType; // force this setting
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000223 }
reede5ea5002014-09-03 11:54:58 -0700224 const SkImageInfo info = SkImageInfo::Make(origInfo.width(), origInfo.height(), ct, at);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000225
bsalomonf2703d82014-10-28 14:33:06 -0700226 GrSurfaceDesc desc;
227 desc.fFlags = kRenderTarget_GrSurfaceFlag;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000228 desc.fWidth = info.width();
229 desc.fHeight = info.height();
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000230 desc.fConfig = SkImageInfo2GrPixelConfig(info);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000231 desc.fSampleCnt = sampleCount;
bsalomond309e7a2015-04-30 14:18:54 -0700232 GrTexture* texture = context->textureProvider()->createTexture(
233 desc, SkToBool(budgeted), NULL, 0);
kkinnunenabcfab42015-02-22 22:53:44 -0800234 if (NULL == texture) {
235 return NULL;
236 }
237 SkASSERT(NULL != texture->asRenderTarget());
238 return texture->asRenderTarget();
239}
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000240
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000241SkGpuDevice::~SkGpuDevice() {
242 if (fDrawProcs) {
243 delete fDrawProcs;
244 }
skia.committer@gmail.comd2ac07b2014-01-25 07:01:49 +0000245
bsalomon32d0b3b2014-08-29 07:50:23 -0700246 fRenderTarget->unref();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000247 fContext->unref();
248}
249
250///////////////////////////////////////////////////////////////////////////////
251
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000252bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
253 int x, int y) {
254 DO_DEFERRED_CLEAR();
255
256 // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000257 GrPixelConfig config = SkImageInfo2GrPixelConfig(dstInfo);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000258 if (kUnknown_GrPixelConfig == config) {
259 return false;
260 }
261
262 uint32_t flags = 0;
263 if (kUnpremul_SkAlphaType == dstInfo.alphaType()) {
264 flags = GrContext::kUnpremul_PixelOpsFlag;
265 }
bsalomon74f681d2015-06-23 14:38:48 -0700266 return fRenderTarget->readPixels(x, y, dstInfo.width(), dstInfo.height(), config, dstPixels,
267 dstRowBytes, flags);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000268}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000269
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000270bool SkGpuDevice::onWritePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes,
271 int x, int y) {
272 // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000273 GrPixelConfig config = SkImageInfo2GrPixelConfig(info);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000274 if (kUnknown_GrPixelConfig == config) {
275 return false;
276 }
277 uint32_t flags = 0;
278 if (kUnpremul_SkAlphaType == info.alphaType()) {
279 flags = GrContext::kUnpremul_PixelOpsFlag;
280 }
281 fRenderTarget->writePixels(x, y, info.width(), info.height(), config, pixels, rowBytes, flags);
282
283 // need to bump our genID for compatibility with clients that "know" we have a bitmap
reed89443ab2014-06-27 11:34:19 -0700284 fLegacyBitmap.notifyPixelsChanged();
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000285
286 return true;
287}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000288
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000289const SkBitmap& SkGpuDevice::onAccessBitmap() {
290 DO_DEFERRED_CLEAR();
reed89443ab2014-06-27 11:34:19 -0700291 return fLegacyBitmap;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000292}
293
reed41e010c2015-06-09 12:16:53 -0700294bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) {
295 DO_DEFERRED_CLEAR();
296 // For compatibility with clients the know we're backed w/ a bitmap, and want to inspect its
297 // genID. When we can hide/remove that fact, we can eliminate this call to notify.
298 // ... ugh.
299 fLegacyBitmap.notifyPixelsChanged();
300 return false;
301}
302
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000303void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
304 INHERITED::onAttachToCanvas(canvas);
305
306 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
joshualitt44701df2015-02-23 14:44:57 -0800307 fClipStack.reset(SkRef(canvas->getClipStack()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000308}
309
310void SkGpuDevice::onDetachFromCanvas() {
311 INHERITED::onDetachFromCanvas();
joshualitt570d2f82015-02-25 13:19:48 -0800312 fClip.reset();
joshualitt44701df2015-02-23 14:44:57 -0800313 fClipStack.reset(NULL);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000314}
315
316// call this every draw call, to ensure that the context reflects our state,
317// and not the state from some other canvas/device
joshualitt5531d512014-12-17 15:50:11 -0800318void SkGpuDevice::prepareDraw(const SkDraw& draw) {
joshualitt44701df2015-02-23 14:44:57 -0800319 SkASSERT(fClipStack.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000320
joshualitt44701df2015-02-23 14:44:57 -0800321 SkASSERT(draw.fClipStack && draw.fClipStack == fClipStack);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000322
joshualitt570d2f82015-02-25 13:19:48 -0800323 fClip.setClipStack(fClipStack, &this->getOrigin());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000324
325 DO_DEFERRED_CLEAR();
326}
327
328GrRenderTarget* SkGpuDevice::accessRenderTarget() {
robertphillips7156b092015-05-14 08:54:12 -0700329 DO_DEFERRED_CLEAR();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000330 return fRenderTarget;
331}
332
reed8eddfb52014-12-04 07:50:14 -0800333void SkGpuDevice::clearAll() {
334 GrColor color = 0;
335 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::clearAll", fContext);
336 SkIRect rect = SkIRect::MakeWH(this->width(), this->height());
robertphillipsea461502015-05-26 11:38:03 -0700337 fDrawContext->clear(fRenderTarget, &rect, color, true);
bsalomonafe30052015-01-16 07:32:33 -0800338 fNeedClear = false;
reed8eddfb52014-12-04 07:50:14 -0800339}
340
kkinnunenabcfab42015-02-22 22:53:44 -0800341void SkGpuDevice::replaceRenderTarget(bool shouldRetainContent) {
342 // Caller must have accessed the render target, because it knows the rt must be replaced.
343 SkASSERT(!fNeedClear);
344
345 SkSurface::Budgeted budgeted =
346 fRenderTarget->resourcePriv().isBudgeted() ? SkSurface::kYes_Budgeted
347 : SkSurface::kNo_Budgeted;
348
349 SkAutoTUnref<GrRenderTarget> newRT(CreateRenderTarget(
vbuzinovdded6962015-06-12 08:59:45 -0700350 fRenderTarget->getContext(), budgeted, this->imageInfo(), fRenderTarget->desc().fSampleCnt));
kkinnunenabcfab42015-02-22 22:53:44 -0800351
352 if (NULL == newRT) {
353 return;
354 }
355
356 if (shouldRetainContent) {
357 if (fRenderTarget->wasDestroyed()) {
358 return;
359 }
360 this->context()->copySurface(newRT, fRenderTarget);
361 }
362
363 SkASSERT(fRenderTarget != newRT);
364
365 fRenderTarget->unref();
366 fRenderTarget = newRT.detach();
367
bsalomon74f681d2015-06-23 14:38:48 -0700368#ifdef SK_DEBUG
369 SkImageInfo info = fRenderTarget->surfacePriv().info(fOpaque ? kOpaque_SkAlphaType :
370 kPremul_SkAlphaType);
371 SkASSERT(info == fLegacyBitmap.info());
372#endif
373 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (fLegacyBitmap.info(), fRenderTarget));
kkinnunenabcfab42015-02-22 22:53:44 -0800374 fLegacyBitmap.setPixelRef(pr)->unref();
robertphillipsea461502015-05-26 11:38:03 -0700375
robertphillips7b05ff12015-06-19 14:14:54 -0700376 fDrawContext.reset(SkRef(fRenderTarget->getContext()->drawContext(&this->surfaceProps())));
kkinnunenabcfab42015-02-22 22:53:44 -0800377}
378
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000379///////////////////////////////////////////////////////////////////////////////
380
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000381void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -0800382 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -0700383 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPaint", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000384
385 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700386 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
387 return;
388 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000389
robertphillipsea461502015-05-26 11:38:03 -0700390 fDrawContext->drawPaint(fRenderTarget, fClip, grPaint, *draw.fMatrix);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000391}
392
393// must be in SkCanvas::PointMode order
394static const GrPrimitiveType gPointMode2PrimtiveType[] = {
395 kPoints_GrPrimitiveType,
396 kLines_GrPrimitiveType,
397 kLineStrip_GrPrimitiveType
398};
399
ethannicholas330bb952015-07-17 06:44:02 -0700400// suppress antialiasing on axis-aligned integer-coordinate lines
401static bool needs_antialiasing(SkCanvas::PointMode mode, size_t count, const SkPoint pts[]) {
402 if (mode == SkCanvas::PointMode::kPoints_PointMode) {
403 return false;
404 }
405 if (count == 2) {
406 // We do not antialias as long as the primary axis of the line is integer-aligned, even if
407 // the other coordinates are not. This does mean the two end pixels of the line will be
408 // sharp even when they shouldn't be, but turning antialiasing on (as things stand
409 // currently) means that the line will turn into a two-pixel-wide blur. While obviously a
410 // more complete fix is possible down the road, for the time being we accept the error on
411 // the two end pixels as being the lesser of two evils.
412 if (pts[0].fX == pts[1].fX) {
413 return ((int) pts[0].fX) != pts[0].fX;
414 }
415 if (pts[0].fY == pts[1].fY) {
416 return ((int) pts[0].fY) != pts[0].fY;
417 }
418 }
419 return true;
420}
421
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000422void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
423 size_t count, const SkPoint pts[], const SkPaint& paint) {
424 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800425 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000426
427 SkScalar width = paint.getStrokeWidth();
428 if (width < 0) {
429 return;
430 }
431
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000432 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) {
egdaniele61c4112014-06-12 10:24:21 -0700433 GrStrokeInfo strokeInfo(paint, SkPaint::kStroke_Style);
434 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700435 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true,
436 &grPaint)) {
437 return;
438 }
egdaniele61c4112014-06-12 10:24:21 -0700439 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700440 path.setIsVolatile(true);
egdaniele61c4112014-06-12 10:24:21 -0700441 path.moveTo(pts[0]);
442 path.lineTo(pts[1]);
robertphillipsea461502015-05-26 11:38:03 -0700443 fDrawContext->drawPath(fRenderTarget, fClip, grPaint, *draw.fMatrix, path, strokeInfo);
egdaniele61c4112014-06-12 10:24:21 -0700444 return;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000445 }
446
ethannicholas330bb952015-07-17 06:44:02 -0700447 // we only handle non-antialiased hairlines and paints without path effects or mask filters,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000448 // else we let the SkDraw call our drawPath()
ethannicholas330bb952015-07-17 06:44:02 -0700449 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter() ||
450 (paint.isAntiAlias() && needs_antialiasing(mode, count, pts))) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000451 draw.drawPoints(mode, count, pts, paint, true);
452 return;
453 }
454
455 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700456 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
457 return;
458 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000459
robertphillipsea461502015-05-26 11:38:03 -0700460 fDrawContext->drawVertices(fRenderTarget,
461 fClip,
462 grPaint,
463 *draw.fMatrix,
464 gPointMode2PrimtiveType[mode],
465 SkToS32(count),
466 (SkPoint*)pts,
467 NULL,
468 NULL,
469 NULL,
470 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000471}
472
473///////////////////////////////////////////////////////////////////////////////
474
475void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
476 const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -0700477 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRect", fContext);
478
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000479 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800480 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000481
482 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
483 SkScalar width = paint.getStrokeWidth();
484
485 /*
486 We have special code for hairline strokes, miter-strokes, bevel-stroke
487 and fills. Anything else we just call our path code.
488 */
489 bool usePath = doStroke && width > 0 &&
490 (paint.getStrokeJoin() == SkPaint::kRound_Join ||
491 (paint.getStrokeJoin() == SkPaint::kBevel_Join && rect.isEmpty()));
egdanield58a0ba2014-06-11 10:30:05 -0700492
robertphillipsd8aa59d2015-08-05 09:07:12 -0700493 // a few other reasons we might need to call drawPath...
494 if (paint.getMaskFilter() ||
495 paint.getStyle() == SkPaint::kStrokeAndFill_Style) { // we can't both stroke and fill rects
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000496 usePath = true;
497 }
egdanield58a0ba2014-06-11 10:30:05 -0700498
joshualitt5531d512014-12-17 15:50:11 -0800499 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000500 usePath = true;
501 }
502
egdanield58a0ba2014-06-11 10:30:05 -0700503 GrStrokeInfo strokeInfo(paint);
504
505 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700506 if (!usePath && pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700507 usePath = true;
508 }
509
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000510 if (usePath) {
511 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700512 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000513 path.addRect(rect);
514 this->drawPath(draw, path, paint, NULL, true);
515 return;
516 }
517
518 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700519 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
520 return;
521 }
Mike Klein744fb732014-06-23 15:13:26 -0400522
robertphillipsea461502015-05-26 11:38:03 -0700523 fDrawContext->drawRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, &strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000524}
525
526///////////////////////////////////////////////////////////////////////////////
527
528void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect,
joshualitt5531d512014-12-17 15:50:11 -0800529 const SkPaint& paint) {
egdanield78a1682014-07-09 10:41:26 -0700530 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRRect", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000531 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800532 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000533
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000534 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700535 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
536 return;
537 }
Mike Klein744fb732014-06-23 15:13:26 -0400538
egdanield58a0ba2014-06-11 10:30:05 -0700539 GrStrokeInfo strokeInfo(paint);
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000540 if (paint.getMaskFilter()) {
541 // try to hit the fast path for drawing filtered round rects
542
543 SkRRect devRRect;
joshualitt5531d512014-12-17 15:50:11 -0800544 if (rect.transform(*draw.fMatrix, &devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000545 if (devRRect.allCornersCircular()) {
546 SkRect maskRect;
547 if (paint.getMaskFilter()->canFilterMaskGPU(devRRect.rect(),
joshualitt5531d512014-12-17 15:50:11 -0800548 draw.fClip->getBounds(),
549 *draw.fMatrix,
550 &maskRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000551 SkIRect finalIRect;
552 maskRect.roundOut(&finalIRect);
553 if (draw.fClip->quickReject(finalIRect)) {
554 // clipped out
555 return;
556 }
robertphillipsff0ca5e2015-07-22 11:54:44 -0700557 if (paint.getMaskFilter()->directFilterRRectMaskGPU(fContext->textureProvider(),
558 fDrawContext,
joshualitt25d9c152015-02-18 12:29:52 -0800559 fRenderTarget,
560 &grPaint,
joshualitt570d2f82015-02-25 13:19:48 -0800561 fClip,
joshualitt5531d512014-12-17 15:50:11 -0800562 *draw.fMatrix,
kkinnunend156d362015-05-18 22:23:54 -0700563 strokeInfo,
egdanield58a0ba2014-06-11 10:30:05 -0700564 devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000565 return;
566 }
567 }
568
569 }
570 }
571
572 }
573
egdanield58a0ba2014-06-11 10:30:05 -0700574 bool usePath = false;
575
576 if (paint.getMaskFilter()) {
577 usePath = true;
578 } else {
579 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700580 if (pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700581 usePath = true;
582 }
583 }
584
585
586 if (usePath) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000587 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700588 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000589 path.addRRect(rect);
590 this->drawPath(draw, path, paint, NULL, true);
591 return;
592 }
Mike Klein744fb732014-06-23 15:13:26 -0400593
robertphillipsea461502015-05-26 11:38:03 -0700594 fDrawContext->drawRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000595}
596
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000597void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer,
joshualitt5531d512014-12-17 15:50:11 -0800598 const SkRRect& inner, const SkPaint& paint) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000599 SkStrokeRec stroke(paint);
600 if (stroke.isFillStyle()) {
601
602 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800603 CHECK_SHOULD_DRAW(draw);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000604
605 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700606 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true,
607 &grPaint)) {
608 return;
609 }
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000610
611 if (NULL == paint.getMaskFilter() && NULL == paint.getPathEffect()) {
robertphillipsea461502015-05-26 11:38:03 -0700612 fDrawContext->drawDRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, outer, inner);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000613 return;
614 }
615 }
616
617 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700618 path.setIsVolatile(true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000619 path.addRRect(outer);
620 path.addRRect(inner);
621 path.setFillType(SkPath::kEvenOdd_FillType);
622
623 this->drawPath(draw, path, paint, NULL, true);
624}
625
626
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000627/////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000628
629void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval,
630 const SkPaint& paint) {
egdanield78a1682014-07-09 10:41:26 -0700631 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawOval", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000632 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800633 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000634
egdanield58a0ba2014-06-11 10:30:05 -0700635 GrStrokeInfo strokeInfo(paint);
636
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000637 bool usePath = false;
638 // some basic reasons we might need to call drawPath...
egdanield58a0ba2014-06-11 10:30:05 -0700639 if (paint.getMaskFilter()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000640 usePath = true;
egdanield58a0ba2014-06-11 10:30:05 -0700641 } else {
642 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700643 if (pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700644 usePath = true;
645 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000646 }
647
648 if (usePath) {
649 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700650 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000651 path.addOval(oval);
652 this->drawPath(draw, path, paint, NULL, true);
653 return;
654 }
655
656 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700657 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
658 return;
659 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000660
robertphillipsea461502015-05-26 11:38:03 -0700661 fDrawContext->drawOval(fRenderTarget, fClip, grPaint, *draw.fMatrix, oval, strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000662}
663
664#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000665
666///////////////////////////////////////////////////////////////////////////////
667
robertphillipsccb1b572015-05-27 11:02:55 -0700668static SkBitmap wrap_texture(GrTexture* texture, int width, int height) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000669 SkBitmap result;
senorblancod0d37ca2015-04-02 04:54:56 -0700670 result.setInfo(SkImageInfo::MakeN32Premul(width, height));
reed6c225732014-06-09 19:52:07 -0700671 result.setPixelRef(SkNEW_ARGS(SkGrPixelRef, (result.info(), texture)))->unref();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000672 return result;
673}
674
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000675void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
676 const SkPaint& paint, const SkMatrix* prePathMatrix,
677 bool pathIsMutable) {
678 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800679 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -0700680 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPath", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000681
robertphillipsccb1b572015-05-27 11:02:55 -0700682 GrBlurUtils::drawPathWithMaskFilter(fContext, fDrawContext, fRenderTarget,
683 fClip, origSrcPath, paint,
684 *draw.fMatrix, prePathMatrix,
685 draw.fClip->getBounds(), pathIsMutable);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000686}
687
688static const int kBmpSmallTileSize = 1 << 10;
689
690static inline int get_tile_count(const SkIRect& srcRect, int tileSize) {
691 int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1;
692 int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1;
693 return tilesX * tilesY;
694}
695
696static int determine_tile_size(const SkBitmap& bitmap, const SkIRect& src, int maxTileSize) {
697 if (maxTileSize <= kBmpSmallTileSize) {
698 return maxTileSize;
699 }
700
701 size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize);
702 size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize);
703
704 maxTileTotalTileSize *= maxTileSize * maxTileSize;
705 smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize;
706
707 if (maxTileTotalTileSize > 2 * smallTotalTileSize) {
708 return kBmpSmallTileSize;
709 } else {
710 return maxTileSize;
711 }
712}
713
714// Given a bitmap, an optional src rect, and a context with a clip and matrix determine what
715// pixels from the bitmap are necessary.
bsalomon74f681d2015-06-23 14:38:48 -0700716static void determine_clipped_src_rect(const GrRenderTarget* rt,
joshualitt570d2f82015-02-25 13:19:48 -0800717 const GrClip& clip,
joshualitt5531d512014-12-17 15:50:11 -0800718 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000719 const SkBitmap& bitmap,
720 const SkRect* srcRectPtr,
721 SkIRect* clippedSrcIRect) {
joshualitt570d2f82015-02-25 13:19:48 -0800722 clip.getConservativeBounds(rt, clippedSrcIRect, NULL);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000723 SkMatrix inv;
joshualitt5531d512014-12-17 15:50:11 -0800724 if (!viewMatrix.invert(&inv)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000725 clippedSrcIRect->setEmpty();
726 return;
727 }
728 SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect);
729 inv.mapRect(&clippedSrcRect);
bsalomon49f085d2014-09-05 13:34:00 -0700730 if (srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000731 // we've setup src space 0,0 to map to the top left of the src rect.
732 clippedSrcRect.offset(srcRectPtr->fLeft, srcRectPtr->fTop);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000733 if (!clippedSrcRect.intersect(*srcRectPtr)) {
734 clippedSrcIRect->setEmpty();
735 return;
736 }
737 }
738 clippedSrcRect.roundOut(clippedSrcIRect);
739 SkIRect bmpBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height());
740 if (!clippedSrcIRect->intersect(bmpBounds)) {
741 clippedSrcIRect->setEmpty();
742 }
743}
744
745bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800746 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000747 const GrTextureParams& params,
748 const SkRect* srcRectPtr,
749 int maxTileSize,
750 int* tileSize,
751 SkIRect* clippedSrcRect) const {
752 // if bitmap is explictly texture backed then just use the texture
bsalomon49f085d2014-09-05 13:34:00 -0700753 if (bitmap.getTexture()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000754 return false;
755 }
756
757 // if it's larger than the max tile size, then we have no choice but tiling.
758 if (bitmap.width() > maxTileSize || bitmap.height() > maxTileSize) {
bsalomon74f681d2015-06-23 14:38:48 -0700759 determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, bitmap,
joshualitt570d2f82015-02-25 13:19:48 -0800760 srcRectPtr, clippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000761 *tileSize = determine_tile_size(bitmap, *clippedSrcRect, maxTileSize);
762 return true;
763 }
764
765 if (bitmap.width() * bitmap.height() < 4 * kBmpSmallTileSize * kBmpSmallTileSize) {
766 return false;
767 }
768
769 // if the entire texture is already in our cache then no reason to tile it
770 if (GrIsBitmapInCache(fContext, bitmap, &params)) {
771 return false;
772 }
773
774 // At this point we know we could do the draw by uploading the entire bitmap
775 // as a texture. However, if the texture would be large compared to the
776 // cache size and we don't require most of it for this draw then tile to
777 // reduce the amount of upload and cache spill.
778
779 // assumption here is that sw bitmap size is a good proxy for its size as
780 // a texture
781 size_t bmpSize = bitmap.getSize();
782 size_t cacheSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000783 fContext->getResourceCacheLimits(NULL, &cacheSize);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000784 if (bmpSize < cacheSize / 2) {
785 return false;
786 }
787
788 // Figure out how much of the src we will need based on the src rect and clipping.
bsalomon74f681d2015-06-23 14:38:48 -0700789 determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, bitmap, srcRectPtr,
joshualitt25d9c152015-02-18 12:29:52 -0800790 clippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000791 *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile.
792 size_t usedTileBytes = get_tile_count(*clippedSrcRect, kBmpSmallTileSize) *
793 kBmpSmallTileSize * kBmpSmallTileSize;
794
795 return usedTileBytes < 2 * bmpSize;
796}
797
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000798void SkGpuDevice::drawBitmap(const SkDraw& origDraw,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000799 const SkBitmap& bitmap,
800 const SkMatrix& m,
801 const SkPaint& paint) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000802 SkMatrix concat;
803 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
804 if (!m.isIdentity()) {
805 concat.setConcat(*draw->fMatrix, m);
806 draw.writable()->fMatrix = &concat;
807 }
reeda5517e22015-07-14 10:54:12 -0700808 this->drawBitmapCommon(*draw, bitmap, NULL, NULL, paint, SkCanvas::kStrict_SrcRectConstraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000809}
810
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000811// This method outsets 'iRect' by 'outset' all around and then clamps its extents to
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000812// 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner
813// of 'iRect' for all possible outsets/clamps.
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000814static inline void clamped_outset_with_offset(SkIRect* iRect,
815 int outset,
816 SkPoint* offset,
817 const SkIRect& clamp) {
818 iRect->outset(outset, outset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000819
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000820 int leftClampDelta = clamp.fLeft - iRect->fLeft;
821 if (leftClampDelta > 0) {
822 offset->fX -= outset - leftClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000823 iRect->fLeft = clamp.fLeft;
824 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000825 offset->fX -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000826 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000827
828 int topClampDelta = clamp.fTop - iRect->fTop;
829 if (topClampDelta > 0) {
830 offset->fY -= outset - topClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000831 iRect->fTop = clamp.fTop;
832 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000833 offset->fY -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000834 }
835
836 if (iRect->fRight > clamp.fRight) {
837 iRect->fRight = clamp.fRight;
838 }
839 if (iRect->fBottom > clamp.fBottom) {
840 iRect->fBottom = clamp.fBottom;
841 }
842}
843
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000844static bool has_aligned_samples(const SkRect& srcRect,
845 const SkRect& transformedRect) {
846 // detect pixel disalignment
847 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
848 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
849 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
850 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
851 SkScalarAbs(transformedRect.width() - srcRect.width()) <
852 COLOR_BLEED_TOLERANCE &&
853 SkScalarAbs(transformedRect.height() - srcRect.height()) <
854 COLOR_BLEED_TOLERANCE) {
855 return true;
856 }
857 return false;
858}
859
860static bool may_color_bleed(const SkRect& srcRect,
861 const SkRect& transformedRect,
robertphillips1accc4c2015-07-20 10:22:29 -0700862 const SkMatrix& m,
863 bool isMSAA) {
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000864 // Only gets called if has_aligned_samples returned false.
865 // So we can assume that sampling is axis aligned but not texel aligned.
866 SkASSERT(!has_aligned_samples(srcRect, transformedRect));
867 SkRect innerSrcRect(srcRect), innerTransformedRect,
868 outerTransformedRect(transformedRect);
robertphillips1accc4c2015-07-20 10:22:29 -0700869 if (isMSAA) {
870 innerSrcRect.inset(SK_Scalar1, SK_Scalar1);
871 } else {
872 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
873 }
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000874 m.mapRect(&innerTransformedRect, innerSrcRect);
875
876 // The gap between outerTransformedRect and innerTransformedRect
877 // represents the projection of the source border area, which is
878 // problematic for color bleeding. We must check whether any
879 // destination pixels sample the border area.
880 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
881 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
882 SkIRect outer, inner;
883 outerTransformedRect.round(&outer);
884 innerTransformedRect.round(&inner);
885 // If the inner and outer rects round to the same result, it means the
886 // border does not overlap any pixel centers. Yay!
887 return inner != outer;
888}
889
890static bool needs_texture_domain(const SkBitmap& bitmap,
891 const SkRect& srcRect,
892 GrTextureParams &params,
893 const SkMatrix& contextMatrix,
robertphillips1accc4c2015-07-20 10:22:29 -0700894 bool bicubic,
895 bool isMSAA) {
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000896 bool needsTextureDomain = false;
senorblancod0d37ca2015-04-02 04:54:56 -0700897 GrTexture* tex = bitmap.getTexture();
898 int width = tex ? tex->width() : bitmap.width();
899 int height = tex ? tex->height() : bitmap.height();
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000900
901 if (bicubic || params.filterMode() != GrTextureParams::kNone_FilterMode) {
902 // Need texture domain if drawing a sub rect
senorblancod0d37ca2015-04-02 04:54:56 -0700903 needsTextureDomain = srcRect.width() < width ||
904 srcRect.height() < height;
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000905 if (!bicubic && needsTextureDomain && contextMatrix.rectStaysRect()) {
906 // sampling is axis-aligned
907 SkRect transformedRect;
908 contextMatrix.mapRect(&transformedRect, srcRect);
909
910 if (has_aligned_samples(srcRect, transformedRect)) {
911 params.setFilterMode(GrTextureParams::kNone_FilterMode);
912 needsTextureDomain = false;
913 } else {
robertphillips1accc4c2015-07-20 10:22:29 -0700914 needsTextureDomain = may_color_bleed(srcRect, transformedRect,
915 contextMatrix, isMSAA);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000916 }
917 }
918 }
919 return needsTextureDomain;
920}
921
joshualitta61c8172015-08-17 10:51:22 -0700922static void draw_aa_bitmap(GrDrawContext* drawContext, GrContext* context,
923 GrRenderTarget* renderTarget, const GrClip& clip,
924 const SkMatrix& viewMatrix, const SkMatrix& srcRectToDstRect,
925 const SkPaint& paint, const SkBitmap* bitmapPtr, const SkSize& dstSize) {
926 SkShader::TileMode tm[] = {
927 SkShader::kClamp_TileMode,
928 SkShader::kClamp_TileMode,
929 };
930
931 bool doBicubic;
932 GrTextureParams::FilterMode textureFilterMode =
933 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewMatrix,
934 srcRectToDstRect,
935 &doBicubic);
936
937 // Setup texture to wrap bitmap
938 GrTextureParams params(tm, textureFilterMode);
939 SkAutoTUnref<GrTexture> texture(GrRefCachedBitmapTexture(context, *bitmapPtr, &params));
940
941 if (!texture) {
942 SkErrorInternals::SetError(kInternalError_SkError,
943 "Couldn't convert bitmap to texture.");
944 return;
945 }
946
947 // Setup paint
948 GrColor paintColor = (kAlpha_8_SkColorType == bitmapPtr->colorType()) ?
949 SkColor2GrColor(paint.getColor()) :
950 SkColor2GrColorJustAlpha(paint.getColor());
951
952 GrPaint grPaint;
953
954 // Create and insert texture effect
955 SkAutoTUnref<const GrFragmentProcessor> fp;
956 if (doBicubic) {
957 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture,
958 SkMatrix::I(),
959 tm));
960 } else {
961 fp.reset(GrSimpleTextureEffect::Create(grPaint.getProcessorDataManager(), texture,
962 SkMatrix::I(), params));
963 }
964
965 // The bitmap read has to be first
966 grPaint.addColorProcessor(fp);
967 if (!SkPaint2GrPaintNoShader(context, renderTarget, paint, SkColor2GrColor(paint.getColor()),
968 false, &grPaint)) {
969 return;
970 }
971
972 grPaint.setColor(paintColor);
973
974 // Setup dst rect and final matrix
975 SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight};
976
977 SkRect devRect;
978 viewMatrix.mapRect(&devRect, dstRect);
979
980 SkMatrix matrix;
981 matrix.setIDiv(bitmapPtr->width(), bitmapPtr->height());
982
983 SkMatrix dstRectToSrcRect;
984 if (!srcRectToDstRect.invert(&dstRectToSrcRect)) {
985 return;
986 }
987 matrix.preConcat(dstRectToSrcRect);
988
989 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateFillAA(grPaint.getColor(),
990 viewMatrix,
991 matrix,
992 dstRect,
993 devRect));
994
995 drawContext->drawBatch(renderTarget, clip, grPaint, batch);
996}
997
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000998void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
999 const SkBitmap& bitmap,
1000 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001001 const SkSize* dstSizePtr,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001002 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001003 SkCanvas::SrcRectConstraint constraint) {
joshualitt5531d512014-12-17 15:50:11 -08001004 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001005
1006 SkRect srcRect;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001007 SkSize dstSize;
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001008 // If there is no src rect, or the src rect contains the entire bitmap then we're effectively
1009 // in the (easier) bleed case, so update flags.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001010 if (NULL == srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001011 SkScalar w = SkIntToScalar(bitmap.width());
1012 SkScalar h = SkIntToScalar(bitmap.height());
1013 dstSize.fWidth = w;
1014 dstSize.fHeight = h;
1015 srcRect.set(0, 0, w, h);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001016 } else {
bsalomon49f085d2014-09-05 13:34:00 -07001017 SkASSERT(dstSizePtr);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001018 srcRect = *srcRectPtr;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001019 dstSize = *dstSizePtr;
senorblancod0d37ca2015-04-02 04:54:56 -07001020 }
1021 GrTexture* tex = bitmap.getTexture();
1022 int width = tex ? tex->width() : bitmap.width();
1023 int height = tex ? tex->height() : bitmap.height();
1024 if (srcRect.fLeft <= 0 && srcRect.fTop <= 0 &&
1025 srcRect.fRight >= width && srcRect.fBottom >= height) {
reeda5517e22015-07-14 10:54:12 -07001026 constraint = SkCanvas::kFast_SrcRectConstraint;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001027 }
1028
derekf367e1862014-12-02 11:02:06 -08001029 // If the render target is not msaa and draw is antialiased, we call
1030 // drawRect instead of drawing on the render target directly.
1031 // FIXME: the tiled bitmap code path doesn't currently support
1032 // anti-aliased edges, we work around that for now by drawing directly
1033 // if the image size exceeds maximum texture size.
bsalomon76228632015-05-29 08:02:10 -07001034 int maxTextureSize = fContext->caps()->maxTextureSize();
vbuzinovdded6962015-06-12 08:59:45 -07001035 bool directDraw = fRenderTarget->isUnifiedMultisampled() ||
derekf367e1862014-12-02 11:02:06 -08001036 !paint.isAntiAlias() ||
1037 bitmap.width() > maxTextureSize ||
1038 bitmap.height() > maxTextureSize;
1039
1040 // we check whether dst rect are pixel aligned
1041 if (!directDraw) {
joshualitt5531d512014-12-17 15:50:11 -08001042 bool staysRect = draw.fMatrix->rectStaysRect();
derekf367e1862014-12-02 11:02:06 -08001043
1044 if (staysRect) {
1045 SkRect rect;
1046 SkRect dstRect = SkRect::MakeXYWH(0, 0, dstSize.fWidth, dstSize.fHeight);
joshualitt5531d512014-12-17 15:50:11 -08001047 draw.fMatrix->mapRect(&rect, dstRect);
derekf367e1862014-12-02 11:02:06 -08001048 const SkScalar *scalars = rect.asScalars();
1049 bool isDstPixelAligned = true;
1050 for (int i = 0; i < 4; i++) {
1051 if (!SkScalarIsInt(scalars[i])) {
1052 isDstPixelAligned = false;
1053 break;
1054 }
1055 }
1056
1057 if (isDstPixelAligned)
1058 directDraw = true;
1059 }
1060 }
1061
1062 if (paint.getMaskFilter() || !directDraw) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001063 // Convert the bitmap to a shader so that the rect can be drawn
1064 // through drawRect, which supports mask filters.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001065 SkBitmap tmp; // subset of bitmap, if necessary
1066 const SkBitmap* bitmapPtr = &bitmap;
joshualitta61c8172015-08-17 10:51:22 -07001067 SkMatrix srcRectToDstRect;
bsalomon49f085d2014-09-05 13:34:00 -07001068 if (srcRectPtr) {
joshualitta61c8172015-08-17 10:51:22 -07001069 srcRectToDstRect.setTranslate(-srcRectPtr->fLeft, -srcRectPtr->fTop);
1070 srcRectToDstRect.postScale(dstSize.fWidth / srcRectPtr->width(),
1071 dstSize.fHeight / srcRectPtr->height());
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001072 // In bleed mode we position and trim the bitmap based on the src rect which is
1073 // already accounted for in 'm' and 'srcRect'. In clamp mode we need to chop out
1074 // the desired portion of the bitmap and then update 'm' and 'srcRect' to
1075 // compensate.
reeda5517e22015-07-14 10:54:12 -07001076 if (SkCanvas::kStrict_SrcRectConstraint == constraint) {
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001077 SkIRect iSrc;
1078 srcRect.roundOut(&iSrc);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001079
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001080 SkPoint offset = SkPoint::Make(SkIntToScalar(iSrc.fLeft),
1081 SkIntToScalar(iSrc.fTop));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001082
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001083 if (!bitmap.extractSubset(&tmp, iSrc)) {
1084 return; // extraction failed
1085 }
1086 bitmapPtr = &tmp;
1087 srcRect.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001088
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001089 // The source rect has changed so update the matrix
joshualitta61c8172015-08-17 10:51:22 -07001090 srcRectToDstRect.preTranslate(offset.fX, offset.fY);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001091 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001092 } else {
joshualitta61c8172015-08-17 10:51:22 -07001093 srcRectToDstRect.reset();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001094 }
1095
joshualitta61c8172015-08-17 10:51:22 -07001096 // If we have a maskfilter then we can't batch, so we take a slow path. However, we fast
1097 // path the case where we are drawing an AA rect so we can batch many drawImageRect calls
1098 if (paint.getMaskFilter()) {
1099 SkPaint paintWithShader(paint);
1100 paintWithShader.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
1101 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode,
1102 &srcRectToDstRect))->unref();
1103 SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight};
1104 this->drawRect(draw, dstRect, paintWithShader);
1105 } else {
1106 draw_aa_bitmap(fDrawContext, fContext, fRenderTarget, fClip, *draw.fMatrix,
1107 srcRectToDstRect, paint, bitmapPtr, dstSize);
1108 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001109
1110 return;
1111 }
1112
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001113 // If there is no mask filter than it is OK to handle the src rect -> dst rect scaling using
1114 // the view matrix rather than a local matrix.
1115 SkMatrix m;
1116 m.setScale(dstSize.fWidth / srcRect.width(),
1117 dstSize.fHeight / srcRect.height());
joshualitt5531d512014-12-17 15:50:11 -08001118 SkMatrix viewM = *draw.fMatrix;
1119 viewM.preConcat(m);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001120
1121 GrTextureParams params;
joshualitt9bc39542015-08-12 12:57:54 -07001122 bool doBicubic;
1123 GrTextureParams::FilterMode textureFilterMode =
1124 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewM, SkMatrix::I(),
1125 &doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001126
commit-bot@chromium.org9927bd32014-05-20 17:51:13 +00001127 int tileFilterPad;
1128 if (doBicubic) {
1129 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
1130 } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) {
1131 tileFilterPad = 0;
1132 } else {
1133 tileFilterPad = 1;
1134 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001135 params.setFilterMode(textureFilterMode);
1136
bsalomon76228632015-05-29 08:02:10 -07001137 int maxTileSize = fContext->caps()->maxTextureSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001138 int tileSize;
1139
1140 SkIRect clippedSrcRect;
joshualitt5531d512014-12-17 15:50:11 -08001141 if (this->shouldTileBitmap(bitmap, viewM, params, srcRectPtr, maxTileSize, &tileSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001142 &clippedSrcRect)) {
reeda5517e22015-07-14 10:54:12 -07001143 this->drawTiledBitmap(bitmap, viewM, srcRect, clippedSrcRect, params, paint, constraint,
joshualitt5531d512014-12-17 15:50:11 -08001144 tileSize, doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001145 } else {
1146 // take the simple case
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001147 bool needsTextureDomain = needs_texture_domain(bitmap,
1148 srcRect,
1149 params,
joshualitt5531d512014-12-17 15:50:11 -08001150 viewM,
robertphillips1accc4c2015-07-20 10:22:29 -07001151 doBicubic,
1152 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001153 this->internalDrawBitmap(bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001154 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001155 srcRect,
1156 params,
1157 paint,
reeda5517e22015-07-14 10:54:12 -07001158 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001159 doBicubic,
1160 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001161 }
1162}
1163
1164// Break 'bitmap' into several tiles to draw it since it has already
1165// been determined to be too large to fit in VRAM
1166void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001167 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001168 const SkRect& srcRect,
1169 const SkIRect& clippedSrcIRect,
1170 const GrTextureParams& params,
1171 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001172 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001173 int tileSize,
1174 bool bicubic) {
commit-bot@chromium.org9d5e3f12014-05-01 21:23:19 +00001175 // The following pixel lock is technically redundant, but it is desirable
1176 // to lock outside of the tile loop to prevent redecoding the whole image
1177 // at each tile in cases where 'bitmap' holds an SkDiscardablePixelRef that
1178 // is larger than the limit of the discardable memory pool.
1179 SkAutoLockPixels alp(bitmap);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001180 SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect);
1181
1182 int nx = bitmap.width() / tileSize;
1183 int ny = bitmap.height() / tileSize;
1184 for (int x = 0; x <= nx; x++) {
1185 for (int y = 0; y <= ny; y++) {
1186 SkRect tileR;
1187 tileR.set(SkIntToScalar(x * tileSize),
1188 SkIntToScalar(y * tileSize),
1189 SkIntToScalar((x + 1) * tileSize),
1190 SkIntToScalar((y + 1) * tileSize));
1191
1192 if (!SkRect::Intersects(tileR, clippedSrcRect)) {
1193 continue;
1194 }
1195
1196 if (!tileR.intersect(srcRect)) {
1197 continue;
1198 }
1199
1200 SkBitmap tmpB;
1201 SkIRect iTileR;
1202 tileR.roundOut(&iTileR);
1203 SkPoint offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft),
1204 SkIntToScalar(iTileR.fTop));
1205
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001206 // Adjust the context matrix to draw at the right x,y in device space
joshualitt5531d512014-12-17 15:50:11 -08001207 SkMatrix viewM = viewMatrix;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001208 SkMatrix tmpM;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001209 tmpM.setTranslate(offset.fX - srcRect.fLeft, offset.fY - srcRect.fTop);
joshualitt5531d512014-12-17 15:50:11 -08001210 viewM.preConcat(tmpM);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001211
robertphillipsec8bb942014-11-21 10:16:25 -08001212 if (GrTextureParams::kNone_FilterMode != params.filterMode() || bicubic) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001213 SkIRect iClampRect;
1214
reeda5517e22015-07-14 10:54:12 -07001215 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001216 // In bleed mode we want to always expand the tile on all edges
1217 // but stay within the bitmap bounds
1218 iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height());
1219 } else {
1220 // In texture-domain/clamp mode we only want to expand the
1221 // tile on edges interior to "srcRect" (i.e., we want to
1222 // not bleed across the original clamped edges)
1223 srcRect.roundOut(&iClampRect);
1224 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001225 int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1;
1226 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001227 }
1228
1229 if (bitmap.extractSubset(&tmpB, iTileR)) {
1230 // now offset it to make it "local" to our tmp bitmap
1231 tileR.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001232 GrTextureParams paramsTemp = params;
robertphillips1accc4c2015-07-20 10:22:29 -07001233 bool needsTextureDomain = needs_texture_domain(
1234 bitmap, srcRect, paramsTemp,
1235 viewM, bicubic,
1236 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001237 this->internalDrawBitmap(tmpB,
joshualitt5531d512014-12-17 15:50:11 -08001238 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001239 tileR,
1240 paramsTemp,
1241 paint,
reeda5517e22015-07-14 10:54:12 -07001242 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001243 bicubic,
1244 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001245 }
1246 }
1247 }
1248}
1249
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001250
1251/*
1252 * This is called by drawBitmap(), which has to handle images that may be too
1253 * large to be represented by a single texture.
1254 *
1255 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1256 * and that non-texture portion of the GrPaint has already been setup.
1257 */
1258void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001259 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001260 const SkRect& srcRect,
1261 const GrTextureParams& params,
1262 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001263 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001264 bool bicubic,
1265 bool needsTextureDomain) {
bsalomon76228632015-05-29 08:02:10 -07001266 SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() &&
1267 bitmap.height() <= fContext->caps()->maxTextureSize());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001268
1269 GrTexture* texture;
bsalomonbcf0a522014-10-08 08:40:09 -07001270 AutoBitmapTexture abt(fContext, bitmap, &params, &texture);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001271 if (NULL == texture) {
1272 return;
1273 }
1274
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001275 SkRect dstRect = {0, 0, srcRect.width(), srcRect.height() };
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001276 SkRect paintRect;
1277 SkScalar wInv = SkScalarInvert(SkIntToScalar(texture->width()));
1278 SkScalar hInv = SkScalarInvert(SkIntToScalar(texture->height()));
1279 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1280 SkScalarMul(srcRect.fTop, hInv),
1281 SkScalarMul(srcRect.fRight, wInv),
1282 SkScalarMul(srcRect.fBottom, hInv));
1283
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001284 SkRect textureDomain = SkRect::MakeEmpty();
joshualitt5f10b5c2015-07-09 10:24:35 -07001285
1286 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
1287 // the rest from the SkPaint.
1288 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001289 SkAutoTUnref<GrFragmentProcessor> fp;
joshualitt5f10b5c2015-07-09 10:24:35 -07001290
reeda5517e22015-07-14 10:54:12 -07001291 if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001292 // Use a constrained texture domain to avoid color bleeding
1293 SkScalar left, top, right, bottom;
1294 if (srcRect.width() > SK_Scalar1) {
1295 SkScalar border = SK_ScalarHalf / texture->width();
1296 left = paintRect.left() + border;
1297 right = paintRect.right() - border;
1298 } else {
1299 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
1300 }
1301 if (srcRect.height() > SK_Scalar1) {
1302 SkScalar border = SK_ScalarHalf / texture->height();
1303 top = paintRect.top() + border;
1304 bottom = paintRect.bottom() - border;
1305 } else {
1306 top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom());
1307 }
1308 textureDomain.setLTRB(left, top, right, bottom);
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001309 if (bicubic) {
joshualitt5f10b5c2015-07-09 10:24:35 -07001310 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture,
1311 SkMatrix::I(), textureDomain));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001312 } else {
joshualitt5f10b5c2015-07-09 10:24:35 -07001313 fp.reset(GrTextureDomainEffect::Create(grPaint.getProcessorDataManager(),
1314 texture,
joshualitt5531d512014-12-17 15:50:11 -08001315 SkMatrix::I(),
1316 textureDomain,
1317 GrTextureDomain::kClamp_Mode,
1318 params.filterMode()));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001319 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001320 } else if (bicubic) {
commit-bot@chromium.orgbc91fd72013-12-10 12:53:39 +00001321 SkASSERT(GrTextureParams::kNone_FilterMode == params.filterMode());
1322 SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() };
joshualitt5f10b5c2015-07-09 10:24:35 -07001323 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture, SkMatrix::I(),
1324 tileModes));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001325 } else {
joshualitt5f10b5c2015-07-09 10:24:35 -07001326 fp.reset(GrSimpleTextureEffect::Create(grPaint.getProcessorDataManager(), texture,
1327 SkMatrix::I(), params));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001328 }
1329
joshualittb0a8a372014-09-23 09:50:21 -07001330 grPaint.addColorProcessor(fp);
reed0689d7b2014-06-14 05:30:20 -07001331 bool alphaOnly = !(kAlpha_8_SkColorType == bitmap.colorType());
bsalomon83d081a2014-07-08 09:56:10 -07001332 GrColor paintColor = (alphaOnly) ? SkColor2GrColorJustAlpha(paint.getColor()) :
1333 SkColor2GrColor(paint.getColor());
bsalomonbed83a62015-04-15 14:18:34 -07001334 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, paintColor, false,
1335 &grPaint)) {
1336 return;
1337 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001338
robertphillipsea461502015-05-26 11:38:03 -07001339 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, viewMatrix, dstRect,
1340 paintRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001341}
1342
fmalita2d97bc12014-11-20 10:44:58 -08001343bool SkGpuDevice::filterTexture(GrContext* context, GrTexture* texture,
senorblancod0d37ca2015-04-02 04:54:56 -07001344 int width, int height,
fmalita2d97bc12014-11-20 10:44:58 -08001345 const SkImageFilter* filter,
1346 const SkImageFilter::Context& ctx,
1347 SkBitmap* result, SkIPoint* offset) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001348 SkASSERT(filter);
fmalita2d97bc12014-11-20 10:44:58 -08001349
robertphillipsefbffed2015-06-22 12:06:08 -07001350 SkImageFilter::Proxy proxy(this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001351
1352 if (filter->canFilterImageGPU()) {
senorblancod0d37ca2015-04-02 04:54:56 -07001353 return filter->filterImageGPU(&proxy, wrap_texture(texture, width, height),
1354 ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001355 } else {
1356 return false;
1357 }
1358}
1359
1360void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1361 int left, int top, const SkPaint& paint) {
1362 // drawSprite is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001363 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001364
1365 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
1366 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1367 return;
1368 }
1369
1370 int w = bitmap.width();
1371 int h = bitmap.height();
1372
1373 GrTexture* texture;
1374 // draw sprite uses the default texture params
bsalomonbcf0a522014-10-08 08:40:09 -07001375 AutoBitmapTexture abt(fContext, bitmap, NULL, &texture);
joshualitt5f5a8d72015-02-25 14:09:45 -08001376 if (!texture) {
1377 return;
1378 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001379
1380 SkImageFilter* filter = paint.getImageFilter();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001381 // This bitmap will own the filtered result as a texture.
1382 SkBitmap filteredBitmap;
1383
bsalomon49f085d2014-09-05 13:34:00 -07001384 if (filter) {
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001385 SkIPoint offset = SkIPoint::Make(0, 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001386 SkMatrix matrix(*draw.fMatrix);
1387 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001388 SkIRect clipBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height());
senorblancobe129b22014-08-08 07:14:35 -07001389 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
senorblanco55b6d8b2014-07-30 11:26:46 -07001390 // This cache is transient, and is freed (along with all its contained
1391 // textures) when it goes out of scope.
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001392 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001393 if (this->filterTexture(fContext, texture, w, h, filter, ctx, &filteredBitmap,
fmalita2d97bc12014-11-20 10:44:58 -08001394 &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001395 texture = (GrTexture*) filteredBitmap.getTexture();
1396 w = filteredBitmap.width();
1397 h = filteredBitmap.height();
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001398 left += offset.x();
1399 top += offset.y();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001400 } else {
1401 return;
1402 }
1403 }
1404
1405 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001406 grPaint.addColorTextureProcessor(texture, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001407
bsalomonbed83a62015-04-15 14:18:34 -07001408 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1409 SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) {
1410 return;
1411 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001412
robertphillipsea461502015-05-26 11:38:03 -07001413 fDrawContext->drawNonAARectToRect(fRenderTarget,
1414 fClip,
1415 grPaint,
1416 SkMatrix::I(),
1417 SkRect::MakeXYWH(SkIntToScalar(left),
1418 SkIntToScalar(top),
1419 SkIntToScalar(w),
1420 SkIntToScalar(h)),
1421 SkRect::MakeXYWH(0,
1422 0,
1423 SK_Scalar1 * w / texture->width(),
1424 SK_Scalar1 * h / texture->height()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001425}
1426
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001427void SkGpuDevice::drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001428 const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -07001429 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001430 SkMatrix matrix;
1431 SkRect bitmapBounds, tmpSrc;
1432
1433 bitmapBounds.set(0, 0,
1434 SkIntToScalar(bitmap.width()),
1435 SkIntToScalar(bitmap.height()));
1436
1437 // Compute matrix from the two rectangles
bsalomon49f085d2014-09-05 13:34:00 -07001438 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001439 tmpSrc = *src;
1440 } else {
1441 tmpSrc = bitmapBounds;
1442 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001443
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001444 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1445
1446 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
bsalomon49f085d2014-09-05 13:34:00 -07001447 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001448 if (!bitmapBounds.contains(tmpSrc)) {
1449 if (!tmpSrc.intersect(bitmapBounds)) {
1450 return; // nothing to draw
1451 }
1452 }
1453 }
1454
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001455 SkRect tmpDst;
1456 matrix.mapRect(&tmpDst, tmpSrc);
1457
1458 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
1459 if (0 != tmpDst.fLeft || 0 != tmpDst.fTop) {
1460 // Translate so that tempDst's top left is at the origin.
1461 matrix = *origDraw.fMatrix;
1462 matrix.preTranslate(tmpDst.fLeft, tmpDst.fTop);
1463 draw.writable()->fMatrix = &matrix;
1464 }
1465 SkSize dstSize;
1466 dstSize.fWidth = tmpDst.width();
1467 dstSize.fHeight = tmpDst.height();
1468
reeda5517e22015-07-14 10:54:12 -07001469 this->drawBitmapCommon(*draw, bitmap, &tmpSrc, &dstSize, paint, constraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001470}
1471
1472void SkGpuDevice::drawDevice(const SkDraw& draw, SkBaseDevice* device,
1473 int x, int y, const SkPaint& paint) {
1474 // clear of the source device must occur before CHECK_SHOULD_DRAW
egdanield78a1682014-07-09 10:41:26 -07001475 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawDevice", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001476 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
kkinnunen2e4414e2015-02-19 07:20:40 -08001477
1478 // TODO: If the source device covers the whole of this device, we could
1479 // omit fNeedsClear -related flushing.
1480 // TODO: if source needs clear, we could maybe omit the draw fully.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001481
1482 // drawDevice is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001483 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001484
1485 GrRenderTarget* devRT = dev->accessRenderTarget();
1486 GrTexture* devTex;
1487 if (NULL == (devTex = devRT->asTexture())) {
1488 return;
1489 }
1490
robertphillips7b9e8a42014-12-11 08:20:31 -08001491 const SkImageInfo ii = dev->imageInfo();
1492 int w = ii.width();
1493 int h = ii.height();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001494
1495 SkImageFilter* filter = paint.getImageFilter();
1496 // This bitmap will own the filtered result as a texture.
1497 SkBitmap filteredBitmap;
1498
bsalomon49f085d2014-09-05 13:34:00 -07001499 if (filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001500 SkIPoint offset = SkIPoint::Make(0, 0);
1501 SkMatrix matrix(*draw.fMatrix);
1502 matrix.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001503 SkIRect clipBounds = SkIRect::MakeWH(devTex->width(), devTex->height());
senorblanco55b6d8b2014-07-30 11:26:46 -07001504 // This cache is transient, and is freed (along with all its contained
1505 // textures) when it goes out of scope.
senorblancobe129b22014-08-08 07:14:35 -07001506 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001507 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001508 if (this->filterTexture(fContext, devTex, device->width(), device->height(),
1509 filter, ctx, &filteredBitmap, &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001510 devTex = filteredBitmap.getTexture();
1511 w = filteredBitmap.width();
1512 h = filteredBitmap.height();
1513 x += offset.fX;
1514 y += offset.fY;
1515 } else {
1516 return;
1517 }
1518 }
1519
1520 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001521 grPaint.addColorTextureProcessor(devTex, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001522
bsalomonbed83a62015-04-15 14:18:34 -07001523 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1524 SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) {
1525 return;
1526 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001527
1528 SkRect dstRect = SkRect::MakeXYWH(SkIntToScalar(x),
1529 SkIntToScalar(y),
1530 SkIntToScalar(w),
1531 SkIntToScalar(h));
1532
1533 // The device being drawn may not fill up its texture (e.g. saveLayer uses approximate
1534 // scratch texture).
1535 SkRect srcRect = SkRect::MakeWH(SK_Scalar1 * w / devTex->width(),
1536 SK_Scalar1 * h / devTex->height());
1537
robertphillipsea461502015-05-26 11:38:03 -07001538 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, SkMatrix::I(), dstRect,
1539 srcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001540}
1541
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001542bool SkGpuDevice::canHandleImageFilter(const SkImageFilter* filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001543 return filter->canFilterImageGPU();
1544}
1545
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001546bool SkGpuDevice::filterImage(const SkImageFilter* filter, const SkBitmap& src,
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001547 const SkImageFilter::Context& ctx,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001548 SkBitmap* result, SkIPoint* offset) {
1549 // want explicitly our impl, so guard against a subclass of us overriding it
1550 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
1551 return false;
1552 }
1553
1554 SkAutoLockPixels alp(src, !src.getTexture());
1555 if (!src.getTexture() && !src.readyToDraw()) {
1556 return false;
1557 }
1558
1559 GrTexture* texture;
1560 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1561 // must be pushed upstack.
bsalomonbcf0a522014-10-08 08:40:09 -07001562 AutoBitmapTexture abt(fContext, src, NULL, &texture);
robertphillipsf83be822015-04-30 08:55:06 -07001563 if (!texture) {
1564 return false;
1565 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001566
senorblancod0d37ca2015-04-02 04:54:56 -07001567 return this->filterTexture(fContext, texture, src.width(), src.height(),
1568 filter, ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001569}
1570
reeda85d4d02015-05-06 12:56:48 -07001571static bool wrap_as_bm(const SkImage* image, SkBitmap* bm) {
bsalomon55812362015-06-10 08:49:28 -07001572 GrTexture* tex = as_IB(image)->getTexture();
reeda85d4d02015-05-06 12:56:48 -07001573 if (tex) {
reed8b26b992015-05-07 15:36:17 -07001574 GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), bm);
1575 return true;
reeda85d4d02015-05-06 12:56:48 -07001576 } else {
reed8b26b992015-05-07 15:36:17 -07001577 return as_IB(image)->getROPixels(bm);
reeda85d4d02015-05-06 12:56:48 -07001578 }
reeda85d4d02015-05-06 12:56:48 -07001579}
1580
1581void SkGpuDevice::drawImage(const SkDraw& draw, const SkImage* image, SkScalar x, SkScalar y,
1582 const SkPaint& paint) {
1583 SkBitmap bm;
1584 if (wrap_as_bm(image, &bm)) {
1585 this->drawBitmap(draw, bm, SkMatrix::MakeTrans(x, y), paint);
1586 }
1587}
1588
1589void SkGpuDevice::drawImageRect(const SkDraw& draw, const SkImage* image, const SkRect* src,
reeda5517e22015-07-14 10:54:12 -07001590 const SkRect& dst, const SkPaint& paint,
1591 SkCanvas::SrcRectConstraint constraint) {
reeda85d4d02015-05-06 12:56:48 -07001592 SkBitmap bm;
1593 if (wrap_as_bm(image, &bm)) {
reed562fe472015-07-28 07:35:14 -07001594 this->drawBitmapRect(draw, bm, src, dst, paint, constraint);
reeda85d4d02015-05-06 12:56:48 -07001595 }
1596}
1597
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001598///////////////////////////////////////////////////////////////////////////////
1599
1600// must be in SkCanvas::VertexMode order
1601static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1602 kTriangles_GrPrimitiveType,
1603 kTriangleStrip_GrPrimitiveType,
1604 kTriangleFan_GrPrimitiveType,
1605};
1606
1607void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1608 int vertexCount, const SkPoint vertices[],
1609 const SkPoint texs[], const SkColor colors[],
1610 SkXfermode* xmode,
1611 const uint16_t indices[], int indexCount,
1612 const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -08001613 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001614 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawVertices", fContext);
mtklein533eb782014-08-27 10:39:42 -07001615
dandov32a311b2014-07-15 19:46:26 -07001616 const uint16_t* outIndices;
1617 SkAutoTDeleteArray<uint16_t> outAlloc(NULL);
1618 GrPrimitiveType primType;
1619 GrPaint grPaint;
bsalomona098dd42014-08-06 11:01:44 -07001620
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001621 // If both textures and vertex-colors are NULL, strokes hairlines with the paint's color.
1622 if ((NULL == texs || NULL == paint.getShader()) && NULL == colors) {
mtklein533eb782014-08-27 10:39:42 -07001623
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001624 texs = NULL;
mtklein533eb782014-08-27 10:39:42 -07001625
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001626 SkPaint copy(paint);
1627 copy.setStyle(SkPaint::kStroke_Style);
1628 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001629
dandov32a311b2014-07-15 19:46:26 -07001630 // we ignore the shader if texs is null.
bsalomonbed83a62015-04-15 14:18:34 -07001631 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, copy,
1632 SkColor2GrColor(copy.getColor()), NULL == colors, &grPaint)) {
1633 return;
1634 }
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001635
dandov32a311b2014-07-15 19:46:26 -07001636 primType = kLines_GrPrimitiveType;
1637 int triangleCount = 0;
bsalomona098dd42014-08-06 11:01:44 -07001638 int n = (NULL == indices) ? vertexCount : indexCount;
dandov32a311b2014-07-15 19:46:26 -07001639 switch (vmode) {
1640 case SkCanvas::kTriangles_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001641 triangleCount = n / 3;
dandov32a311b2014-07-15 19:46:26 -07001642 break;
1643 case SkCanvas::kTriangleStrip_VertexMode:
1644 case SkCanvas::kTriangleFan_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001645 triangleCount = n - 2;
dandov32a311b2014-07-15 19:46:26 -07001646 break;
1647 }
mtklein533eb782014-08-27 10:39:42 -07001648
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001649 VertState state(vertexCount, indices, indexCount);
1650 VertState::Proc vertProc = state.chooseProc(vmode);
mtklein533eb782014-08-27 10:39:42 -07001651
dandov32a311b2014-07-15 19:46:26 -07001652 //number of indices for lines per triangle with kLines
1653 indexCount = triangleCount * 6;
mtklein533eb782014-08-27 10:39:42 -07001654
dandov32a311b2014-07-15 19:46:26 -07001655 outAlloc.reset(SkNEW_ARRAY(uint16_t, indexCount));
1656 outIndices = outAlloc.get();
1657 uint16_t* auxIndices = outAlloc.get();
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001658 int i = 0;
1659 while (vertProc(&state)) {
dandov32a311b2014-07-15 19:46:26 -07001660 auxIndices[i] = state.f0;
1661 auxIndices[i + 1] = state.f1;
1662 auxIndices[i + 2] = state.f1;
1663 auxIndices[i + 3] = state.f2;
1664 auxIndices[i + 4] = state.f2;
1665 auxIndices[i + 5] = state.f0;
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001666 i += 6;
1667 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001668 } else {
dandov32a311b2014-07-15 19:46:26 -07001669 outIndices = indices;
1670 primType = gVertexMode2PrimitiveType[vmode];
mtklein533eb782014-08-27 10:39:42 -07001671
dandov32a311b2014-07-15 19:46:26 -07001672 if (NULL == texs || NULL == paint.getShader()) {
bsalomonbed83a62015-04-15 14:18:34 -07001673 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1674 SkColor2GrColor(paint.getColor()),
1675 NULL == colors, &grPaint)) {
1676 return;
1677 }
dandov32a311b2014-07-15 19:46:26 -07001678 } else {
bsalomonbed83a62015-04-15 14:18:34 -07001679 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix,
1680 NULL == colors, &grPaint)) {
1681 return;
1682 }
dandov32a311b2014-07-15 19:46:26 -07001683 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001684 }
1685
mtklein2583b622014-06-04 08:20:41 -07001686#if 0
bsalomon49f085d2014-09-05 13:34:00 -07001687 if (xmode && texs && colors) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001688 if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) {
1689 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
mtklein2583b622014-06-04 08:20:41 -07001690 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001691 }
1692 }
mtklein2583b622014-06-04 08:20:41 -07001693#endif
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001694
1695 SkAutoSTMalloc<128, GrColor> convertedColors(0);
bsalomon49f085d2014-09-05 13:34:00 -07001696 if (colors) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001697 // need to convert byte order and from non-PM to PM
1698 convertedColors.reset(vertexCount);
commit-bot@chromium.orgc93e6812014-05-23 08:09:26 +00001699 SkColor color;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001700 for (int i = 0; i < vertexCount; ++i) {
commit-bot@chromium.orgc93e6812014-05-23 08:09:26 +00001701 color = colors[i];
1702 if (paint.getAlpha() != 255) {
1703 color = SkColorSetA(color, SkMulDiv255Round(SkColorGetA(color), paint.getAlpha()));
1704 }
1705 convertedColors[i] = SkColor2GrColor(color);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001706 }
1707 colors = convertedColors.get();
1708 }
robertphillipsea461502015-05-26 11:38:03 -07001709 fDrawContext->drawVertices(fRenderTarget,
1710 fClip,
1711 grPaint,
1712 *draw.fMatrix,
1713 primType,
1714 vertexCount,
1715 vertices,
1716 texs,
1717 colors,
1718 outIndices,
1719 indexCount);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001720}
1721
1722///////////////////////////////////////////////////////////////////////////////
1723
jvanverth31ff7622015-08-07 10:09:28 -07001724void SkGpuDevice::drawAtlas(const SkDraw& draw, const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001725 const SkRect texRect[], const SkColor colors[], int count,
1726 SkXfermode::Mode mode, const SkPaint& paint) {
1727 if (paint.isAntiAlias()) {
jvanverth31ff7622015-08-07 10:09:28 -07001728 this->INHERITED::drawAtlas(draw, atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001729 return;
1730 }
1731
jvanverth31ff7622015-08-07 10:09:28 -07001732 CHECK_SHOULD_DRAW(draw);
1733 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
1734
reedca109532015-06-25 16:25:25 -07001735 SkPaint p(paint);
1736 p.setShader(atlas->newShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
1737
jvanverth31ff7622015-08-07 10:09:28 -07001738 GrPaint grPaint;
1739 if (!SkPaint2GrPaint(this->context(), fRenderTarget, p, *draw.fMatrix, !colors, &grPaint)) {
1740 return;
reedca109532015-06-25 16:25:25 -07001741 }
jvanverth31ff7622015-08-07 10:09:28 -07001742
1743 SkDEBUGCODE(this->validate();)
1744
1745#if 0
robertphillips29ccdf82015-07-24 10:20:45 -07001746 if (colors) {
jvanverth31ff7622015-08-07 10:09:28 -07001747 if (SkXfermode::kModulate_Mode != mode) {
1748 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1749 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001750 }
1751 }
jvanverth31ff7622015-08-07 10:09:28 -07001752#endif
1753
1754 fDrawContext->drawAtlas(fRenderTarget, fClip, grPaint, *draw.fMatrix,
1755 count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001756}
1757
1758///////////////////////////////////////////////////////////////////////////////
1759
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001760void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
joshualitt5531d512014-12-17 15:50:11 -08001761 size_t byteLength, SkScalar x, SkScalar y,
1762 const SkPaint& paint) {
1763 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001764 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001765
jvanverth8c27a182014-10-14 08:45:50 -07001766 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -07001767 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
1768 return;
1769 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001770
jvanverth8c27a182014-10-14 08:45:50 -07001771 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001772
robertphillips2334fb62015-06-17 05:43:33 -07001773 fDrawContext->drawText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001774 (const char *)text, byteLength, x, y, draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001775}
1776
fmalita05c4a432014-09-29 06:29:53 -07001777void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text, size_t byteLength,
1778 const SkScalar pos[], int scalarsPerPos,
1779 const SkPoint& offset, const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -07001780 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPosText", fContext);
joshualitt5531d512014-12-17 15:50:11 -08001781 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001782
jvanverth8c27a182014-10-14 08:45:50 -07001783 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -07001784 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
1785 return;
1786 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001787
jvanverth8c27a182014-10-14 08:45:50 -07001788 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001789
robertphillips2334fb62015-06-17 05:43:33 -07001790 fDrawContext->drawPosText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001791 (const char *)text, byteLength, pos, scalarsPerPos, offset,
1792 draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001793}
1794
joshualitt9c328182015-03-23 08:13:04 -07001795void SkGpuDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y,
1796 const SkPaint& paint, SkDrawFilter* drawFilter) {
1797 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawTextBlob", fContext);
1798 CHECK_SHOULD_DRAW(draw);
1799
1800 SkDEBUGCODE(this->validate();)
1801
robertphillips2334fb62015-06-17 05:43:33 -07001802 fDrawContext->drawTextBlob(fRenderTarget, fClip, paint, *draw.fMatrix,
robertphillipsccb1b572015-05-27 11:02:55 -07001803 blob, x, y, drawFilter, draw.fClip->getBounds());
joshualitt9c328182015-03-23 08:13:04 -07001804}
1805
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001806///////////////////////////////////////////////////////////////////////////////
1807
reedb2db8982014-11-13 12:41:02 -08001808bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const {
robertphillips9c240a12015-05-28 07:45:59 -07001809 return GrTextContext::ShouldDisableLCD(paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001810}
1811
1812void SkGpuDevice::flush() {
1813 DO_DEFERRED_CLEAR();
bsalomonc49e8682015-06-30 11:37:35 -07001814 fRenderTarget->prepareForExternalIO();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001815}
1816
1817///////////////////////////////////////////////////////////////////////////////
1818
reed76033be2015-03-14 10:54:31 -07001819SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
bsalomonf2703d82014-10-28 14:33:06 -07001820 GrSurfaceDesc desc;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001821 desc.fConfig = fRenderTarget->config();
bsalomonf2703d82014-10-28 14:33:06 -07001822 desc.fFlags = kRenderTarget_GrSurfaceFlag;
fmalita6987dca2014-11-13 08:33:37 -08001823 desc.fWidth = cinfo.fInfo.width();
1824 desc.fHeight = cinfo.fInfo.height();
vbuzinovdded6962015-06-12 08:59:45 -07001825 desc.fSampleCnt = fRenderTarget->desc().fSampleCnt;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001826
1827 SkAutoTUnref<GrTexture> texture;
1828 // Skia's convention is to only clear a device if it is non-opaque.
bsalomon74f681d2015-06-23 14:38:48 -07001829 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001830
hcm4396fa52014-10-27 21:43:30 -07001831 // layers are never draw in repeat modes, so we can request an approx
1832 // match and ignore any padding.
bsalomoneae62002015-07-31 13:59:30 -07001833 if (kNever_TileUsage == cinfo.fTileUsage) {
1834 texture.reset(fContext->textureProvider()->createApproxTexture(desc));
1835 } else {
1836 texture.reset(fContext->textureProvider()->createTexture(desc, true));
1837 }
bsalomonafe30052015-01-16 07:32:33 -08001838
1839 if (texture) {
robertphillips7b05ff12015-06-19 14:14:54 -07001840 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
senorblancod0d37ca2015-04-02 04:54:56 -07001841 return SkGpuDevice::Create(
bsalomon74f681d2015-06-23 14:38:48 -07001842 texture->asRenderTarget(), cinfo.fInfo.width(), cinfo.fInfo.height(), &props, init);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001843 } else {
joshualitt5f5a8d72015-02-25 14:09:45 -08001844 SkErrorInternals::SetError( kInternalError_SkError,
reed61f501f2015-04-29 08:34:00 -07001845 "---- failed to create gpu device texture [%d %d]\n",
joshualitt5f5a8d72015-02-25 14:09:45 -08001846 cinfo.fInfo.width(), cinfo.fInfo.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001847 return NULL;
1848 }
1849}
1850
reed4a8126e2014-09-22 07:29:03 -07001851SkSurface* SkGpuDevice::newSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
bsalomonafe30052015-01-16 07:32:33 -08001852 // TODO: Change the signature of newSurface to take a budgeted parameter.
1853 static const SkSurface::Budgeted kBudgeted = SkSurface::kNo_Budgeted;
vbuzinovdded6962015-06-12 08:59:45 -07001854 return SkSurface::NewRenderTarget(fContext, kBudgeted, info, fRenderTarget->desc().fSampleCnt,
bsalomonafe30052015-01-16 07:32:33 -08001855 &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001856}
1857
robertphillips30d2cc62014-09-24 08:52:18 -07001858bool SkGpuDevice::EXPERIMENTAL_drawPicture(SkCanvas* mainCanvas, const SkPicture* mainPicture,
reedd5fa1a42014-08-09 11:08:05 -07001859 const SkMatrix* matrix, const SkPaint* paint) {
robertphillips63242d72014-12-04 08:31:02 -08001860#ifndef SK_IGNORE_GPU_LAYER_HOISTING
robertphillips30d78412014-11-24 09:49:17 -08001861 // todo: should handle this natively
1862 if (paint) {
reedd5fa1a42014-08-09 11:08:05 -07001863 return false;
1864 }
1865
mtklein9db912c2015-05-19 11:11:26 -07001866 const SkBigPicture::AccelData* data = NULL;
1867 if (const SkBigPicture* bp = mainPicture->asSkBigPicture()) {
1868 data = bp->accelData();
1869 }
robertphillips81f71b62014-11-11 04:54:49 -08001870 if (!data) {
1871 return false;
1872 }
1873
robertphillipse5524cd2015-02-20 12:30:26 -08001874 const SkLayerInfo *gpuData = static_cast<const SkLayerInfo*>(data);
1875 if (0 == gpuData->numBlocks()) {
1876 return false;
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +00001877 }
1878
robertphillipsfd61ed02014-10-28 07:21:44 -07001879 SkTDArray<GrHoistedLayer> atlasedNeedRendering, atlasedRecycled;
robertphillips1c4c5282014-09-18 12:03:15 -07001880
robertphillipse5524cd2015-02-20 12:30:26 -08001881 SkIRect iBounds;
1882 if (!mainCanvas->getClipDeviceBounds(&iBounds)) {
1883 return false;
1884 }
1885
1886 SkRect clipBounds = SkRect::Make(iBounds);
1887
1888 SkMatrix initialMatrix = mainCanvas->getTotalMatrix();
1889
robertphillipsfd61ed02014-10-28 07:21:44 -07001890 GrLayerHoister::FindLayersToAtlas(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001891 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001892 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001893 &atlasedNeedRendering, &atlasedRecycled,
vbuzinovdded6962015-06-12 08:59:45 -07001894 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001895
1896 GrLayerHoister::DrawLayersToAtlas(fContext, atlasedNeedRendering);
1897
1898 SkTDArray<GrHoistedLayer> needRendering, recycled;
1899
robertphillipse5524cd2015-02-20 12:30:26 -08001900 SkAutoCanvasMatrixPaint acmp(mainCanvas, matrix, paint, mainPicture->cullRect());
1901
robertphillipsfd61ed02014-10-28 07:21:44 -07001902 GrLayerHoister::FindLayersToHoist(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001903 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001904 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001905 &needRendering, &recycled,
vbuzinovdded6962015-06-12 08:59:45 -07001906 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001907
1908 GrLayerHoister::DrawLayers(fContext, needRendering);
robertphillips@google.combeb1af22014-05-07 21:31:09 +00001909
robertphillips64bf7672014-08-21 13:07:35 -07001910 // Render the entire picture using new layers
robertphillipse99d4992014-12-03 07:33:57 -08001911 GrRecordReplaceDraw(mainPicture, mainCanvas, fContext->getLayerCache(),
1912 initialMatrix, NULL);
robertphillips64bf7672014-08-21 13:07:35 -07001913
robertphillipsfd61ed02014-10-28 07:21:44 -07001914 GrLayerHoister::UnlockLayers(fContext, needRendering);
1915 GrLayerHoister::UnlockLayers(fContext, recycled);
1916 GrLayerHoister::UnlockLayers(fContext, atlasedNeedRendering);
1917 GrLayerHoister::UnlockLayers(fContext, atlasedRecycled);
robertphillips64bf7672014-08-21 13:07:35 -07001918
1919 return true;
robertphillips63242d72014-12-04 08:31:02 -08001920#else
1921 return false;
1922#endif
robertphillips64bf7672014-08-21 13:07:35 -07001923}
1924
senorblancobe129b22014-08-08 07:14:35 -07001925SkImageFilter::Cache* SkGpuDevice::getImageFilterCache() {
senorblanco55b6d8b2014-07-30 11:26:46 -07001926 // We always return a transient cache, so it is freed after each
1927 // filter traversal.
senorblancobe129b22014-08-08 07:14:35 -07001928 return SkImageFilter::Cache::Create(kDefaultImageFilterCacheSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07001929}
reedf037e0b2014-10-30 11:34:15 -07001930
1931#endif