blob: f8318c52d8409fc834be2b1a636de5d3bacd31a6 [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"
kkinnunenabcfab42015-02-22 22:53:44 -080042#include "effects/GrBicubicEffect.h"
43#include "effects/GrDashingEffect.h"
44#include "effects/GrSimpleTextureEffect.h"
45#include "effects/GrTextureDomain.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000046
reedf037e0b2014-10-30 11:34:15 -070047#if SK_SUPPORT_GPU
48
senorblanco55b6d8b2014-07-30 11:26:46 -070049enum { kDefaultImageFilterCacheSize = 32 * 1024 * 1024 };
50
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000051#if 0
52 extern bool (*gShouldDrawProc)();
joshualitt5531d512014-12-17 15:50:11 -080053 #define CHECK_SHOULD_DRAW(draw) \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000054 do { \
55 if (gShouldDrawProc && !gShouldDrawProc()) return; \
joshualitt5531d512014-12-17 15:50:11 -080056 this->prepareDraw(draw); \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000057 } while (0)
58#else
joshualitt5531d512014-12-17 15:50:11 -080059 #define CHECK_SHOULD_DRAW(draw) this->prepareDraw(draw)
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000060#endif
61
62// This constant represents the screen alignment criterion in texels for
63// requiring texture domain clamping to prevent color bleeding when drawing
64// a sub region of a larger source image.
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000065#define COLOR_BLEED_TOLERANCE 0.001f
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000066
67#define DO_DEFERRED_CLEAR() \
68 do { \
bsalomonafe30052015-01-16 07:32:33 -080069 if (fNeedClear) { \
70 this->clearAll(); \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000071 } \
72 } while (false) \
73
74///////////////////////////////////////////////////////////////////////////////
75
76#define CHECK_FOR_ANNOTATION(paint) \
77 do { if (paint.getAnnotation()) { return; } } while (0)
78
79///////////////////////////////////////////////////////////////////////////////
80
bsalomonbcf0a522014-10-08 08:40:09 -070081// Helper for turning a bitmap into a texture. If the bitmap is GrTexture backed this
82// just accesses the backing GrTexture. Otherwise, it creates a cached texture
83// representation and releases it in the destructor.
84class AutoBitmapTexture : public SkNoncopyable {
Brian Salomon9323b8b2014-10-07 15:07:38 -040085public:
bsalomonbcf0a522014-10-08 08:40:09 -070086 AutoBitmapTexture() {}
robertphillipsdbe60742014-09-30 06:54:17 -070087
bsalomonbcf0a522014-10-08 08:40:09 -070088 AutoBitmapTexture(GrContext* context,
89 const SkBitmap& bitmap,
90 const GrTextureParams* params,
91 GrTexture** texture) {
Brian Salomon9323b8b2014-10-07 15:07:38 -040092 SkASSERT(texture);
bsalomonbcf0a522014-10-08 08:40:09 -070093 *texture = this->set(context, bitmap, params);
Brian Salomon9323b8b2014-10-07 15:07:38 -040094 }
95
bsalomonbcf0a522014-10-08 08:40:09 -070096 GrTexture* set(GrContext* context,
Brian Salomon9323b8b2014-10-07 15:07:38 -040097 const SkBitmap& bitmap,
98 const GrTextureParams* params) {
bsalomonbcf0a522014-10-08 08:40:09 -070099 // Either get the texture directly from the bitmap, or else use the cache and
100 // remember to unref it.
101 if (GrTexture* bmpTexture = bitmap.getTexture()) {
102 fTexture.reset(NULL);
103 return bmpTexture;
104 } else {
105 fTexture.reset(GrRefCachedBitmapTexture(context, bitmap, params));
106 return fTexture.get();
Brian Salomon9323b8b2014-10-07 15:07:38 -0400107 }
Brian Salomon9323b8b2014-10-07 15:07:38 -0400108 }
109
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000110private:
bsalomonbcf0a522014-10-08 08:40:09 -0700111 SkAutoTUnref<GrTexture> fTexture;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000112};
113
114///////////////////////////////////////////////////////////////////////////////
115
116struct GrSkDrawProcs : public SkDrawProcs {
117public:
118 GrContext* fContext;
119 GrTextContext* fTextContext;
120 GrFontScaler* fFontScaler; // cached in the skia glyphcache
121};
122
123///////////////////////////////////////////////////////////////////////////////
124
bsalomon74f681d2015-06-23 14:38:48 -0700125/** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation
126 should fail. */
127bool SkGpuDevice::CheckAlphaTypeAndGetFlags(
128 const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) {
129 *flags = 0;
130 if (info) {
131 switch (info->alphaType()) {
132 case kPremul_SkAlphaType:
133 break;
134 case kOpaque_SkAlphaType:
135 *flags |= SkGpuDevice::kIsOpaque_Flag;
136 break;
137 default: // If it is unpremul or unknown don't try to render
138 return false;
139 }
140 }
141 if (kClear_InitContents == init) {
142 *flags |= kNeedClear_Flag;
143 }
144 return true;
145}
146
147SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, const SkSurfaceProps* props,
148 InitContents init) {
149 return SkGpuDevice::Create(rt, rt->width(), rt->height(), props, init);
senorblancod0d37ca2015-04-02 04:54:56 -0700150}
151
152SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, int width, int height,
bsalomon74f681d2015-06-23 14:38:48 -0700153 const SkSurfaceProps* props, InitContents init) {
bsalomonafe30052015-01-16 07:32:33 -0800154 if (!rt || rt->wasDestroyed()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000155 return NULL;
156 }
bsalomon74f681d2015-06-23 14:38:48 -0700157 unsigned flags;
158 if (!CheckAlphaTypeAndGetFlags(NULL, init, &flags)) {
159 return NULL;
160 }
senorblancod0d37ca2015-04-02 04:54:56 -0700161 return SkNEW_ARGS(SkGpuDevice, (rt, width, height, props, flags));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000162}
163
bsalomon74f681d2015-06-23 14:38:48 -0700164SkGpuDevice* SkGpuDevice::Create(GrContext* context, SkSurface::Budgeted budgeted,
165 const SkImageInfo& info, int sampleCount,
166 const SkSurfaceProps* props, InitContents init) {
167 unsigned flags;
168 if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) {
169 return NULL;
170 }
171
172 SkAutoTUnref<GrRenderTarget> rt(CreateRenderTarget(context, budgeted, info, sampleCount));
173 if (NULL == rt) {
174 return NULL;
175 }
176
177 return SkNEW_ARGS(SkGpuDevice, (rt, info.width(), info.height(), props, flags));
178}
179
senorblancod0d37ca2015-04-02 04:54:56 -0700180SkGpuDevice::SkGpuDevice(GrRenderTarget* rt, int width, int height,
181 const SkSurfaceProps* props, unsigned flags)
robertphillipsfcf78292015-06-19 11:49:52 -0700182 : INHERITED(SkSurfacePropsCopyOrDefault(props))
reedb2db8982014-11-13 12:41:02 -0800183{
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000184 fDrawProcs = NULL;
185
bsalomonafe30052015-01-16 07:32:33 -0800186 fContext = SkRef(rt->getContext());
bsalomon74f681d2015-06-23 14:38:48 -0700187 fNeedClear = SkToBool(flags & kNeedClear_Flag);
188 fOpaque = SkToBool(flags & kIsOpaque_Flag);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000189
bsalomonafe30052015-01-16 07:32:33 -0800190 fRenderTarget = SkRef(rt);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000191
bsalomon74f681d2015-06-23 14:38:48 -0700192 SkAlphaType at = fOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
193 SkImageInfo info = rt->surfacePriv().info(at).makeWH(width, height);
bsalomonafe30052015-01-16 07:32:33 -0800194 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (info, rt));
bsalomonafbf2d62014-09-30 12:18:44 -0700195 fLegacyBitmap.setInfo(info);
reed89443ab2014-06-27 11:34:19 -0700196 fLegacyBitmap.setPixelRef(pr)->unref();
kkinnunenc6cb56f2014-06-24 00:12:27 -0700197
robertphillips7b05ff12015-06-19 14:14:54 -0700198 fDrawContext.reset(SkRef(fContext->drawContext(&this->surfaceProps())));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000199}
200
kkinnunenabcfab42015-02-22 22:53:44 -0800201GrRenderTarget* SkGpuDevice::CreateRenderTarget(GrContext* context, SkSurface::Budgeted budgeted,
202 const SkImageInfo& origInfo, int sampleCount) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000203 if (kUnknown_SkColorType == origInfo.colorType() ||
204 origInfo.width() < 0 || origInfo.height() < 0) {
205 return NULL;
206 }
207
bsalomonafe30052015-01-16 07:32:33 -0800208 if (!context) {
209 return NULL;
210 }
211
reede5ea5002014-09-03 11:54:58 -0700212 SkColorType ct = origInfo.colorType();
213 SkAlphaType at = origInfo.alphaType();
reede5ea5002014-09-03 11:54:58 -0700214 if (kRGB_565_SkColorType == ct) {
215 at = kOpaque_SkAlphaType; // force this setting
bsalomonafe30052015-01-16 07:32:33 -0800216 } else if (ct != kBGRA_8888_SkColorType && ct != kRGBA_8888_SkColorType) {
217 // Fall back from whatever ct was to default of kRGBA or kBGRA which is aliased as kN32
reede5ea5002014-09-03 11:54:58 -0700218 ct = kN32_SkColorType;
bsalomonafe30052015-01-16 07:32:33 -0800219 }
220 if (kOpaque_SkAlphaType != at) {
221 at = kPremul_SkAlphaType; // force this setting
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000222 }
reede5ea5002014-09-03 11:54:58 -0700223 const SkImageInfo info = SkImageInfo::Make(origInfo.width(), origInfo.height(), ct, at);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000224
bsalomonf2703d82014-10-28 14:33:06 -0700225 GrSurfaceDesc desc;
226 desc.fFlags = kRenderTarget_GrSurfaceFlag;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000227 desc.fWidth = info.width();
228 desc.fHeight = info.height();
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000229 desc.fConfig = SkImageInfo2GrPixelConfig(info);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000230 desc.fSampleCnt = sampleCount;
bsalomond309e7a2015-04-30 14:18:54 -0700231 GrTexture* texture = context->textureProvider()->createTexture(
232 desc, SkToBool(budgeted), NULL, 0);
kkinnunenabcfab42015-02-22 22:53:44 -0800233 if (NULL == texture) {
234 return NULL;
235 }
236 SkASSERT(NULL != texture->asRenderTarget());
237 return texture->asRenderTarget();
238}
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000239
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000240SkGpuDevice::~SkGpuDevice() {
241 if (fDrawProcs) {
242 delete fDrawProcs;
243 }
skia.committer@gmail.comd2ac07b2014-01-25 07:01:49 +0000244
bsalomon32d0b3b2014-08-29 07:50:23 -0700245 fRenderTarget->unref();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000246 fContext->unref();
247}
248
249///////////////////////////////////////////////////////////////////////////////
250
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000251bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
252 int x, int y) {
253 DO_DEFERRED_CLEAR();
254
255 // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000256 GrPixelConfig config = SkImageInfo2GrPixelConfig(dstInfo);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000257 if (kUnknown_GrPixelConfig == config) {
258 return false;
259 }
260
261 uint32_t flags = 0;
262 if (kUnpremul_SkAlphaType == dstInfo.alphaType()) {
263 flags = GrContext::kUnpremul_PixelOpsFlag;
264 }
bsalomon74f681d2015-06-23 14:38:48 -0700265 return fRenderTarget->readPixels(x, y, dstInfo.width(), dstInfo.height(), config, dstPixels,
266 dstRowBytes, flags);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000267}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000268
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000269bool SkGpuDevice::onWritePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes,
270 int x, int y) {
271 // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000272 GrPixelConfig config = SkImageInfo2GrPixelConfig(info);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000273 if (kUnknown_GrPixelConfig == config) {
274 return false;
275 }
276 uint32_t flags = 0;
277 if (kUnpremul_SkAlphaType == info.alphaType()) {
278 flags = GrContext::kUnpremul_PixelOpsFlag;
279 }
280 fRenderTarget->writePixels(x, y, info.width(), info.height(), config, pixels, rowBytes, flags);
281
282 // need to bump our genID for compatibility with clients that "know" we have a bitmap
reed89443ab2014-06-27 11:34:19 -0700283 fLegacyBitmap.notifyPixelsChanged();
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000284
285 return true;
286}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000287
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000288const SkBitmap& SkGpuDevice::onAccessBitmap() {
289 DO_DEFERRED_CLEAR();
reed89443ab2014-06-27 11:34:19 -0700290 return fLegacyBitmap;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000291}
292
reed41e010c2015-06-09 12:16:53 -0700293bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) {
294 DO_DEFERRED_CLEAR();
295 // For compatibility with clients the know we're backed w/ a bitmap, and want to inspect its
296 // genID. When we can hide/remove that fact, we can eliminate this call to notify.
297 // ... ugh.
298 fLegacyBitmap.notifyPixelsChanged();
299 return false;
300}
301
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000302void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
303 INHERITED::onAttachToCanvas(canvas);
304
305 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
joshualitt44701df2015-02-23 14:44:57 -0800306 fClipStack.reset(SkRef(canvas->getClipStack()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000307}
308
309void SkGpuDevice::onDetachFromCanvas() {
310 INHERITED::onDetachFromCanvas();
joshualitt570d2f82015-02-25 13:19:48 -0800311 fClip.reset();
joshualitt44701df2015-02-23 14:44:57 -0800312 fClipStack.reset(NULL);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000313}
314
315// call this every draw call, to ensure that the context reflects our state,
316// and not the state from some other canvas/device
joshualitt5531d512014-12-17 15:50:11 -0800317void SkGpuDevice::prepareDraw(const SkDraw& draw) {
joshualitt44701df2015-02-23 14:44:57 -0800318 SkASSERT(fClipStack.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000319
joshualitt44701df2015-02-23 14:44:57 -0800320 SkASSERT(draw.fClipStack && draw.fClipStack == fClipStack);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000321
joshualitt570d2f82015-02-25 13:19:48 -0800322 fClip.setClipStack(fClipStack, &this->getOrigin());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000323
324 DO_DEFERRED_CLEAR();
325}
326
327GrRenderTarget* SkGpuDevice::accessRenderTarget() {
robertphillips7156b092015-05-14 08:54:12 -0700328 DO_DEFERRED_CLEAR();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000329 return fRenderTarget;
330}
331
reed8eddfb52014-12-04 07:50:14 -0800332void SkGpuDevice::clearAll() {
333 GrColor color = 0;
334 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::clearAll", fContext);
335 SkIRect rect = SkIRect::MakeWH(this->width(), this->height());
robertphillipsea461502015-05-26 11:38:03 -0700336 fDrawContext->clear(fRenderTarget, &rect, color, true);
bsalomonafe30052015-01-16 07:32:33 -0800337 fNeedClear = false;
reed8eddfb52014-12-04 07:50:14 -0800338}
339
kkinnunenabcfab42015-02-22 22:53:44 -0800340void SkGpuDevice::replaceRenderTarget(bool shouldRetainContent) {
341 // Caller must have accessed the render target, because it knows the rt must be replaced.
342 SkASSERT(!fNeedClear);
343
344 SkSurface::Budgeted budgeted =
345 fRenderTarget->resourcePriv().isBudgeted() ? SkSurface::kYes_Budgeted
346 : SkSurface::kNo_Budgeted;
347
348 SkAutoTUnref<GrRenderTarget> newRT(CreateRenderTarget(
vbuzinovdded6962015-06-12 08:59:45 -0700349 fRenderTarget->getContext(), budgeted, this->imageInfo(), fRenderTarget->desc().fSampleCnt));
kkinnunenabcfab42015-02-22 22:53:44 -0800350
351 if (NULL == newRT) {
352 return;
353 }
354
355 if (shouldRetainContent) {
356 if (fRenderTarget->wasDestroyed()) {
357 return;
358 }
359 this->context()->copySurface(newRT, fRenderTarget);
360 }
361
362 SkASSERT(fRenderTarget != newRT);
363
364 fRenderTarget->unref();
365 fRenderTarget = newRT.detach();
366
bsalomon74f681d2015-06-23 14:38:48 -0700367#ifdef SK_DEBUG
368 SkImageInfo info = fRenderTarget->surfacePriv().info(fOpaque ? kOpaque_SkAlphaType :
369 kPremul_SkAlphaType);
370 SkASSERT(info == fLegacyBitmap.info());
371#endif
372 SkPixelRef* pr = SkNEW_ARGS(SkGrPixelRef, (fLegacyBitmap.info(), fRenderTarget));
kkinnunenabcfab42015-02-22 22:53:44 -0800373 fLegacyBitmap.setPixelRef(pr)->unref();
robertphillipsea461502015-05-26 11:38:03 -0700374
robertphillips7b05ff12015-06-19 14:14:54 -0700375 fDrawContext.reset(SkRef(fRenderTarget->getContext()->drawContext(&this->surfaceProps())));
kkinnunenabcfab42015-02-22 22:53:44 -0800376}
377
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000378///////////////////////////////////////////////////////////////////////////////
379
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000380void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -0800381 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -0700382 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPaint", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000383
384 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700385 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
386 return;
387 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000388
robertphillipsea461502015-05-26 11:38:03 -0700389 fDrawContext->drawPaint(fRenderTarget, fClip, grPaint, *draw.fMatrix);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000390}
391
392// must be in SkCanvas::PointMode order
393static const GrPrimitiveType gPointMode2PrimtiveType[] = {
394 kPoints_GrPrimitiveType,
395 kLines_GrPrimitiveType,
396 kLineStrip_GrPrimitiveType
397};
398
ethannicholas330bb952015-07-17 06:44:02 -0700399// suppress antialiasing on axis-aligned integer-coordinate lines
400static bool needs_antialiasing(SkCanvas::PointMode mode, size_t count, const SkPoint pts[]) {
401 if (mode == SkCanvas::PointMode::kPoints_PointMode) {
402 return false;
403 }
404 if (count == 2) {
405 // We do not antialias as long as the primary axis of the line is integer-aligned, even if
406 // the other coordinates are not. This does mean the two end pixels of the line will be
407 // sharp even when they shouldn't be, but turning antialiasing on (as things stand
408 // currently) means that the line will turn into a two-pixel-wide blur. While obviously a
409 // more complete fix is possible down the road, for the time being we accept the error on
410 // the two end pixels as being the lesser of two evils.
411 if (pts[0].fX == pts[1].fX) {
412 return ((int) pts[0].fX) != pts[0].fX;
413 }
414 if (pts[0].fY == pts[1].fY) {
415 return ((int) pts[0].fY) != pts[0].fY;
416 }
417 }
418 return true;
419}
420
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000421void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
422 size_t count, const SkPoint pts[], const SkPaint& paint) {
423 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800424 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000425
426 SkScalar width = paint.getStrokeWidth();
427 if (width < 0) {
428 return;
429 }
430
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000431 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) {
egdaniele61c4112014-06-12 10:24:21 -0700432 GrStrokeInfo strokeInfo(paint, SkPaint::kStroke_Style);
433 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700434 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true,
435 &grPaint)) {
436 return;
437 }
egdaniele61c4112014-06-12 10:24:21 -0700438 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700439 path.setIsVolatile(true);
egdaniele61c4112014-06-12 10:24:21 -0700440 path.moveTo(pts[0]);
441 path.lineTo(pts[1]);
robertphillipsea461502015-05-26 11:38:03 -0700442 fDrawContext->drawPath(fRenderTarget, fClip, grPaint, *draw.fMatrix, path, strokeInfo);
egdaniele61c4112014-06-12 10:24:21 -0700443 return;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000444 }
445
ethannicholas330bb952015-07-17 06:44:02 -0700446 // we only handle non-antialiased hairlines and paints without path effects or mask filters,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000447 // else we let the SkDraw call our drawPath()
ethannicholas330bb952015-07-17 06:44:02 -0700448 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter() ||
449 (paint.isAntiAlias() && needs_antialiasing(mode, count, pts))) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000450 draw.drawPoints(mode, count, pts, paint, true);
451 return;
452 }
453
454 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700455 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
456 return;
457 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000458
robertphillipsea461502015-05-26 11:38:03 -0700459 fDrawContext->drawVertices(fRenderTarget,
460 fClip,
461 grPaint,
462 *draw.fMatrix,
463 gPointMode2PrimtiveType[mode],
464 SkToS32(count),
465 (SkPoint*)pts,
466 NULL,
467 NULL,
468 NULL,
469 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000470}
471
472///////////////////////////////////////////////////////////////////////////////
473
474void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
475 const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -0700476 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRect", fContext);
477
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000478 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800479 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000480
481 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
482 SkScalar width = paint.getStrokeWidth();
483
484 /*
485 We have special code for hairline strokes, miter-strokes, bevel-stroke
486 and fills. Anything else we just call our path code.
487 */
488 bool usePath = doStroke && width > 0 &&
489 (paint.getStrokeJoin() == SkPaint::kRound_Join ||
490 (paint.getStrokeJoin() == SkPaint::kBevel_Join && rect.isEmpty()));
egdanield58a0ba2014-06-11 10:30:05 -0700491
robertphillipsd8aa59d2015-08-05 09:07:12 -0700492 // a few other reasons we might need to call drawPath...
493 if (paint.getMaskFilter() ||
494 paint.getStyle() == SkPaint::kStrokeAndFill_Style) { // we can't both stroke and fill rects
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000495 usePath = true;
496 }
egdanield58a0ba2014-06-11 10:30:05 -0700497
joshualitt5531d512014-12-17 15:50:11 -0800498 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000499 usePath = true;
500 }
501
egdanield58a0ba2014-06-11 10:30:05 -0700502 GrStrokeInfo strokeInfo(paint);
503
504 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700505 if (!usePath && pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700506 usePath = true;
507 }
508
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000509 if (usePath) {
510 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700511 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000512 path.addRect(rect);
513 this->drawPath(draw, path, paint, NULL, true);
514 return;
515 }
516
517 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700518 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
519 return;
520 }
Mike Klein744fb732014-06-23 15:13:26 -0400521
robertphillipsea461502015-05-26 11:38:03 -0700522 fDrawContext->drawRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, &strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000523}
524
525///////////////////////////////////////////////////////////////////////////////
526
527void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect,
joshualitt5531d512014-12-17 15:50:11 -0800528 const SkPaint& paint) {
egdanield78a1682014-07-09 10:41:26 -0700529 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRRect", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000530 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800531 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000532
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000533 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700534 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
535 return;
536 }
Mike Klein744fb732014-06-23 15:13:26 -0400537
egdanield58a0ba2014-06-11 10:30:05 -0700538 GrStrokeInfo strokeInfo(paint);
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000539 if (paint.getMaskFilter()) {
540 // try to hit the fast path for drawing filtered round rects
541
542 SkRRect devRRect;
joshualitt5531d512014-12-17 15:50:11 -0800543 if (rect.transform(*draw.fMatrix, &devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000544 if (devRRect.allCornersCircular()) {
545 SkRect maskRect;
546 if (paint.getMaskFilter()->canFilterMaskGPU(devRRect.rect(),
joshualitt5531d512014-12-17 15:50:11 -0800547 draw.fClip->getBounds(),
548 *draw.fMatrix,
549 &maskRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000550 SkIRect finalIRect;
551 maskRect.roundOut(&finalIRect);
552 if (draw.fClip->quickReject(finalIRect)) {
553 // clipped out
554 return;
555 }
robertphillipsff0ca5e2015-07-22 11:54:44 -0700556 if (paint.getMaskFilter()->directFilterRRectMaskGPU(fContext->textureProvider(),
557 fDrawContext,
joshualitt25d9c152015-02-18 12:29:52 -0800558 fRenderTarget,
559 &grPaint,
joshualitt570d2f82015-02-25 13:19:48 -0800560 fClip,
joshualitt5531d512014-12-17 15:50:11 -0800561 *draw.fMatrix,
kkinnunend156d362015-05-18 22:23:54 -0700562 strokeInfo,
egdanield58a0ba2014-06-11 10:30:05 -0700563 devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000564 return;
565 }
566 }
567
568 }
569 }
570
571 }
572
egdanield58a0ba2014-06-11 10:30:05 -0700573 bool usePath = false;
574
575 if (paint.getMaskFilter()) {
576 usePath = true;
577 } else {
578 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700579 if (pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700580 usePath = true;
581 }
582 }
583
584
585 if (usePath) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000586 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700587 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000588 path.addRRect(rect);
589 this->drawPath(draw, path, paint, NULL, true);
590 return;
591 }
Mike Klein744fb732014-06-23 15:13:26 -0400592
robertphillipsea461502015-05-26 11:38:03 -0700593 fDrawContext->drawRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000594}
595
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000596void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer,
joshualitt5531d512014-12-17 15:50:11 -0800597 const SkRRect& inner, const SkPaint& paint) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000598 SkStrokeRec stroke(paint);
599 if (stroke.isFillStyle()) {
600
601 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800602 CHECK_SHOULD_DRAW(draw);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000603
604 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700605 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true,
606 &grPaint)) {
607 return;
608 }
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000609
610 if (NULL == paint.getMaskFilter() && NULL == paint.getPathEffect()) {
robertphillipsea461502015-05-26 11:38:03 -0700611 fDrawContext->drawDRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, outer, inner);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000612 return;
613 }
614 }
615
616 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700617 path.setIsVolatile(true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000618 path.addRRect(outer);
619 path.addRRect(inner);
620 path.setFillType(SkPath::kEvenOdd_FillType);
621
622 this->drawPath(draw, path, paint, NULL, true);
623}
624
625
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000626/////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000627
628void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval,
629 const SkPaint& paint) {
egdanield78a1682014-07-09 10:41:26 -0700630 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawOval", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000631 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800632 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000633
egdanield58a0ba2014-06-11 10:30:05 -0700634 GrStrokeInfo strokeInfo(paint);
635
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000636 bool usePath = false;
637 // some basic reasons we might need to call drawPath...
egdanield58a0ba2014-06-11 10:30:05 -0700638 if (paint.getMaskFilter()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000639 usePath = true;
egdanield58a0ba2014-06-11 10:30:05 -0700640 } else {
641 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700642 if (pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700643 usePath = true;
644 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000645 }
646
647 if (usePath) {
648 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700649 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000650 path.addOval(oval);
651 this->drawPath(draw, path, paint, NULL, true);
652 return;
653 }
654
655 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -0700656 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
657 return;
658 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000659
robertphillipsea461502015-05-26 11:38:03 -0700660 fDrawContext->drawOval(fRenderTarget, fClip, grPaint, *draw.fMatrix, oval, strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000661}
662
663#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000664
665///////////////////////////////////////////////////////////////////////////////
666
robertphillipsccb1b572015-05-27 11:02:55 -0700667static SkBitmap wrap_texture(GrTexture* texture, int width, int height) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000668 SkBitmap result;
senorblancod0d37ca2015-04-02 04:54:56 -0700669 result.setInfo(SkImageInfo::MakeN32Premul(width, height));
reed6c225732014-06-09 19:52:07 -0700670 result.setPixelRef(SkNEW_ARGS(SkGrPixelRef, (result.info(), texture)))->unref();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000671 return result;
672}
673
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000674void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
675 const SkPaint& paint, const SkMatrix* prePathMatrix,
676 bool pathIsMutable) {
677 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800678 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -0700679 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPath", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000680
robertphillipsccb1b572015-05-27 11:02:55 -0700681 GrBlurUtils::drawPathWithMaskFilter(fContext, fDrawContext, fRenderTarget,
682 fClip, origSrcPath, paint,
683 *draw.fMatrix, prePathMatrix,
684 draw.fClip->getBounds(), pathIsMutable);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000685}
686
687static const int kBmpSmallTileSize = 1 << 10;
688
689static inline int get_tile_count(const SkIRect& srcRect, int tileSize) {
690 int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1;
691 int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1;
692 return tilesX * tilesY;
693}
694
695static int determine_tile_size(const SkBitmap& bitmap, const SkIRect& src, int maxTileSize) {
696 if (maxTileSize <= kBmpSmallTileSize) {
697 return maxTileSize;
698 }
699
700 size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize);
701 size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize);
702
703 maxTileTotalTileSize *= maxTileSize * maxTileSize;
704 smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize;
705
706 if (maxTileTotalTileSize > 2 * smallTotalTileSize) {
707 return kBmpSmallTileSize;
708 } else {
709 return maxTileSize;
710 }
711}
712
713// Given a bitmap, an optional src rect, and a context with a clip and matrix determine what
714// pixels from the bitmap are necessary.
bsalomon74f681d2015-06-23 14:38:48 -0700715static void determine_clipped_src_rect(const GrRenderTarget* rt,
joshualitt570d2f82015-02-25 13:19:48 -0800716 const GrClip& clip,
joshualitt5531d512014-12-17 15:50:11 -0800717 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000718 const SkBitmap& bitmap,
719 const SkRect* srcRectPtr,
720 SkIRect* clippedSrcIRect) {
joshualitt570d2f82015-02-25 13:19:48 -0800721 clip.getConservativeBounds(rt, clippedSrcIRect, NULL);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000722 SkMatrix inv;
joshualitt5531d512014-12-17 15:50:11 -0800723 if (!viewMatrix.invert(&inv)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000724 clippedSrcIRect->setEmpty();
725 return;
726 }
727 SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect);
728 inv.mapRect(&clippedSrcRect);
bsalomon49f085d2014-09-05 13:34:00 -0700729 if (srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000730 // we've setup src space 0,0 to map to the top left of the src rect.
731 clippedSrcRect.offset(srcRectPtr->fLeft, srcRectPtr->fTop);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000732 if (!clippedSrcRect.intersect(*srcRectPtr)) {
733 clippedSrcIRect->setEmpty();
734 return;
735 }
736 }
737 clippedSrcRect.roundOut(clippedSrcIRect);
738 SkIRect bmpBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height());
739 if (!clippedSrcIRect->intersect(bmpBounds)) {
740 clippedSrcIRect->setEmpty();
741 }
742}
743
744bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800745 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000746 const GrTextureParams& params,
747 const SkRect* srcRectPtr,
748 int maxTileSize,
749 int* tileSize,
750 SkIRect* clippedSrcRect) const {
751 // if bitmap is explictly texture backed then just use the texture
bsalomon49f085d2014-09-05 13:34:00 -0700752 if (bitmap.getTexture()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000753 return false;
754 }
755
756 // if it's larger than the max tile size, then we have no choice but tiling.
757 if (bitmap.width() > maxTileSize || bitmap.height() > maxTileSize) {
bsalomon74f681d2015-06-23 14:38:48 -0700758 determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, bitmap,
joshualitt570d2f82015-02-25 13:19:48 -0800759 srcRectPtr, clippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000760 *tileSize = determine_tile_size(bitmap, *clippedSrcRect, maxTileSize);
761 return true;
762 }
763
764 if (bitmap.width() * bitmap.height() < 4 * kBmpSmallTileSize * kBmpSmallTileSize) {
765 return false;
766 }
767
768 // if the entire texture is already in our cache then no reason to tile it
769 if (GrIsBitmapInCache(fContext, bitmap, &params)) {
770 return false;
771 }
772
773 // At this point we know we could do the draw by uploading the entire bitmap
774 // as a texture. However, if the texture would be large compared to the
775 // cache size and we don't require most of it for this draw then tile to
776 // reduce the amount of upload and cache spill.
777
778 // assumption here is that sw bitmap size is a good proxy for its size as
779 // a texture
780 size_t bmpSize = bitmap.getSize();
781 size_t cacheSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000782 fContext->getResourceCacheLimits(NULL, &cacheSize);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000783 if (bmpSize < cacheSize / 2) {
784 return false;
785 }
786
787 // Figure out how much of the src we will need based on the src rect and clipping.
bsalomon74f681d2015-06-23 14:38:48 -0700788 determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, bitmap, srcRectPtr,
joshualitt25d9c152015-02-18 12:29:52 -0800789 clippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000790 *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile.
791 size_t usedTileBytes = get_tile_count(*clippedSrcRect, kBmpSmallTileSize) *
792 kBmpSmallTileSize * kBmpSmallTileSize;
793
794 return usedTileBytes < 2 * bmpSize;
795}
796
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000797void SkGpuDevice::drawBitmap(const SkDraw& origDraw,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000798 const SkBitmap& bitmap,
799 const SkMatrix& m,
800 const SkPaint& paint) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000801 SkMatrix concat;
802 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
803 if (!m.isIdentity()) {
804 concat.setConcat(*draw->fMatrix, m);
805 draw.writable()->fMatrix = &concat;
806 }
reeda5517e22015-07-14 10:54:12 -0700807 this->drawBitmapCommon(*draw, bitmap, NULL, NULL, paint, SkCanvas::kStrict_SrcRectConstraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000808}
809
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000810// This method outsets 'iRect' by 'outset' all around and then clamps its extents to
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000811// 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner
812// of 'iRect' for all possible outsets/clamps.
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000813static inline void clamped_outset_with_offset(SkIRect* iRect,
814 int outset,
815 SkPoint* offset,
816 const SkIRect& clamp) {
817 iRect->outset(outset, outset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000818
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000819 int leftClampDelta = clamp.fLeft - iRect->fLeft;
820 if (leftClampDelta > 0) {
821 offset->fX -= outset - leftClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000822 iRect->fLeft = clamp.fLeft;
823 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000824 offset->fX -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000825 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000826
827 int topClampDelta = clamp.fTop - iRect->fTop;
828 if (topClampDelta > 0) {
829 offset->fY -= outset - topClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000830 iRect->fTop = clamp.fTop;
831 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000832 offset->fY -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000833 }
834
835 if (iRect->fRight > clamp.fRight) {
836 iRect->fRight = clamp.fRight;
837 }
838 if (iRect->fBottom > clamp.fBottom) {
839 iRect->fBottom = clamp.fBottom;
840 }
841}
842
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000843static bool has_aligned_samples(const SkRect& srcRect,
844 const SkRect& transformedRect) {
845 // detect pixel disalignment
846 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
847 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
848 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
849 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
850 SkScalarAbs(transformedRect.width() - srcRect.width()) <
851 COLOR_BLEED_TOLERANCE &&
852 SkScalarAbs(transformedRect.height() - srcRect.height()) <
853 COLOR_BLEED_TOLERANCE) {
854 return true;
855 }
856 return false;
857}
858
859static bool may_color_bleed(const SkRect& srcRect,
860 const SkRect& transformedRect,
robertphillips1accc4c2015-07-20 10:22:29 -0700861 const SkMatrix& m,
862 bool isMSAA) {
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000863 // Only gets called if has_aligned_samples returned false.
864 // So we can assume that sampling is axis aligned but not texel aligned.
865 SkASSERT(!has_aligned_samples(srcRect, transformedRect));
866 SkRect innerSrcRect(srcRect), innerTransformedRect,
867 outerTransformedRect(transformedRect);
robertphillips1accc4c2015-07-20 10:22:29 -0700868 if (isMSAA) {
869 innerSrcRect.inset(SK_Scalar1, SK_Scalar1);
870 } else {
871 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
872 }
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000873 m.mapRect(&innerTransformedRect, innerSrcRect);
874
875 // The gap between outerTransformedRect and innerTransformedRect
876 // represents the projection of the source border area, which is
877 // problematic for color bleeding. We must check whether any
878 // destination pixels sample the border area.
879 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
880 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
881 SkIRect outer, inner;
882 outerTransformedRect.round(&outer);
883 innerTransformedRect.round(&inner);
884 // If the inner and outer rects round to the same result, it means the
885 // border does not overlap any pixel centers. Yay!
886 return inner != outer;
887}
888
889static bool needs_texture_domain(const SkBitmap& bitmap,
890 const SkRect& srcRect,
891 GrTextureParams &params,
892 const SkMatrix& contextMatrix,
robertphillips1accc4c2015-07-20 10:22:29 -0700893 bool bicubic,
894 bool isMSAA) {
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000895 bool needsTextureDomain = false;
senorblancod0d37ca2015-04-02 04:54:56 -0700896 GrTexture* tex = bitmap.getTexture();
897 int width = tex ? tex->width() : bitmap.width();
898 int height = tex ? tex->height() : bitmap.height();
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000899
900 if (bicubic || params.filterMode() != GrTextureParams::kNone_FilterMode) {
901 // Need texture domain if drawing a sub rect
senorblancod0d37ca2015-04-02 04:54:56 -0700902 needsTextureDomain = srcRect.width() < width ||
903 srcRect.height() < height;
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000904 if (!bicubic && needsTextureDomain && contextMatrix.rectStaysRect()) {
905 // sampling is axis-aligned
906 SkRect transformedRect;
907 contextMatrix.mapRect(&transformedRect, srcRect);
908
909 if (has_aligned_samples(srcRect, transformedRect)) {
910 params.setFilterMode(GrTextureParams::kNone_FilterMode);
911 needsTextureDomain = false;
912 } else {
robertphillips1accc4c2015-07-20 10:22:29 -0700913 needsTextureDomain = may_color_bleed(srcRect, transformedRect,
914 contextMatrix, isMSAA);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000915 }
916 }
917 }
918 return needsTextureDomain;
919}
920
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000921void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
922 const SkBitmap& bitmap,
923 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000924 const SkSize* dstSizePtr,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000925 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -0700926 SkCanvas::SrcRectConstraint constraint) {
joshualitt5531d512014-12-17 15:50:11 -0800927 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000928
929 SkRect srcRect;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000930 SkSize dstSize;
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000931 // If there is no src rect, or the src rect contains the entire bitmap then we're effectively
932 // in the (easier) bleed case, so update flags.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000933 if (NULL == srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000934 SkScalar w = SkIntToScalar(bitmap.width());
935 SkScalar h = SkIntToScalar(bitmap.height());
936 dstSize.fWidth = w;
937 dstSize.fHeight = h;
938 srcRect.set(0, 0, w, h);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000939 } else {
bsalomon49f085d2014-09-05 13:34:00 -0700940 SkASSERT(dstSizePtr);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000941 srcRect = *srcRectPtr;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000942 dstSize = *dstSizePtr;
senorblancod0d37ca2015-04-02 04:54:56 -0700943 }
944 GrTexture* tex = bitmap.getTexture();
945 int width = tex ? tex->width() : bitmap.width();
946 int height = tex ? tex->height() : bitmap.height();
947 if (srcRect.fLeft <= 0 && srcRect.fTop <= 0 &&
948 srcRect.fRight >= width && srcRect.fBottom >= height) {
reeda5517e22015-07-14 10:54:12 -0700949 constraint = SkCanvas::kFast_SrcRectConstraint;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000950 }
951
derekf367e1862014-12-02 11:02:06 -0800952 // If the render target is not msaa and draw is antialiased, we call
953 // drawRect instead of drawing on the render target directly.
954 // FIXME: the tiled bitmap code path doesn't currently support
955 // anti-aliased edges, we work around that for now by drawing directly
956 // if the image size exceeds maximum texture size.
bsalomon76228632015-05-29 08:02:10 -0700957 int maxTextureSize = fContext->caps()->maxTextureSize();
vbuzinovdded6962015-06-12 08:59:45 -0700958 bool directDraw = fRenderTarget->isUnifiedMultisampled() ||
derekf367e1862014-12-02 11:02:06 -0800959 !paint.isAntiAlias() ||
960 bitmap.width() > maxTextureSize ||
961 bitmap.height() > maxTextureSize;
962
963 // we check whether dst rect are pixel aligned
964 if (!directDraw) {
joshualitt5531d512014-12-17 15:50:11 -0800965 bool staysRect = draw.fMatrix->rectStaysRect();
derekf367e1862014-12-02 11:02:06 -0800966
967 if (staysRect) {
968 SkRect rect;
969 SkRect dstRect = SkRect::MakeXYWH(0, 0, dstSize.fWidth, dstSize.fHeight);
joshualitt5531d512014-12-17 15:50:11 -0800970 draw.fMatrix->mapRect(&rect, dstRect);
derekf367e1862014-12-02 11:02:06 -0800971 const SkScalar *scalars = rect.asScalars();
972 bool isDstPixelAligned = true;
973 for (int i = 0; i < 4; i++) {
974 if (!SkScalarIsInt(scalars[i])) {
975 isDstPixelAligned = false;
976 break;
977 }
978 }
979
980 if (isDstPixelAligned)
981 directDraw = true;
982 }
983 }
984
985 if (paint.getMaskFilter() || !directDraw) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000986 // Convert the bitmap to a shader so that the rect can be drawn
987 // through drawRect, which supports mask filters.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000988 SkBitmap tmp; // subset of bitmap, if necessary
989 const SkBitmap* bitmapPtr = &bitmap;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000990 SkMatrix localM;
bsalomon49f085d2014-09-05 13:34:00 -0700991 if (srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000992 localM.setTranslate(-srcRectPtr->fLeft, -srcRectPtr->fTop);
993 localM.postScale(dstSize.fWidth / srcRectPtr->width(),
994 dstSize.fHeight / srcRectPtr->height());
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +0000995 // In bleed mode we position and trim the bitmap based on the src rect which is
996 // already accounted for in 'm' and 'srcRect'. In clamp mode we need to chop out
997 // the desired portion of the bitmap and then update 'm' and 'srcRect' to
998 // compensate.
reeda5517e22015-07-14 10:54:12 -0700999 if (SkCanvas::kStrict_SrcRectConstraint == constraint) {
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001000 SkIRect iSrc;
1001 srcRect.roundOut(&iSrc);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001002
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001003 SkPoint offset = SkPoint::Make(SkIntToScalar(iSrc.fLeft),
1004 SkIntToScalar(iSrc.fTop));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001005
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001006 if (!bitmap.extractSubset(&tmp, iSrc)) {
1007 return; // extraction failed
1008 }
1009 bitmapPtr = &tmp;
1010 srcRect.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001011
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001012 // The source rect has changed so update the matrix
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001013 localM.preTranslate(offset.fX, offset.fY);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001014 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001015 } else {
1016 localM.reset();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001017 }
1018
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001019 SkPaint paintWithShader(paint);
1020 paintWithShader.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +00001021 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode, &localM))->unref();
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001022 SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight};
1023 this->drawRect(draw, dstRect, paintWithShader);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001024
1025 return;
1026 }
1027
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001028 // If there is no mask filter than it is OK to handle the src rect -> dst rect scaling using
1029 // the view matrix rather than a local matrix.
1030 SkMatrix m;
1031 m.setScale(dstSize.fWidth / srcRect.width(),
1032 dstSize.fHeight / srcRect.height());
joshualitt5531d512014-12-17 15:50:11 -08001033 SkMatrix viewM = *draw.fMatrix;
1034 viewM.preConcat(m);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001035
1036 GrTextureParams params;
joshualitt9bc39542015-08-12 12:57:54 -07001037 bool doBicubic;
1038 GrTextureParams::FilterMode textureFilterMode =
1039 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewM, SkMatrix::I(),
1040 &doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001041
commit-bot@chromium.org9927bd32014-05-20 17:51:13 +00001042 int tileFilterPad;
1043 if (doBicubic) {
1044 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
1045 } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) {
1046 tileFilterPad = 0;
1047 } else {
1048 tileFilterPad = 1;
1049 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001050 params.setFilterMode(textureFilterMode);
1051
bsalomon76228632015-05-29 08:02:10 -07001052 int maxTileSize = fContext->caps()->maxTextureSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001053 int tileSize;
1054
1055 SkIRect clippedSrcRect;
joshualitt5531d512014-12-17 15:50:11 -08001056 if (this->shouldTileBitmap(bitmap, viewM, params, srcRectPtr, maxTileSize, &tileSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001057 &clippedSrcRect)) {
reeda5517e22015-07-14 10:54:12 -07001058 this->drawTiledBitmap(bitmap, viewM, srcRect, clippedSrcRect, params, paint, constraint,
joshualitt5531d512014-12-17 15:50:11 -08001059 tileSize, doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001060 } else {
1061 // take the simple case
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001062 bool needsTextureDomain = needs_texture_domain(bitmap,
1063 srcRect,
1064 params,
joshualitt5531d512014-12-17 15:50:11 -08001065 viewM,
robertphillips1accc4c2015-07-20 10:22:29 -07001066 doBicubic,
1067 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001068 this->internalDrawBitmap(bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001069 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001070 srcRect,
1071 params,
1072 paint,
reeda5517e22015-07-14 10:54:12 -07001073 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001074 doBicubic,
1075 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001076 }
1077}
1078
1079// Break 'bitmap' into several tiles to draw it since it has already
1080// been determined to be too large to fit in VRAM
1081void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001082 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001083 const SkRect& srcRect,
1084 const SkIRect& clippedSrcIRect,
1085 const GrTextureParams& params,
1086 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001087 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001088 int tileSize,
1089 bool bicubic) {
commit-bot@chromium.org9d5e3f12014-05-01 21:23:19 +00001090 // The following pixel lock is technically redundant, but it is desirable
1091 // to lock outside of the tile loop to prevent redecoding the whole image
1092 // at each tile in cases where 'bitmap' holds an SkDiscardablePixelRef that
1093 // is larger than the limit of the discardable memory pool.
1094 SkAutoLockPixels alp(bitmap);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001095 SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect);
1096
1097 int nx = bitmap.width() / tileSize;
1098 int ny = bitmap.height() / tileSize;
1099 for (int x = 0; x <= nx; x++) {
1100 for (int y = 0; y <= ny; y++) {
1101 SkRect tileR;
1102 tileR.set(SkIntToScalar(x * tileSize),
1103 SkIntToScalar(y * tileSize),
1104 SkIntToScalar((x + 1) * tileSize),
1105 SkIntToScalar((y + 1) * tileSize));
1106
1107 if (!SkRect::Intersects(tileR, clippedSrcRect)) {
1108 continue;
1109 }
1110
1111 if (!tileR.intersect(srcRect)) {
1112 continue;
1113 }
1114
1115 SkBitmap tmpB;
1116 SkIRect iTileR;
1117 tileR.roundOut(&iTileR);
1118 SkPoint offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft),
1119 SkIntToScalar(iTileR.fTop));
1120
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001121 // Adjust the context matrix to draw at the right x,y in device space
joshualitt5531d512014-12-17 15:50:11 -08001122 SkMatrix viewM = viewMatrix;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001123 SkMatrix tmpM;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001124 tmpM.setTranslate(offset.fX - srcRect.fLeft, offset.fY - srcRect.fTop);
joshualitt5531d512014-12-17 15:50:11 -08001125 viewM.preConcat(tmpM);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001126
robertphillipsec8bb942014-11-21 10:16:25 -08001127 if (GrTextureParams::kNone_FilterMode != params.filterMode() || bicubic) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001128 SkIRect iClampRect;
1129
reeda5517e22015-07-14 10:54:12 -07001130 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001131 // In bleed mode we want to always expand the tile on all edges
1132 // but stay within the bitmap bounds
1133 iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height());
1134 } else {
1135 // In texture-domain/clamp mode we only want to expand the
1136 // tile on edges interior to "srcRect" (i.e., we want to
1137 // not bleed across the original clamped edges)
1138 srcRect.roundOut(&iClampRect);
1139 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001140 int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1;
1141 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001142 }
1143
1144 if (bitmap.extractSubset(&tmpB, iTileR)) {
1145 // now offset it to make it "local" to our tmp bitmap
1146 tileR.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001147 GrTextureParams paramsTemp = params;
robertphillips1accc4c2015-07-20 10:22:29 -07001148 bool needsTextureDomain = needs_texture_domain(
1149 bitmap, srcRect, paramsTemp,
1150 viewM, bicubic,
1151 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001152 this->internalDrawBitmap(tmpB,
joshualitt5531d512014-12-17 15:50:11 -08001153 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001154 tileR,
1155 paramsTemp,
1156 paint,
reeda5517e22015-07-14 10:54:12 -07001157 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001158 bicubic,
1159 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001160 }
1161 }
1162 }
1163}
1164
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001165
1166/*
1167 * This is called by drawBitmap(), which has to handle images that may be too
1168 * large to be represented by a single texture.
1169 *
1170 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1171 * and that non-texture portion of the GrPaint has already been setup.
1172 */
1173void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001174 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001175 const SkRect& srcRect,
1176 const GrTextureParams& params,
1177 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001178 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001179 bool bicubic,
1180 bool needsTextureDomain) {
bsalomon76228632015-05-29 08:02:10 -07001181 SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() &&
1182 bitmap.height() <= fContext->caps()->maxTextureSize());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001183
1184 GrTexture* texture;
bsalomonbcf0a522014-10-08 08:40:09 -07001185 AutoBitmapTexture abt(fContext, bitmap, &params, &texture);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001186 if (NULL == texture) {
1187 return;
1188 }
1189
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001190 SkRect dstRect = {0, 0, srcRect.width(), srcRect.height() };
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001191 SkRect paintRect;
1192 SkScalar wInv = SkScalarInvert(SkIntToScalar(texture->width()));
1193 SkScalar hInv = SkScalarInvert(SkIntToScalar(texture->height()));
1194 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1195 SkScalarMul(srcRect.fTop, hInv),
1196 SkScalarMul(srcRect.fRight, wInv),
1197 SkScalarMul(srcRect.fBottom, hInv));
1198
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001199 SkRect textureDomain = SkRect::MakeEmpty();
joshualitt5f10b5c2015-07-09 10:24:35 -07001200
1201 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
1202 // the rest from the SkPaint.
1203 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001204 SkAutoTUnref<GrFragmentProcessor> fp;
joshualitt5f10b5c2015-07-09 10:24:35 -07001205
reeda5517e22015-07-14 10:54:12 -07001206 if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001207 // Use a constrained texture domain to avoid color bleeding
1208 SkScalar left, top, right, bottom;
1209 if (srcRect.width() > SK_Scalar1) {
1210 SkScalar border = SK_ScalarHalf / texture->width();
1211 left = paintRect.left() + border;
1212 right = paintRect.right() - border;
1213 } else {
1214 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
1215 }
1216 if (srcRect.height() > SK_Scalar1) {
1217 SkScalar border = SK_ScalarHalf / texture->height();
1218 top = paintRect.top() + border;
1219 bottom = paintRect.bottom() - border;
1220 } else {
1221 top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom());
1222 }
1223 textureDomain.setLTRB(left, top, right, bottom);
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001224 if (bicubic) {
joshualitt5f10b5c2015-07-09 10:24:35 -07001225 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture,
1226 SkMatrix::I(), textureDomain));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001227 } else {
joshualitt5f10b5c2015-07-09 10:24:35 -07001228 fp.reset(GrTextureDomainEffect::Create(grPaint.getProcessorDataManager(),
1229 texture,
joshualitt5531d512014-12-17 15:50:11 -08001230 SkMatrix::I(),
1231 textureDomain,
1232 GrTextureDomain::kClamp_Mode,
1233 params.filterMode()));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001234 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001235 } else if (bicubic) {
commit-bot@chromium.orgbc91fd72013-12-10 12:53:39 +00001236 SkASSERT(GrTextureParams::kNone_FilterMode == params.filterMode());
1237 SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() };
joshualitt5f10b5c2015-07-09 10:24:35 -07001238 fp.reset(GrBicubicEffect::Create(grPaint.getProcessorDataManager(), texture, SkMatrix::I(),
1239 tileModes));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001240 } else {
joshualitt5f10b5c2015-07-09 10:24:35 -07001241 fp.reset(GrSimpleTextureEffect::Create(grPaint.getProcessorDataManager(), texture,
1242 SkMatrix::I(), params));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001243 }
1244
joshualittb0a8a372014-09-23 09:50:21 -07001245 grPaint.addColorProcessor(fp);
reed0689d7b2014-06-14 05:30:20 -07001246 bool alphaOnly = !(kAlpha_8_SkColorType == bitmap.colorType());
bsalomon83d081a2014-07-08 09:56:10 -07001247 GrColor paintColor = (alphaOnly) ? SkColor2GrColorJustAlpha(paint.getColor()) :
1248 SkColor2GrColor(paint.getColor());
bsalomonbed83a62015-04-15 14:18:34 -07001249 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint, paintColor, false,
1250 &grPaint)) {
1251 return;
1252 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001253
robertphillipsea461502015-05-26 11:38:03 -07001254 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, viewMatrix, dstRect,
1255 paintRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001256}
1257
fmalita2d97bc12014-11-20 10:44:58 -08001258bool SkGpuDevice::filterTexture(GrContext* context, GrTexture* texture,
senorblancod0d37ca2015-04-02 04:54:56 -07001259 int width, int height,
fmalita2d97bc12014-11-20 10:44:58 -08001260 const SkImageFilter* filter,
1261 const SkImageFilter::Context& ctx,
1262 SkBitmap* result, SkIPoint* offset) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001263 SkASSERT(filter);
fmalita2d97bc12014-11-20 10:44:58 -08001264
robertphillipsefbffed2015-06-22 12:06:08 -07001265 SkImageFilter::Proxy proxy(this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001266
1267 if (filter->canFilterImageGPU()) {
senorblancod0d37ca2015-04-02 04:54:56 -07001268 return filter->filterImageGPU(&proxy, wrap_texture(texture, width, height),
1269 ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001270 } else {
1271 return false;
1272 }
1273}
1274
1275void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1276 int left, int top, const SkPaint& paint) {
1277 // drawSprite is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001278 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001279
1280 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
1281 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1282 return;
1283 }
1284
1285 int w = bitmap.width();
1286 int h = bitmap.height();
1287
1288 GrTexture* texture;
1289 // draw sprite uses the default texture params
bsalomonbcf0a522014-10-08 08:40:09 -07001290 AutoBitmapTexture abt(fContext, bitmap, NULL, &texture);
joshualitt5f5a8d72015-02-25 14:09:45 -08001291 if (!texture) {
1292 return;
1293 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001294
1295 SkImageFilter* filter = paint.getImageFilter();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001296 // This bitmap will own the filtered result as a texture.
1297 SkBitmap filteredBitmap;
1298
bsalomon49f085d2014-09-05 13:34:00 -07001299 if (filter) {
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001300 SkIPoint offset = SkIPoint::Make(0, 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001301 SkMatrix matrix(*draw.fMatrix);
1302 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001303 SkIRect clipBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height());
senorblancobe129b22014-08-08 07:14:35 -07001304 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
senorblanco55b6d8b2014-07-30 11:26:46 -07001305 // This cache is transient, and is freed (along with all its contained
1306 // textures) when it goes out of scope.
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001307 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001308 if (this->filterTexture(fContext, texture, w, h, filter, ctx, &filteredBitmap,
fmalita2d97bc12014-11-20 10:44:58 -08001309 &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001310 texture = (GrTexture*) filteredBitmap.getTexture();
1311 w = filteredBitmap.width();
1312 h = filteredBitmap.height();
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001313 left += offset.x();
1314 top += offset.y();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001315 } else {
1316 return;
1317 }
1318 }
1319
1320 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001321 grPaint.addColorTextureProcessor(texture, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001322
bsalomonbed83a62015-04-15 14:18:34 -07001323 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1324 SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) {
1325 return;
1326 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001327
robertphillipsea461502015-05-26 11:38:03 -07001328 fDrawContext->drawNonAARectToRect(fRenderTarget,
1329 fClip,
1330 grPaint,
1331 SkMatrix::I(),
1332 SkRect::MakeXYWH(SkIntToScalar(left),
1333 SkIntToScalar(top),
1334 SkIntToScalar(w),
1335 SkIntToScalar(h)),
1336 SkRect::MakeXYWH(0,
1337 0,
1338 SK_Scalar1 * w / texture->width(),
1339 SK_Scalar1 * h / texture->height()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001340}
1341
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001342void SkGpuDevice::drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001343 const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -07001344 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001345 SkMatrix matrix;
1346 SkRect bitmapBounds, tmpSrc;
1347
1348 bitmapBounds.set(0, 0,
1349 SkIntToScalar(bitmap.width()),
1350 SkIntToScalar(bitmap.height()));
1351
1352 // Compute matrix from the two rectangles
bsalomon49f085d2014-09-05 13:34:00 -07001353 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001354 tmpSrc = *src;
1355 } else {
1356 tmpSrc = bitmapBounds;
1357 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001358
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001359 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1360
1361 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
bsalomon49f085d2014-09-05 13:34:00 -07001362 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001363 if (!bitmapBounds.contains(tmpSrc)) {
1364 if (!tmpSrc.intersect(bitmapBounds)) {
1365 return; // nothing to draw
1366 }
1367 }
1368 }
1369
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001370 SkRect tmpDst;
1371 matrix.mapRect(&tmpDst, tmpSrc);
1372
1373 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
1374 if (0 != tmpDst.fLeft || 0 != tmpDst.fTop) {
1375 // Translate so that tempDst's top left is at the origin.
1376 matrix = *origDraw.fMatrix;
1377 matrix.preTranslate(tmpDst.fLeft, tmpDst.fTop);
1378 draw.writable()->fMatrix = &matrix;
1379 }
1380 SkSize dstSize;
1381 dstSize.fWidth = tmpDst.width();
1382 dstSize.fHeight = tmpDst.height();
1383
reeda5517e22015-07-14 10:54:12 -07001384 this->drawBitmapCommon(*draw, bitmap, &tmpSrc, &dstSize, paint, constraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001385}
1386
1387void SkGpuDevice::drawDevice(const SkDraw& draw, SkBaseDevice* device,
1388 int x, int y, const SkPaint& paint) {
1389 // clear of the source device must occur before CHECK_SHOULD_DRAW
egdanield78a1682014-07-09 10:41:26 -07001390 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawDevice", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001391 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
kkinnunen2e4414e2015-02-19 07:20:40 -08001392
1393 // TODO: If the source device covers the whole of this device, we could
1394 // omit fNeedsClear -related flushing.
1395 // TODO: if source needs clear, we could maybe omit the draw fully.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001396
1397 // drawDevice is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001398 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001399
1400 GrRenderTarget* devRT = dev->accessRenderTarget();
1401 GrTexture* devTex;
1402 if (NULL == (devTex = devRT->asTexture())) {
1403 return;
1404 }
1405
robertphillips7b9e8a42014-12-11 08:20:31 -08001406 const SkImageInfo ii = dev->imageInfo();
1407 int w = ii.width();
1408 int h = ii.height();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001409
1410 SkImageFilter* filter = paint.getImageFilter();
1411 // This bitmap will own the filtered result as a texture.
1412 SkBitmap filteredBitmap;
1413
bsalomon49f085d2014-09-05 13:34:00 -07001414 if (filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001415 SkIPoint offset = SkIPoint::Make(0, 0);
1416 SkMatrix matrix(*draw.fMatrix);
1417 matrix.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001418 SkIRect clipBounds = SkIRect::MakeWH(devTex->width(), devTex->height());
senorblanco55b6d8b2014-07-30 11:26:46 -07001419 // This cache is transient, and is freed (along with all its contained
1420 // textures) when it goes out of scope.
senorblancobe129b22014-08-08 07:14:35 -07001421 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001422 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001423 if (this->filterTexture(fContext, devTex, device->width(), device->height(),
1424 filter, ctx, &filteredBitmap, &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001425 devTex = filteredBitmap.getTexture();
1426 w = filteredBitmap.width();
1427 h = filteredBitmap.height();
1428 x += offset.fX;
1429 y += offset.fY;
1430 } else {
1431 return;
1432 }
1433 }
1434
1435 GrPaint grPaint;
joshualittb0a8a372014-09-23 09:50:21 -07001436 grPaint.addColorTextureProcessor(devTex, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001437
bsalomonbed83a62015-04-15 14:18:34 -07001438 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1439 SkColor2GrColorJustAlpha(paint.getColor()), false, &grPaint)) {
1440 return;
1441 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001442
1443 SkRect dstRect = SkRect::MakeXYWH(SkIntToScalar(x),
1444 SkIntToScalar(y),
1445 SkIntToScalar(w),
1446 SkIntToScalar(h));
1447
1448 // The device being drawn may not fill up its texture (e.g. saveLayer uses approximate
1449 // scratch texture).
1450 SkRect srcRect = SkRect::MakeWH(SK_Scalar1 * w / devTex->width(),
1451 SK_Scalar1 * h / devTex->height());
1452
robertphillipsea461502015-05-26 11:38:03 -07001453 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, SkMatrix::I(), dstRect,
1454 srcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001455}
1456
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001457bool SkGpuDevice::canHandleImageFilter(const SkImageFilter* filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001458 return filter->canFilterImageGPU();
1459}
1460
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001461bool SkGpuDevice::filterImage(const SkImageFilter* filter, const SkBitmap& src,
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001462 const SkImageFilter::Context& ctx,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001463 SkBitmap* result, SkIPoint* offset) {
1464 // want explicitly our impl, so guard against a subclass of us overriding it
1465 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
1466 return false;
1467 }
1468
1469 SkAutoLockPixels alp(src, !src.getTexture());
1470 if (!src.getTexture() && !src.readyToDraw()) {
1471 return false;
1472 }
1473
1474 GrTexture* texture;
1475 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1476 // must be pushed upstack.
bsalomonbcf0a522014-10-08 08:40:09 -07001477 AutoBitmapTexture abt(fContext, src, NULL, &texture);
robertphillipsf83be822015-04-30 08:55:06 -07001478 if (!texture) {
1479 return false;
1480 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001481
senorblancod0d37ca2015-04-02 04:54:56 -07001482 return this->filterTexture(fContext, texture, src.width(), src.height(),
1483 filter, ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001484}
1485
reeda85d4d02015-05-06 12:56:48 -07001486static bool wrap_as_bm(const SkImage* image, SkBitmap* bm) {
bsalomon55812362015-06-10 08:49:28 -07001487 GrTexture* tex = as_IB(image)->getTexture();
reeda85d4d02015-05-06 12:56:48 -07001488 if (tex) {
reed8b26b992015-05-07 15:36:17 -07001489 GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), bm);
1490 return true;
reeda85d4d02015-05-06 12:56:48 -07001491 } else {
reed8b26b992015-05-07 15:36:17 -07001492 return as_IB(image)->getROPixels(bm);
reeda85d4d02015-05-06 12:56:48 -07001493 }
reeda85d4d02015-05-06 12:56:48 -07001494}
1495
1496void SkGpuDevice::drawImage(const SkDraw& draw, const SkImage* image, SkScalar x, SkScalar y,
1497 const SkPaint& paint) {
1498 SkBitmap bm;
1499 if (wrap_as_bm(image, &bm)) {
1500 this->drawBitmap(draw, bm, SkMatrix::MakeTrans(x, y), paint);
1501 }
1502}
1503
1504void SkGpuDevice::drawImageRect(const SkDraw& draw, const SkImage* image, const SkRect* src,
reeda5517e22015-07-14 10:54:12 -07001505 const SkRect& dst, const SkPaint& paint,
1506 SkCanvas::SrcRectConstraint constraint) {
reeda85d4d02015-05-06 12:56:48 -07001507 SkBitmap bm;
1508 if (wrap_as_bm(image, &bm)) {
reed562fe472015-07-28 07:35:14 -07001509 this->drawBitmapRect(draw, bm, src, dst, paint, constraint);
reeda85d4d02015-05-06 12:56:48 -07001510 }
1511}
1512
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001513///////////////////////////////////////////////////////////////////////////////
1514
1515// must be in SkCanvas::VertexMode order
1516static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1517 kTriangles_GrPrimitiveType,
1518 kTriangleStrip_GrPrimitiveType,
1519 kTriangleFan_GrPrimitiveType,
1520};
1521
1522void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1523 int vertexCount, const SkPoint vertices[],
1524 const SkPoint texs[], const SkColor colors[],
1525 SkXfermode* xmode,
1526 const uint16_t indices[], int indexCount,
1527 const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -08001528 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001529 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawVertices", fContext);
mtklein533eb782014-08-27 10:39:42 -07001530
dandov32a311b2014-07-15 19:46:26 -07001531 const uint16_t* outIndices;
1532 SkAutoTDeleteArray<uint16_t> outAlloc(NULL);
1533 GrPrimitiveType primType;
1534 GrPaint grPaint;
bsalomona098dd42014-08-06 11:01:44 -07001535
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001536 // If both textures and vertex-colors are NULL, strokes hairlines with the paint's color.
1537 if ((NULL == texs || NULL == paint.getShader()) && NULL == colors) {
mtklein533eb782014-08-27 10:39:42 -07001538
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001539 texs = NULL;
mtklein533eb782014-08-27 10:39:42 -07001540
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001541 SkPaint copy(paint);
1542 copy.setStyle(SkPaint::kStroke_Style);
1543 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001544
dandov32a311b2014-07-15 19:46:26 -07001545 // we ignore the shader if texs is null.
bsalomonbed83a62015-04-15 14:18:34 -07001546 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, copy,
1547 SkColor2GrColor(copy.getColor()), NULL == colors, &grPaint)) {
1548 return;
1549 }
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001550
dandov32a311b2014-07-15 19:46:26 -07001551 primType = kLines_GrPrimitiveType;
1552 int triangleCount = 0;
bsalomona098dd42014-08-06 11:01:44 -07001553 int n = (NULL == indices) ? vertexCount : indexCount;
dandov32a311b2014-07-15 19:46:26 -07001554 switch (vmode) {
1555 case SkCanvas::kTriangles_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001556 triangleCount = n / 3;
dandov32a311b2014-07-15 19:46:26 -07001557 break;
1558 case SkCanvas::kTriangleStrip_VertexMode:
1559 case SkCanvas::kTriangleFan_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001560 triangleCount = n - 2;
dandov32a311b2014-07-15 19:46:26 -07001561 break;
1562 }
mtklein533eb782014-08-27 10:39:42 -07001563
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001564 VertState state(vertexCount, indices, indexCount);
1565 VertState::Proc vertProc = state.chooseProc(vmode);
mtklein533eb782014-08-27 10:39:42 -07001566
dandov32a311b2014-07-15 19:46:26 -07001567 //number of indices for lines per triangle with kLines
1568 indexCount = triangleCount * 6;
mtklein533eb782014-08-27 10:39:42 -07001569
dandov32a311b2014-07-15 19:46:26 -07001570 outAlloc.reset(SkNEW_ARRAY(uint16_t, indexCount));
1571 outIndices = outAlloc.get();
1572 uint16_t* auxIndices = outAlloc.get();
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001573 int i = 0;
1574 while (vertProc(&state)) {
dandov32a311b2014-07-15 19:46:26 -07001575 auxIndices[i] = state.f0;
1576 auxIndices[i + 1] = state.f1;
1577 auxIndices[i + 2] = state.f1;
1578 auxIndices[i + 3] = state.f2;
1579 auxIndices[i + 4] = state.f2;
1580 auxIndices[i + 5] = state.f0;
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001581 i += 6;
1582 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001583 } else {
dandov32a311b2014-07-15 19:46:26 -07001584 outIndices = indices;
1585 primType = gVertexMode2PrimitiveType[vmode];
mtklein533eb782014-08-27 10:39:42 -07001586
dandov32a311b2014-07-15 19:46:26 -07001587 if (NULL == texs || NULL == paint.getShader()) {
bsalomonbed83a62015-04-15 14:18:34 -07001588 if (!SkPaint2GrPaintNoShader(this->context(), fRenderTarget, paint,
1589 SkColor2GrColor(paint.getColor()),
1590 NULL == colors, &grPaint)) {
1591 return;
1592 }
dandov32a311b2014-07-15 19:46:26 -07001593 } else {
bsalomonbed83a62015-04-15 14:18:34 -07001594 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix,
1595 NULL == colors, &grPaint)) {
1596 return;
1597 }
dandov32a311b2014-07-15 19:46:26 -07001598 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001599 }
1600
mtklein2583b622014-06-04 08:20:41 -07001601#if 0
bsalomon49f085d2014-09-05 13:34:00 -07001602 if (xmode && texs && colors) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001603 if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) {
1604 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
mtklein2583b622014-06-04 08:20:41 -07001605 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001606 }
1607 }
mtklein2583b622014-06-04 08:20:41 -07001608#endif
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001609
1610 SkAutoSTMalloc<128, GrColor> convertedColors(0);
bsalomon49f085d2014-09-05 13:34:00 -07001611 if (colors) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001612 // need to convert byte order and from non-PM to PM
1613 convertedColors.reset(vertexCount);
commit-bot@chromium.orgc93e6812014-05-23 08:09:26 +00001614 SkColor color;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001615 for (int i = 0; i < vertexCount; ++i) {
commit-bot@chromium.orgc93e6812014-05-23 08:09:26 +00001616 color = colors[i];
1617 if (paint.getAlpha() != 255) {
1618 color = SkColorSetA(color, SkMulDiv255Round(SkColorGetA(color), paint.getAlpha()));
1619 }
1620 convertedColors[i] = SkColor2GrColor(color);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001621 }
1622 colors = convertedColors.get();
1623 }
robertphillipsea461502015-05-26 11:38:03 -07001624 fDrawContext->drawVertices(fRenderTarget,
1625 fClip,
1626 grPaint,
1627 *draw.fMatrix,
1628 primType,
1629 vertexCount,
1630 vertices,
1631 texs,
1632 colors,
1633 outIndices,
1634 indexCount);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001635}
1636
1637///////////////////////////////////////////////////////////////////////////////
1638
jvanverth31ff7622015-08-07 10:09:28 -07001639void SkGpuDevice::drawAtlas(const SkDraw& draw, const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001640 const SkRect texRect[], const SkColor colors[], int count,
1641 SkXfermode::Mode mode, const SkPaint& paint) {
1642 if (paint.isAntiAlias()) {
jvanverth31ff7622015-08-07 10:09:28 -07001643 this->INHERITED::drawAtlas(draw, atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001644 return;
1645 }
1646
jvanverth31ff7622015-08-07 10:09:28 -07001647 CHECK_SHOULD_DRAW(draw);
1648 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
1649
reedca109532015-06-25 16:25:25 -07001650 SkPaint p(paint);
1651 p.setShader(atlas->newShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
1652
jvanverth31ff7622015-08-07 10:09:28 -07001653 GrPaint grPaint;
1654 if (!SkPaint2GrPaint(this->context(), fRenderTarget, p, *draw.fMatrix, !colors, &grPaint)) {
1655 return;
reedca109532015-06-25 16:25:25 -07001656 }
jvanverth31ff7622015-08-07 10:09:28 -07001657
1658 SkDEBUGCODE(this->validate();)
1659
1660#if 0
robertphillips29ccdf82015-07-24 10:20:45 -07001661 if (colors) {
jvanverth31ff7622015-08-07 10:09:28 -07001662 if (SkXfermode::kModulate_Mode != mode) {
1663 SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
1664 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001665 }
1666 }
jvanverth31ff7622015-08-07 10:09:28 -07001667#endif
1668
1669 fDrawContext->drawAtlas(fRenderTarget, fClip, grPaint, *draw.fMatrix,
1670 count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001671}
1672
1673///////////////////////////////////////////////////////////////////////////////
1674
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001675void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
joshualitt5531d512014-12-17 15:50:11 -08001676 size_t byteLength, SkScalar x, SkScalar y,
1677 const SkPaint& paint) {
1678 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001679 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001680
jvanverth8c27a182014-10-14 08:45:50 -07001681 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -07001682 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
1683 return;
1684 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001685
jvanverth8c27a182014-10-14 08:45:50 -07001686 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001687
robertphillips2334fb62015-06-17 05:43:33 -07001688 fDrawContext->drawText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001689 (const char *)text, byteLength, x, y, draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001690}
1691
fmalita05c4a432014-09-29 06:29:53 -07001692void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text, size_t byteLength,
1693 const SkScalar pos[], int scalarsPerPos,
1694 const SkPoint& offset, const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -07001695 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPosText", fContext);
joshualitt5531d512014-12-17 15:50:11 -08001696 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001697
jvanverth8c27a182014-10-14 08:45:50 -07001698 GrPaint grPaint;
bsalomonbed83a62015-04-15 14:18:34 -07001699 if (!SkPaint2GrPaint(this->context(), fRenderTarget, paint, *draw.fMatrix, true, &grPaint)) {
1700 return;
1701 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001702
jvanverth8c27a182014-10-14 08:45:50 -07001703 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001704
robertphillips2334fb62015-06-17 05:43:33 -07001705 fDrawContext->drawPosText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001706 (const char *)text, byteLength, pos, scalarsPerPos, offset,
1707 draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001708}
1709
joshualitt9c328182015-03-23 08:13:04 -07001710void SkGpuDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y,
1711 const SkPaint& paint, SkDrawFilter* drawFilter) {
1712 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawTextBlob", fContext);
1713 CHECK_SHOULD_DRAW(draw);
1714
1715 SkDEBUGCODE(this->validate();)
1716
robertphillips2334fb62015-06-17 05:43:33 -07001717 fDrawContext->drawTextBlob(fRenderTarget, fClip, paint, *draw.fMatrix,
robertphillipsccb1b572015-05-27 11:02:55 -07001718 blob, x, y, drawFilter, draw.fClip->getBounds());
joshualitt9c328182015-03-23 08:13:04 -07001719}
1720
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001721///////////////////////////////////////////////////////////////////////////////
1722
reedb2db8982014-11-13 12:41:02 -08001723bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const {
robertphillips9c240a12015-05-28 07:45:59 -07001724 return GrTextContext::ShouldDisableLCD(paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001725}
1726
1727void SkGpuDevice::flush() {
1728 DO_DEFERRED_CLEAR();
bsalomonc49e8682015-06-30 11:37:35 -07001729 fRenderTarget->prepareForExternalIO();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001730}
1731
1732///////////////////////////////////////////////////////////////////////////////
1733
reed76033be2015-03-14 10:54:31 -07001734SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
bsalomonf2703d82014-10-28 14:33:06 -07001735 GrSurfaceDesc desc;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001736 desc.fConfig = fRenderTarget->config();
bsalomonf2703d82014-10-28 14:33:06 -07001737 desc.fFlags = kRenderTarget_GrSurfaceFlag;
fmalita6987dca2014-11-13 08:33:37 -08001738 desc.fWidth = cinfo.fInfo.width();
1739 desc.fHeight = cinfo.fInfo.height();
vbuzinovdded6962015-06-12 08:59:45 -07001740 desc.fSampleCnt = fRenderTarget->desc().fSampleCnt;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001741
1742 SkAutoTUnref<GrTexture> texture;
1743 // Skia's convention is to only clear a device if it is non-opaque.
bsalomon74f681d2015-06-23 14:38:48 -07001744 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001745
hcm4396fa52014-10-27 21:43:30 -07001746 // layers are never draw in repeat modes, so we can request an approx
1747 // match and ignore any padding.
bsalomoneae62002015-07-31 13:59:30 -07001748 if (kNever_TileUsage == cinfo.fTileUsage) {
1749 texture.reset(fContext->textureProvider()->createApproxTexture(desc));
1750 } else {
1751 texture.reset(fContext->textureProvider()->createTexture(desc, true));
1752 }
bsalomonafe30052015-01-16 07:32:33 -08001753
1754 if (texture) {
robertphillips7b05ff12015-06-19 14:14:54 -07001755 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
senorblancod0d37ca2015-04-02 04:54:56 -07001756 return SkGpuDevice::Create(
bsalomon74f681d2015-06-23 14:38:48 -07001757 texture->asRenderTarget(), cinfo.fInfo.width(), cinfo.fInfo.height(), &props, init);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001758 } else {
joshualitt5f5a8d72015-02-25 14:09:45 -08001759 SkErrorInternals::SetError( kInternalError_SkError,
reed61f501f2015-04-29 08:34:00 -07001760 "---- failed to create gpu device texture [%d %d]\n",
joshualitt5f5a8d72015-02-25 14:09:45 -08001761 cinfo.fInfo.width(), cinfo.fInfo.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001762 return NULL;
1763 }
1764}
1765
reed4a8126e2014-09-22 07:29:03 -07001766SkSurface* SkGpuDevice::newSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
bsalomonafe30052015-01-16 07:32:33 -08001767 // TODO: Change the signature of newSurface to take a budgeted parameter.
1768 static const SkSurface::Budgeted kBudgeted = SkSurface::kNo_Budgeted;
vbuzinovdded6962015-06-12 08:59:45 -07001769 return SkSurface::NewRenderTarget(fContext, kBudgeted, info, fRenderTarget->desc().fSampleCnt,
bsalomonafe30052015-01-16 07:32:33 -08001770 &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001771}
1772
robertphillips30d2cc62014-09-24 08:52:18 -07001773bool SkGpuDevice::EXPERIMENTAL_drawPicture(SkCanvas* mainCanvas, const SkPicture* mainPicture,
reedd5fa1a42014-08-09 11:08:05 -07001774 const SkMatrix* matrix, const SkPaint* paint) {
robertphillips63242d72014-12-04 08:31:02 -08001775#ifndef SK_IGNORE_GPU_LAYER_HOISTING
robertphillips30d78412014-11-24 09:49:17 -08001776 // todo: should handle this natively
1777 if (paint) {
reedd5fa1a42014-08-09 11:08:05 -07001778 return false;
1779 }
1780
mtklein9db912c2015-05-19 11:11:26 -07001781 const SkBigPicture::AccelData* data = NULL;
1782 if (const SkBigPicture* bp = mainPicture->asSkBigPicture()) {
1783 data = bp->accelData();
1784 }
robertphillips81f71b62014-11-11 04:54:49 -08001785 if (!data) {
1786 return false;
1787 }
1788
robertphillipse5524cd2015-02-20 12:30:26 -08001789 const SkLayerInfo *gpuData = static_cast<const SkLayerInfo*>(data);
1790 if (0 == gpuData->numBlocks()) {
1791 return false;
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +00001792 }
1793
robertphillipsfd61ed02014-10-28 07:21:44 -07001794 SkTDArray<GrHoistedLayer> atlasedNeedRendering, atlasedRecycled;
robertphillips1c4c5282014-09-18 12:03:15 -07001795
robertphillipse5524cd2015-02-20 12:30:26 -08001796 SkIRect iBounds;
1797 if (!mainCanvas->getClipDeviceBounds(&iBounds)) {
1798 return false;
1799 }
1800
1801 SkRect clipBounds = SkRect::Make(iBounds);
1802
1803 SkMatrix initialMatrix = mainCanvas->getTotalMatrix();
1804
robertphillipsfd61ed02014-10-28 07:21:44 -07001805 GrLayerHoister::FindLayersToAtlas(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001806 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001807 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001808 &atlasedNeedRendering, &atlasedRecycled,
vbuzinovdded6962015-06-12 08:59:45 -07001809 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001810
1811 GrLayerHoister::DrawLayersToAtlas(fContext, atlasedNeedRendering);
1812
1813 SkTDArray<GrHoistedLayer> needRendering, recycled;
1814
robertphillipse5524cd2015-02-20 12:30:26 -08001815 SkAutoCanvasMatrixPaint acmp(mainCanvas, matrix, paint, mainPicture->cullRect());
1816
robertphillipsfd61ed02014-10-28 07:21:44 -07001817 GrLayerHoister::FindLayersToHoist(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001818 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001819 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001820 &needRendering, &recycled,
vbuzinovdded6962015-06-12 08:59:45 -07001821 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001822
1823 GrLayerHoister::DrawLayers(fContext, needRendering);
robertphillips@google.combeb1af22014-05-07 21:31:09 +00001824
robertphillips64bf7672014-08-21 13:07:35 -07001825 // Render the entire picture using new layers
robertphillipse99d4992014-12-03 07:33:57 -08001826 GrRecordReplaceDraw(mainPicture, mainCanvas, fContext->getLayerCache(),
1827 initialMatrix, NULL);
robertphillips64bf7672014-08-21 13:07:35 -07001828
robertphillipsfd61ed02014-10-28 07:21:44 -07001829 GrLayerHoister::UnlockLayers(fContext, needRendering);
1830 GrLayerHoister::UnlockLayers(fContext, recycled);
1831 GrLayerHoister::UnlockLayers(fContext, atlasedNeedRendering);
1832 GrLayerHoister::UnlockLayers(fContext, atlasedRecycled);
robertphillips64bf7672014-08-21 13:07:35 -07001833
1834 return true;
robertphillips63242d72014-12-04 08:31:02 -08001835#else
1836 return false;
1837#endif
robertphillips64bf7672014-08-21 13:07:35 -07001838}
1839
senorblancobe129b22014-08-08 07:14:35 -07001840SkImageFilter::Cache* SkGpuDevice::getImageFilterCache() {
senorblanco55b6d8b2014-07-30 11:26:46 -07001841 // We always return a transient cache, so it is freed after each
1842 // filter traversal.
senorblancobe129b22014-08-08 07:14:35 -07001843 return SkImageFilter::Cache::Create(kDefaultImageFilterCacheSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07001844}
reedf037e0b2014-10-30 11:34:15 -07001845
1846#endif