blob: c808ade6c67d7d4b03393079858311bc3a3b3aeb [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();
joshualitt1a899c92015-08-17 11:53:44 -07001035 bool drawAA = !fRenderTarget->isUnifiedMultisampled() &&
1036 paint.isAntiAlias() &&
1037 bitmap.width() <= maxTextureSize &&
1038 bitmap.height() <= maxTextureSize;
derekf367e1862014-12-02 11:02:06 -08001039
joshualitt1a899c92015-08-17 11:53:44 -07001040 if (paint.getMaskFilter() || drawAA) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001041 // Convert the bitmap to a shader so that the rect can be drawn
1042 // through drawRect, which supports mask filters.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001043 SkBitmap tmp; // subset of bitmap, if necessary
1044 const SkBitmap* bitmapPtr = &bitmap;
joshualitta61c8172015-08-17 10:51:22 -07001045 SkMatrix srcRectToDstRect;
bsalomon49f085d2014-09-05 13:34:00 -07001046 if (srcRectPtr) {
joshualitta61c8172015-08-17 10:51:22 -07001047 srcRectToDstRect.setTranslate(-srcRectPtr->fLeft, -srcRectPtr->fTop);
1048 srcRectToDstRect.postScale(dstSize.fWidth / srcRectPtr->width(),
1049 dstSize.fHeight / srcRectPtr->height());
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001050 // In bleed mode we position and trim the bitmap based on the src rect which is
1051 // already accounted for in 'm' and 'srcRect'. In clamp mode we need to chop out
1052 // the desired portion of the bitmap and then update 'm' and 'srcRect' to
1053 // compensate.
reeda5517e22015-07-14 10:54:12 -07001054 if (SkCanvas::kStrict_SrcRectConstraint == constraint) {
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001055 SkIRect iSrc;
1056 srcRect.roundOut(&iSrc);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001057
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001058 SkPoint offset = SkPoint::Make(SkIntToScalar(iSrc.fLeft),
1059 SkIntToScalar(iSrc.fTop));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001060
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001061 if (!bitmap.extractSubset(&tmp, iSrc)) {
1062 return; // extraction failed
1063 }
1064 bitmapPtr = &tmp;
1065 srcRect.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001066
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001067 // The source rect has changed so update the matrix
joshualitta61c8172015-08-17 10:51:22 -07001068 srcRectToDstRect.preTranslate(offset.fX, offset.fY);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001069 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001070 } else {
joshualitta61c8172015-08-17 10:51:22 -07001071 srcRectToDstRect.reset();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001072 }
1073
joshualitta61c8172015-08-17 10:51:22 -07001074 // If we have a maskfilter then we can't batch, so we take a slow path. However, we fast
1075 // path the case where we are drawing an AA rect so we can batch many drawImageRect calls
1076 if (paint.getMaskFilter()) {
1077 SkPaint paintWithShader(paint);
1078 paintWithShader.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
1079 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode,
1080 &srcRectToDstRect))->unref();
1081 SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight};
1082 this->drawRect(draw, dstRect, paintWithShader);
1083 } else {
1084 draw_aa_bitmap(fDrawContext, fContext, fRenderTarget, fClip, *draw.fMatrix,
1085 srcRectToDstRect, paint, bitmapPtr, dstSize);
1086 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001087
1088 return;
1089 }
1090
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001091 // If there is no mask filter than it is OK to handle the src rect -> dst rect scaling using
1092 // the view matrix rather than a local matrix.
1093 SkMatrix m;
1094 m.setScale(dstSize.fWidth / srcRect.width(),
1095 dstSize.fHeight / srcRect.height());
joshualitt5531d512014-12-17 15:50:11 -08001096 SkMatrix viewM = *draw.fMatrix;
1097 viewM.preConcat(m);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001098
1099 GrTextureParams params;
joshualitt9bc39542015-08-12 12:57:54 -07001100 bool doBicubic;
1101 GrTextureParams::FilterMode textureFilterMode =
1102 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewM, SkMatrix::I(),
1103 &doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001104
commit-bot@chromium.org9927bd32014-05-20 17:51:13 +00001105 int tileFilterPad;
1106 if (doBicubic) {
1107 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
1108 } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) {
1109 tileFilterPad = 0;
1110 } else {
1111 tileFilterPad = 1;
1112 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001113 params.setFilterMode(textureFilterMode);
1114
bsalomon76228632015-05-29 08:02:10 -07001115 int maxTileSize = fContext->caps()->maxTextureSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001116 int tileSize;
1117
1118 SkIRect clippedSrcRect;
joshualitt5531d512014-12-17 15:50:11 -08001119 if (this->shouldTileBitmap(bitmap, viewM, params, srcRectPtr, maxTileSize, &tileSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001120 &clippedSrcRect)) {
reeda5517e22015-07-14 10:54:12 -07001121 this->drawTiledBitmap(bitmap, viewM, srcRect, clippedSrcRect, params, paint, constraint,
joshualitt5531d512014-12-17 15:50:11 -08001122 tileSize, doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001123 } else {
1124 // take the simple case
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001125 bool needsTextureDomain = needs_texture_domain(bitmap,
1126 srcRect,
1127 params,
joshualitt5531d512014-12-17 15:50:11 -08001128 viewM,
robertphillips1accc4c2015-07-20 10:22:29 -07001129 doBicubic,
1130 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001131 this->internalDrawBitmap(bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001132 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001133 srcRect,
1134 params,
1135 paint,
reeda5517e22015-07-14 10:54:12 -07001136 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001137 doBicubic,
1138 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001139 }
1140}
1141
1142// Break 'bitmap' into several tiles to draw it since it has already
1143// been determined to be too large to fit in VRAM
1144void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001145 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001146 const SkRect& srcRect,
1147 const SkIRect& clippedSrcIRect,
1148 const GrTextureParams& params,
1149 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001150 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001151 int tileSize,
1152 bool bicubic) {
commit-bot@chromium.org9d5e3f12014-05-01 21:23:19 +00001153 // The following pixel lock is technically redundant, but it is desirable
1154 // to lock outside of the tile loop to prevent redecoding the whole image
1155 // at each tile in cases where 'bitmap' holds an SkDiscardablePixelRef that
1156 // is larger than the limit of the discardable memory pool.
1157 SkAutoLockPixels alp(bitmap);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001158 SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect);
1159
1160 int nx = bitmap.width() / tileSize;
1161 int ny = bitmap.height() / tileSize;
1162 for (int x = 0; x <= nx; x++) {
1163 for (int y = 0; y <= ny; y++) {
1164 SkRect tileR;
1165 tileR.set(SkIntToScalar(x * tileSize),
1166 SkIntToScalar(y * tileSize),
1167 SkIntToScalar((x + 1) * tileSize),
1168 SkIntToScalar((y + 1) * tileSize));
1169
1170 if (!SkRect::Intersects(tileR, clippedSrcRect)) {
1171 continue;
1172 }
1173
1174 if (!tileR.intersect(srcRect)) {
1175 continue;
1176 }
1177
1178 SkBitmap tmpB;
1179 SkIRect iTileR;
1180 tileR.roundOut(&iTileR);
1181 SkPoint offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft),
1182 SkIntToScalar(iTileR.fTop));
1183
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001184 // Adjust the context matrix to draw at the right x,y in device space
joshualitt5531d512014-12-17 15:50:11 -08001185 SkMatrix viewM = viewMatrix;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001186 SkMatrix tmpM;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001187 tmpM.setTranslate(offset.fX - srcRect.fLeft, offset.fY - srcRect.fTop);
joshualitt5531d512014-12-17 15:50:11 -08001188 viewM.preConcat(tmpM);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001189
robertphillipsec8bb942014-11-21 10:16:25 -08001190 if (GrTextureParams::kNone_FilterMode != params.filterMode() || bicubic) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001191 SkIRect iClampRect;
1192
reeda5517e22015-07-14 10:54:12 -07001193 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001194 // In bleed mode we want to always expand the tile on all edges
1195 // but stay within the bitmap bounds
1196 iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height());
1197 } else {
1198 // In texture-domain/clamp mode we only want to expand the
1199 // tile on edges interior to "srcRect" (i.e., we want to
1200 // not bleed across the original clamped edges)
1201 srcRect.roundOut(&iClampRect);
1202 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001203 int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1;
1204 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001205 }
1206
1207 if (bitmap.extractSubset(&tmpB, iTileR)) {
1208 // now offset it to make it "local" to our tmp bitmap
1209 tileR.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001210 GrTextureParams paramsTemp = params;
robertphillips1accc4c2015-07-20 10:22:29 -07001211 bool needsTextureDomain = needs_texture_domain(
1212 bitmap, srcRect, paramsTemp,
1213 viewM, bicubic,
1214 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001215 this->internalDrawBitmap(tmpB,
joshualitt5531d512014-12-17 15:50:11 -08001216 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001217 tileR,
1218 paramsTemp,
1219 paint,
reeda5517e22015-07-14 10:54:12 -07001220 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001221 bicubic,
1222 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001223 }
1224 }
1225 }
1226}
1227
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001228
1229/*
1230 * This is called by drawBitmap(), which has to handle images that may be too
1231 * large to be represented by a single texture.
1232 *
1233 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1234 * and that non-texture portion of the GrPaint has already been setup.
1235 */
1236void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001237 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001238 const SkRect& srcRect,
1239 const GrTextureParams& params,
1240 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001241 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001242 bool bicubic,
1243 bool needsTextureDomain) {
bsalomon76228632015-05-29 08:02:10 -07001244 SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() &&
1245 bitmap.height() <= fContext->caps()->maxTextureSize());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001246
1247 GrTexture* texture;
bsalomonbcf0a522014-10-08 08:40:09 -07001248 AutoBitmapTexture abt(fContext, bitmap, &params, &texture);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001249 if (NULL == texture) {
1250 return;
1251 }
1252
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001253 SkRect dstRect = {0, 0, srcRect.width(), srcRect.height() };
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001254 SkRect paintRect;
1255 SkScalar wInv = SkScalarInvert(SkIntToScalar(texture->width()));
1256 SkScalar hInv = SkScalarInvert(SkIntToScalar(texture->height()));
1257 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1258 SkScalarMul(srcRect.fTop, hInv),
1259 SkScalarMul(srcRect.fRight, wInv),
1260 SkScalarMul(srcRect.fBottom, hInv));
1261
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001262 SkRect textureDomain = SkRect::MakeEmpty();
joshualitt5f10b5c2015-07-09 10:24:35 -07001263
1264 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
1265 // the rest from the SkPaint.
1266 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001267 SkAutoTUnref<GrFragmentProcessor> fp;
joshualitt5f10b5c2015-07-09 10:24:35 -07001268
reeda5517e22015-07-14 10:54:12 -07001269 if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001270 // Use a constrained texture domain to avoid color bleeding
1271 SkScalar left, top, right, bottom;
1272 if (srcRect.width() > SK_Scalar1) {
1273 SkScalar border = SK_ScalarHalf / texture->width();
1274 left = paintRect.left() + border;
1275 right = paintRect.right() - border;
1276 } else {
1277 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
1278 }
1279 if (srcRect.height() > SK_Scalar1) {
1280 SkScalar border = SK_ScalarHalf / texture->height();
1281 top = paintRect.top() + border;
1282 bottom = paintRect.bottom() - border;
1283 } else {
1284 top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom());
1285 }
1286 textureDomain.setLTRB(left, top, right, bottom);
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001287 if (bicubic) {
joshualitt5f10b5c2015-07-09 10:24:35 -07001288 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture,
1289 SkMatrix::I(), textureDomain));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001290 } else {
joshualitt5f10b5c2015-07-09 10:24:35 -07001291 fp.reset(GrTextureDomainEffect::Create(grPaint.getProcessorDataManager(),
1292 texture,
joshualitt5531d512014-12-17 15:50:11 -08001293 SkMatrix::I(),
1294 textureDomain,
1295 GrTextureDomain::kClamp_Mode,
1296 params.filterMode()));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001297 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001298 } else if (bicubic) {
commit-bot@chromium.orgbc91fd72013-12-10 12:53:39 +00001299 SkASSERT(GrTextureParams::kNone_FilterMode == params.filterMode());
1300 SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() };
joshualitt5f10b5c2015-07-09 10:24:35 -07001301 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture, SkMatrix::I(),
1302 tileModes));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001303 } else {
joshualitt5f10b5c2015-07-09 10:24:35 -07001304 fp.reset(GrSimpleTextureEffect::Create(grPaint.getProcessorDataManager(), texture,
1305 SkMatrix::I(), params));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001306 }
1307
joshualittb0a8a372014-09-23 09:50:21 -07001308 grPaint.addColorProcessor(fp);
reed0689d7b2014-06-14 05:30:20 -07001309 bool alphaOnly = !(kAlpha_8_SkColorType == bitmap.colorType());
bsalomon83d081a2014-07-08 09:56:10 -07001310 GrColor paintColor = (alphaOnly) ? SkColor2GrColorJustAlpha(paint.getColor()) :
1311 SkColor2GrColor(paint.getColor());
bsalomonbed83a62015-04-15 14:18:34 -07001312 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, paintColor, false,
1313 &grPaint)) {
1314 return;
1315 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001316
robertphillipsea461502015-05-26 11:38:03 -07001317 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, viewMatrix, dstRect,
1318 paintRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001319}
1320
fmalita2d97bc12014-11-20 10:44:58 -08001321bool SkGpuDevice::filterTexture(GrContext* context, GrTexture* texture,
senorblancod0d37ca2015-04-02 04:54:56 -07001322 int width, int height,
fmalita2d97bc12014-11-20 10:44:58 -08001323 const SkImageFilter* filter,
1324 const SkImageFilter::Context& ctx,
1325 SkBitmap* result, SkIPoint* offset) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001326 SkASSERT(filter);
fmalita2d97bc12014-11-20 10:44:58 -08001327
robertphillipsefbffed2015-06-22 12:06:08 -07001328 SkImageFilter::Proxy proxy(this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001329
1330 if (filter->canFilterImageGPU()) {
senorblancod0d37ca2015-04-02 04:54:56 -07001331 return filter->filterImageGPU(&proxy, wrap_texture(texture, width, height),
1332 ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001333 } else {
1334 return false;
1335 }
1336}
1337
1338void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1339 int left, int top, const SkPaint& paint) {
1340 // drawSprite is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001341 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001342
1343 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
1344 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1345 return;
1346 }
1347
1348 int w = bitmap.width();
1349 int h = bitmap.height();
1350
1351 GrTexture* texture;
1352 // draw sprite uses the default texture params
bsalomonbcf0a522014-10-08 08:40:09 -07001353 AutoBitmapTexture abt(fContext, bitmap, NULL, &texture);
joshualitt5f5a8d72015-02-25 14:09:45 -08001354 if (!texture) {
1355 return;
1356 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001357
1358 SkImageFilter* filter = paint.getImageFilter();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001359 // This bitmap will own the filtered result as a texture.
1360 SkBitmap filteredBitmap;
1361
bsalomon49f085d2014-09-05 13:34:00 -07001362 if (filter) {
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001363 SkIPoint offset = SkIPoint::Make(0, 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001364 SkMatrix matrix(*draw.fMatrix);
1365 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001366 SkIRect clipBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height());
senorblancobe129b22014-08-08 07:14:35 -07001367 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
senorblanco55b6d8b2014-07-30 11:26:46 -07001368 // This cache is transient, and is freed (along with all its contained
1369 // textures) when it goes out of scope.
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001370 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001371 if (this->filterTexture(fContext, texture, w, h, filter, ctx, &filteredBitmap,
fmalita2d97bc12014-11-20 10:44:58 -08001372 &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001373 texture = (GrTexture*) filteredBitmap.getTexture();
1374 w = filteredBitmap.width();
1375 h = filteredBitmap.height();
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001376 left += offset.x();
1377 top += offset.y();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001378 } else {
1379 return;
1380 }
1381 }
1382
1383 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001384 grPaint.addColorTextureProcessor(texture, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001385
bsalomonbed83a62015-04-15 14:18:34 -07001386 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1387 SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) {
1388 return;
1389 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001390
robertphillipsea461502015-05-26 11:38:03 -07001391 fDrawContext->drawNonAARectToRect(fRenderTarget,
1392 fClip,
1393 grPaint,
1394 SkMatrix::I(),
1395 SkRect::MakeXYWH(SkIntToScalar(left),
1396 SkIntToScalar(top),
1397 SkIntToScalar(w),
1398 SkIntToScalar(h)),
1399 SkRect::MakeXYWH(0,
1400 0,
1401 SK_Scalar1 * w / texture->width(),
1402 SK_Scalar1 * h / texture->height()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001403}
1404
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001405void SkGpuDevice::drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001406 const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -07001407 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001408 SkMatrix matrix;
1409 SkRect bitmapBounds, tmpSrc;
1410
1411 bitmapBounds.set(0, 0,
1412 SkIntToScalar(bitmap.width()),
1413 SkIntToScalar(bitmap.height()));
1414
1415 // Compute matrix from the two rectangles
bsalomon49f085d2014-09-05 13:34:00 -07001416 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001417 tmpSrc = *src;
1418 } else {
1419 tmpSrc = bitmapBounds;
1420 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001421
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001422 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1423
1424 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
bsalomon49f085d2014-09-05 13:34:00 -07001425 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001426 if (!bitmapBounds.contains(tmpSrc)) {
1427 if (!tmpSrc.intersect(bitmapBounds)) {
1428 return; // nothing to draw
1429 }
1430 }
1431 }
1432
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001433 SkRect tmpDst;
1434 matrix.mapRect(&tmpDst, tmpSrc);
1435
1436 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
1437 if (0 != tmpDst.fLeft || 0 != tmpDst.fTop) {
1438 // Translate so that tempDst's top left is at the origin.
1439 matrix = *origDraw.fMatrix;
1440 matrix.preTranslate(tmpDst.fLeft, tmpDst.fTop);
1441 draw.writable()->fMatrix = &matrix;
1442 }
1443 SkSize dstSize;
1444 dstSize.fWidth = tmpDst.width();
1445 dstSize.fHeight = tmpDst.height();
1446
reeda5517e22015-07-14 10:54:12 -07001447 this->drawBitmapCommon(*draw, bitmap, &tmpSrc, &dstSize, paint, constraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001448}
1449
1450void SkGpuDevice::drawDevice(const SkDraw& draw, SkBaseDevice* device,
1451 int x, int y, const SkPaint& paint) {
1452 // clear of the source device must occur before CHECK_SHOULD_DRAW
egdanield78a1682014-07-09 10:41:26 -07001453 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawDevice", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001454 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
kkinnunen2e4414e2015-02-19 07:20:40 -08001455
1456 // TODO: If the source device covers the whole of this device, we could
1457 // omit fNeedsClear -related flushing.
1458 // TODO: if source needs clear, we could maybe omit the draw fully.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001459
1460 // drawDevice is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001461 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001462
1463 GrRenderTarget* devRT = dev->accessRenderTarget();
1464 GrTexture* devTex;
1465 if (NULL == (devTex = devRT->asTexture())) {
1466 return;
1467 }
1468
robertphillips7b9e8a42014-12-11 08:20:31 -08001469 const SkImageInfo ii = dev->imageInfo();
1470 int w = ii.width();
1471 int h = ii.height();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001472
1473 SkImageFilter* filter = paint.getImageFilter();
1474 // This bitmap will own the filtered result as a texture.
1475 SkBitmap filteredBitmap;
1476
bsalomon49f085d2014-09-05 13:34:00 -07001477 if (filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001478 SkIPoint offset = SkIPoint::Make(0, 0);
1479 SkMatrix matrix(*draw.fMatrix);
1480 matrix.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001481 SkIRect clipBounds = SkIRect::MakeWH(devTex->width(), devTex->height());
senorblanco55b6d8b2014-07-30 11:26:46 -07001482 // This cache is transient, and is freed (along with all its contained
1483 // textures) when it goes out of scope.
senorblancobe129b22014-08-08 07:14:35 -07001484 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001485 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001486 if (this->filterTexture(fContext, devTex, device->width(), device->height(),
1487 filter, ctx, &filteredBitmap, &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001488 devTex = filteredBitmap.getTexture();
1489 w = filteredBitmap.width();
1490 h = filteredBitmap.height();
1491 x += offset.fX;
1492 y += offset.fY;
1493 } else {
1494 return;
1495 }
1496 }
1497
1498 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001499 grPaint.addColorTextureProcessor(devTex, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001500
bsalomonbed83a62015-04-15 14:18:34 -07001501 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1502 SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) {
1503 return;
1504 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001505
1506 SkRect dstRect = SkRect::MakeXYWH(SkIntToScalar(x),
1507 SkIntToScalar(y),
1508 SkIntToScalar(w),
1509 SkIntToScalar(h));
1510
1511 // The device being drawn may not fill up its texture (e.g. saveLayer uses approximate
1512 // scratch texture).
1513 SkRect srcRect = SkRect::MakeWH(SK_Scalar1 * w / devTex->width(),
1514 SK_Scalar1 * h / devTex->height());
1515
robertphillipsea461502015-05-26 11:38:03 -07001516 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, SkMatrix::I(), dstRect,
1517 srcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001518}
1519
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001520bool SkGpuDevice::canHandleImageFilter(const SkImageFilter* filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001521 return filter->canFilterImageGPU();
1522}
1523
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001524bool SkGpuDevice::filterImage(const SkImageFilter* filter, const SkBitmap& src,
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001525 const SkImageFilter::Context& ctx,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001526 SkBitmap* result, SkIPoint* offset) {
1527 // want explicitly our impl, so guard against a subclass of us overriding it
1528 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
1529 return false;
1530 }
1531
1532 SkAutoLockPixels alp(src, !src.getTexture());
1533 if (!src.getTexture() && !src.readyToDraw()) {
1534 return false;
1535 }
1536
1537 GrTexture* texture;
1538 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1539 // must be pushed upstack.
bsalomonbcf0a522014-10-08 08:40:09 -07001540 AutoBitmapTexture abt(fContext, src, NULL, &texture);
robertphillipsf83be822015-04-30 08:55:06 -07001541 if (!texture) {
1542 return false;
1543 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001544
senorblancod0d37ca2015-04-02 04:54:56 -07001545 return this->filterTexture(fContext, texture, src.width(), src.height(),
1546 filter, ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001547}
1548
reeda85d4d02015-05-06 12:56:48 -07001549static bool wrap_as_bm(const SkImage* image, SkBitmap* bm) {
bsalomon55812362015-06-10 08:49:28 -07001550 GrTexture* tex = as_IB(image)->getTexture();
reeda85d4d02015-05-06 12:56:48 -07001551 if (tex) {
reed8b26b992015-05-07 15:36:17 -07001552 GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), bm);
1553 return true;
reeda85d4d02015-05-06 12:56:48 -07001554 } else {
reed8b26b992015-05-07 15:36:17 -07001555 return as_IB(image)->getROPixels(bm);
reeda85d4d02015-05-06 12:56:48 -07001556 }
reeda85d4d02015-05-06 12:56:48 -07001557}
1558
1559void SkGpuDevice::drawImage(const SkDraw& draw, const SkImage* image, SkScalar x, SkScalar y,
1560 const SkPaint& paint) {
1561 SkBitmap bm;
1562 if (wrap_as_bm(image, &bm)) {
1563 this->drawBitmap(draw, bm, SkMatrix::MakeTrans(x, y), paint);
1564 }
1565}
1566
1567void SkGpuDevice::drawImageRect(const SkDraw& draw, const SkImage* image, const SkRect* src,
reeda5517e22015-07-14 10:54:12 -07001568 const SkRect& dst, const SkPaint& paint,
1569 SkCanvas::SrcRectConstraint constraint) {
reeda85d4d02015-05-06 12:56:48 -07001570 SkBitmap bm;
1571 if (wrap_as_bm(image, &bm)) {
reed562fe472015-07-28 07:35:14 -07001572 this->drawBitmapRect(draw, bm, src, dst, paint, constraint);
reeda85d4d02015-05-06 12:56:48 -07001573 }
1574}
1575
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001576///////////////////////////////////////////////////////////////////////////////
1577
1578// must be in SkCanvas::VertexMode order
1579static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1580 kTriangles_GrPrimitiveType,
1581 kTriangleStrip_GrPrimitiveType,
1582 kTriangleFan_GrPrimitiveType,
1583};
1584
1585void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1586 int vertexCount, const SkPoint vertices[],
1587 const SkPoint texs[], const SkColor colors[],
1588 SkXfermode* xmode,
1589 const uint16_t indices[], int indexCount,
1590 const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -08001591 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001592 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawVertices", fContext);
mtklein533eb782014-08-27 10:39:42 -07001593
dandov32a311b2014-07-15 19:46:26 -07001594 const uint16_t* outIndices;
1595 SkAutoTDeleteArray<uint16_t> outAlloc(NULL);
1596 GrPrimitiveType primType;
1597 GrPaint grPaint;
bsalomona098dd42014-08-06 11:01:44 -07001598
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001599 // If both textures and vertex-colors are NULL, strokes hairlines with the paint's color.
1600 if ((NULL == texs || NULL == paint.getShader()) && NULL == colors) {
mtklein533eb782014-08-27 10:39:42 -07001601
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001602 texs = NULL;
mtklein533eb782014-08-27 10:39:42 -07001603
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001604 SkPaint copy(paint);
1605 copy.setStyle(SkPaint::kStroke_Style);
1606 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001607
dandov32a311b2014-07-15 19:46:26 -07001608 // we ignore the shader if texs is null.
bsalomonbed83a62015-04-15 14:18:34 -07001609 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, copy,
1610 SkColor2GrColor(copy.getColor()), NULL == colors, &grPaint)) {
1611 return;
1612 }
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001613
dandov32a311b2014-07-15 19:46:26 -07001614 primType = kLines_GrPrimitiveType;
1615 int triangleCount = 0;
bsalomona098dd42014-08-06 11:01:44 -07001616 int n = (NULL == indices) ? vertexCount : indexCount;
dandov32a311b2014-07-15 19:46:26 -07001617 switch (vmode) {
1618 case SkCanvas::kTriangles_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001619 triangleCount = n / 3;
dandov32a311b2014-07-15 19:46:26 -07001620 break;
1621 case SkCanvas::kTriangleStrip_VertexMode:
1622 case SkCanvas::kTriangleFan_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001623 triangleCount = n - 2;
dandov32a311b2014-07-15 19:46:26 -07001624 break;
1625 }
mtklein533eb782014-08-27 10:39:42 -07001626
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001627 VertState state(vertexCount, indices, indexCount);
1628 VertState::Proc vertProc = state.chooseProc(vmode);
mtklein533eb782014-08-27 10:39:42 -07001629
dandov32a311b2014-07-15 19:46:26 -07001630 //number of indices for lines per triangle with kLines
1631 indexCount = triangleCount * 6;
mtklein533eb782014-08-27 10:39:42 -07001632
dandov32a311b2014-07-15 19:46:26 -07001633 outAlloc.reset(SkNEW_ARRAY(uint16_t, indexCount));
1634 outIndices = outAlloc.get();
1635 uint16_t* auxIndices = outAlloc.get();
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001636 int i = 0;
1637 while (vertProc(&state)) {
dandov32a311b2014-07-15 19:46:26 -07001638 auxIndices[i] = state.f0;
1639 auxIndices[i + 1] = state.f1;
1640 auxIndices[i + 2] = state.f1;
1641 auxIndices[i + 3] = state.f2;
1642 auxIndices[i + 4] = state.f2;
1643 auxIndices[i + 5] = state.f0;
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001644 i += 6;
1645 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001646 } else {
dandov32a311b2014-07-15 19:46:26 -07001647 outIndices = indices;
1648 primType = gVertexMode2PrimitiveType[vmode];
mtklein533eb782014-08-27 10:39:42 -07001649
dandov32a311b2014-07-15 19:46:26 -07001650 if (NULL == texs || NULL == paint.getShader()) {
bsalomonbed83a62015-04-15 14:18:34 -07001651 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1652 SkColor2GrColor(paint.getColor()),
1653 NULL == colors, &grPaint)) {
1654 return;
1655 }
dandov32a311b2014-07-15 19:46:26 -07001656 } else {
bsalomonbed83a62015-04-15 14:18:34 -07001657 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix,
1658 NULL == colors, &grPaint)) {
1659 return;
1660 }
dandov32a311b2014-07-15 19:46:26 -07001661 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001662 }
1663
mtklein2583b622014-06-04 08:20:41 -07001664#if 0
bsalomon49f085d2014-09-05 13:34:00 -07001665 if (xmode && texs && colors) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001666 if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) {
1667 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
mtklein2583b622014-06-04 08:20:41 -07001668 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001669 }
1670 }
mtklein2583b622014-06-04 08:20:41 -07001671#endif
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001672
1673 SkAutoSTMalloc<128, GrColor> convertedColors(0);
bsalomon49f085d2014-09-05 13:34:00 -07001674 if (colors) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001675 // need to convert byte order and from non-PM to PM
1676 convertedColors.reset(vertexCount);
commit-bot@chromium.orgc93e6812014-05-23 08:09:26 +00001677 SkColor color;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001678 for (int i = 0; i < vertexCount; ++i) {
commit-bot@chromium.orgc93e6812014-05-23 08:09:26 +00001679 color = colors[i];
1680 if (paint.getAlpha() != 255) {
1681 color = SkColorSetA(color, SkMulDiv255Round(SkColorGetA(color), paint.getAlpha()));
1682 }
1683 convertedColors[i] = SkColor2GrColor(color);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001684 }
1685 colors = convertedColors.get();
1686 }
robertphillipsea461502015-05-26 11:38:03 -07001687 fDrawContext->drawVertices(fRenderTarget,
1688 fClip,
1689 grPaint,
1690 *draw.fMatrix,
1691 primType,
1692 vertexCount,
1693 vertices,
1694 texs,
1695 colors,
1696 outIndices,
1697 indexCount);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001698}
1699
1700///////////////////////////////////////////////////////////////////////////////
1701
jvanverth31ff7622015-08-07 10:09:28 -07001702void SkGpuDevice::drawAtlas(const SkDraw& draw, const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001703 const SkRect texRect[], const SkColor colors[], int count,
1704 SkXfermode::Mode mode, const SkPaint& paint) {
1705 if (paint.isAntiAlias()) {
jvanverth31ff7622015-08-07 10:09:28 -07001706 this->INHERITED::drawAtlas(draw, atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001707 return;
1708 }
1709
jvanverth31ff7622015-08-07 10:09:28 -07001710 CHECK_SHOULD_DRAW(draw);
1711 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
1712
reedca109532015-06-25 16:25:25 -07001713 SkPaint p(paint);
1714 p.setShader(atlas->newShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
1715
jvanverth31ff7622015-08-07 10:09:28 -07001716 GrPaint grPaint;
1717 if (!SkPaint2GrPaint(this->context(), fRenderTarget, p, *draw.fMatrix, !colors, &grPaint)) {
1718 return;
reedca109532015-06-25 16:25:25 -07001719 }
jvanverth31ff7622015-08-07 10:09:28 -07001720
1721 SkDEBUGCODE(this->validate();)
1722
1723#if 0
robertphillips29ccdf82015-07-24 10:20:45 -07001724 if (colors) {
jvanverth31ff7622015-08-07 10:09:28 -07001725 if (SkXfermode::kModulate_Mode != mode) {
1726 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1727 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001728 }
1729 }
jvanverth31ff7622015-08-07 10:09:28 -07001730#endif
1731
1732 fDrawContext->drawAtlas(fRenderTarget, fClip, grPaint, *draw.fMatrix,
1733 count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001734}
1735
1736///////////////////////////////////////////////////////////////////////////////
1737
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001738void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
joshualitt5531d512014-12-17 15:50:11 -08001739 size_t byteLength, SkScalar x, SkScalar y,
1740 const SkPaint& paint) {
1741 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001742 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001743
jvanverth8c27a182014-10-14 08:45:50 -07001744 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -07001745 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
1746 return;
1747 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001748
jvanverth8c27a182014-10-14 08:45:50 -07001749 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001750
robertphillips2334fb62015-06-17 05:43:33 -07001751 fDrawContext->drawText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001752 (const char *)text, byteLength, x, y, draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001753}
1754
fmalita05c4a432014-09-29 06:29:53 -07001755void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text, size_t byteLength,
1756 const SkScalar pos[], int scalarsPerPos,
1757 const SkPoint& offset, const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -07001758 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPosText", fContext);
joshualitt5531d512014-12-17 15:50:11 -08001759 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001760
jvanverth8c27a182014-10-14 08:45:50 -07001761 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -07001762 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
1763 return;
1764 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001765
jvanverth8c27a182014-10-14 08:45:50 -07001766 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001767
robertphillips2334fb62015-06-17 05:43:33 -07001768 fDrawContext->drawPosText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001769 (const char *)text, byteLength, pos, scalarsPerPos, offset,
1770 draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001771}
1772
joshualitt9c328182015-03-23 08:13:04 -07001773void SkGpuDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y,
1774 const SkPaint& paint, SkDrawFilter* drawFilter) {
1775 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawTextBlob", fContext);
1776 CHECK_SHOULD_DRAW(draw);
1777
1778 SkDEBUGCODE(this->validate();)
1779
robertphillips2334fb62015-06-17 05:43:33 -07001780 fDrawContext->drawTextBlob(fRenderTarget, fClip, paint, *draw.fMatrix,
robertphillipsccb1b572015-05-27 11:02:55 -07001781 blob, x, y, drawFilter, draw.fClip->getBounds());
joshualitt9c328182015-03-23 08:13:04 -07001782}
1783
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001784///////////////////////////////////////////////////////////////////////////////
1785
reedb2db8982014-11-13 12:41:02 -08001786bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const {
robertphillips9c240a12015-05-28 07:45:59 -07001787 return GrTextContext::ShouldDisableLCD(paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001788}
1789
1790void SkGpuDevice::flush() {
1791 DO_DEFERRED_CLEAR();
bsalomonc49e8682015-06-30 11:37:35 -07001792 fRenderTarget->prepareForExternalIO();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001793}
1794
1795///////////////////////////////////////////////////////////////////////////////
1796
reed76033be2015-03-14 10:54:31 -07001797SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
bsalomonf2703d82014-10-28 14:33:06 -07001798 GrSurfaceDesc desc;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001799 desc.fConfig = fRenderTarget->config();
bsalomonf2703d82014-10-28 14:33:06 -07001800 desc.fFlags = kRenderTarget_GrSurfaceFlag;
fmalita6987dca2014-11-13 08:33:37 -08001801 desc.fWidth = cinfo.fInfo.width();
1802 desc.fHeight = cinfo.fInfo.height();
vbuzinovdded6962015-06-12 08:59:45 -07001803 desc.fSampleCnt = fRenderTarget->desc().fSampleCnt;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001804
1805 SkAutoTUnref<GrTexture> texture;
1806 // Skia's convention is to only clear a device if it is non-opaque.
bsalomon74f681d2015-06-23 14:38:48 -07001807 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001808
hcm4396fa52014-10-27 21:43:30 -07001809 // layers are never draw in repeat modes, so we can request an approx
1810 // match and ignore any padding.
bsalomoneae62002015-07-31 13:59:30 -07001811 if (kNever_TileUsage == cinfo.fTileUsage) {
1812 texture.reset(fContext->textureProvider()->createApproxTexture(desc));
1813 } else {
1814 texture.reset(fContext->textureProvider()->createTexture(desc, true));
1815 }
bsalomonafe30052015-01-16 07:32:33 -08001816
1817 if (texture) {
robertphillips7b05ff12015-06-19 14:14:54 -07001818 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
senorblancod0d37ca2015-04-02 04:54:56 -07001819 return SkGpuDevice::Create(
bsalomon74f681d2015-06-23 14:38:48 -07001820 texture->asRenderTarget(), cinfo.fInfo.width(), cinfo.fInfo.height(), &props, init);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001821 } else {
joshualitt5f5a8d72015-02-25 14:09:45 -08001822 SkErrorInternals::SetError( kInternalError_SkError,
reed61f501f2015-04-29 08:34:00 -07001823 "---- failed to create gpu device texture [%d %d]\n",
joshualitt5f5a8d72015-02-25 14:09:45 -08001824 cinfo.fInfo.width(), cinfo.fInfo.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001825 return NULL;
1826 }
1827}
1828
reed4a8126e2014-09-22 07:29:03 -07001829SkSurface* SkGpuDevice::newSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
bsalomonafe30052015-01-16 07:32:33 -08001830 // TODO: Change the signature of newSurface to take a budgeted parameter.
1831 static const SkSurface::Budgeted kBudgeted = SkSurface::kNo_Budgeted;
vbuzinovdded6962015-06-12 08:59:45 -07001832 return SkSurface::NewRenderTarget(fContext, kBudgeted, info, fRenderTarget->desc().fSampleCnt,
bsalomonafe30052015-01-16 07:32:33 -08001833 &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001834}
1835
robertphillips30d2cc62014-09-24 08:52:18 -07001836bool SkGpuDevice::EXPERIMENTAL_drawPicture(SkCanvas* mainCanvas, const SkPicture* mainPicture,
reedd5fa1a42014-08-09 11:08:05 -07001837 const SkMatrix* matrix, const SkPaint* paint) {
robertphillips63242d72014-12-04 08:31:02 -08001838#ifndef SK_IGNORE_GPU_LAYER_HOISTING
robertphillips30d78412014-11-24 09:49:17 -08001839 // todo: should handle this natively
1840 if (paint) {
reedd5fa1a42014-08-09 11:08:05 -07001841 return false;
1842 }
1843
mtklein9db912c2015-05-19 11:11:26 -07001844 const SkBigPicture::AccelData* data = NULL;
1845 if (const SkBigPicture* bp = mainPicture->asSkBigPicture()) {
1846 data = bp->accelData();
1847 }
robertphillips81f71b62014-11-11 04:54:49 -08001848 if (!data) {
1849 return false;
1850 }
1851
robertphillipse5524cd2015-02-20 12:30:26 -08001852 const SkLayerInfo *gpuData = static_cast<const SkLayerInfo*>(data);
1853 if (0 == gpuData->numBlocks()) {
1854 return false;
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +00001855 }
1856
robertphillipsfd61ed02014-10-28 07:21:44 -07001857 SkTDArray<GrHoistedLayer> atlasedNeedRendering, atlasedRecycled;
robertphillips1c4c5282014-09-18 12:03:15 -07001858
robertphillipse5524cd2015-02-20 12:30:26 -08001859 SkIRect iBounds;
1860 if (!mainCanvas->getClipDeviceBounds(&iBounds)) {
1861 return false;
1862 }
1863
1864 SkRect clipBounds = SkRect::Make(iBounds);
1865
1866 SkMatrix initialMatrix = mainCanvas->getTotalMatrix();
1867
robertphillipsfd61ed02014-10-28 07:21:44 -07001868 GrLayerHoister::FindLayersToAtlas(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001869 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001870 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001871 &atlasedNeedRendering, &atlasedRecycled,
vbuzinovdded6962015-06-12 08:59:45 -07001872 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001873
1874 GrLayerHoister::DrawLayersToAtlas(fContext, atlasedNeedRendering);
1875
1876 SkTDArray<GrHoistedLayer> needRendering, recycled;
1877
robertphillipse5524cd2015-02-20 12:30:26 -08001878 SkAutoCanvasMatrixPaint acmp(mainCanvas, matrix, paint, mainPicture->cullRect());
1879
robertphillipsfd61ed02014-10-28 07:21:44 -07001880 GrLayerHoister::FindLayersToHoist(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001881 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001882 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001883 &needRendering, &recycled,
vbuzinovdded6962015-06-12 08:59:45 -07001884 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001885
1886 GrLayerHoister::DrawLayers(fContext, needRendering);
robertphillips@google.combeb1af22014-05-07 21:31:09 +00001887
robertphillips64bf7672014-08-21 13:07:35 -07001888 // Render the entire picture using new layers
robertphillipse99d4992014-12-03 07:33:57 -08001889 GrRecordReplaceDraw(mainPicture, mainCanvas, fContext->getLayerCache(),
1890 initialMatrix, NULL);
robertphillips64bf7672014-08-21 13:07:35 -07001891
robertphillipsfd61ed02014-10-28 07:21:44 -07001892 GrLayerHoister::UnlockLayers(fContext, needRendering);
1893 GrLayerHoister::UnlockLayers(fContext, recycled);
1894 GrLayerHoister::UnlockLayers(fContext, atlasedNeedRendering);
1895 GrLayerHoister::UnlockLayers(fContext, atlasedRecycled);
robertphillips64bf7672014-08-21 13:07:35 -07001896
1897 return true;
robertphillips63242d72014-12-04 08:31:02 -08001898#else
1899 return false;
1900#endif
robertphillips64bf7672014-08-21 13:07:35 -07001901}
1902
senorblancobe129b22014-08-08 07:14:35 -07001903SkImageFilter::Cache* SkGpuDevice::getImageFilterCache() {
senorblanco55b6d8b2014-07-30 11:26:46 -07001904 // We always return a transient cache, so it is freed after each
1905 // filter traversal.
senorblancobe129b22014-08-08 07:14:35 -07001906 return SkImageFilter::Cache::Create(kDefaultImageFilterCacheSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07001907}
reedf037e0b2014-10-30 11:34:15 -07001908
1909#endif