blob: 4d150599a13e29fde69dae3ee6eef8a60a198982 [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"
bsalomonf276ac52015-10-09 13:36:42 -070026#include "SkGr.h"
bsalomonf1b7a1d2015-09-28 06:26:28 -070027#include "SkGrPriv.h"
reeda85d4d02015-05-06 12:56:48 -070028#include "SkImage_Base.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000029#include "SkImageFilter.h"
robertphillips82365912014-11-12 09:32:34 -080030#include "SkLayerInfo.h"
commit-bot@chromium.org82139702014-03-10 22:53:20 +000031#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000032#include "SkPathEffect.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000033#include "SkPicture.h"
robertphillipsdb539902014-07-01 08:47:04 -070034#include "SkPictureData.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000035#include "SkRRect.h"
kkinnunenabcfab42015-02-22 22:53:44 -080036#include "SkRecord.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000037#include "SkStroke.h"
reed@google.com76f10a32014-02-05 15:32:21 +000038#include "SkSurface.h"
kkinnunenabcfab42015-02-22 22:53:44 -080039#include "SkSurface_Gpu.h"
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +000040#include "SkTLazy.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000041#include "SkUtils.h"
commit-bot@chromium.org559a8832014-05-30 10:08:22 +000042#include "SkVertState.h"
robertphillips320c9232014-07-29 06:07:19 -070043#include "SkXfermode.h"
joshualitta61c8172015-08-17 10:51:22 -070044#include "batches/GrRectBatchFactory.h"
kkinnunenabcfab42015-02-22 22:53:44 -080045#include "effects/GrBicubicEffect.h"
46#include "effects/GrDashingEffect.h"
47#include "effects/GrSimpleTextureEffect.h"
48#include "effects/GrTextureDomain.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000049
reedf037e0b2014-10-30 11:34:15 -070050#if SK_SUPPORT_GPU
51
senorblanco55b6d8b2014-07-30 11:26:46 -070052enum { kDefaultImageFilterCacheSize = 32 * 1024 * 1024 };
53
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000054#if 0
55 extern bool (*gShouldDrawProc)();
joshualitt5531d512014-12-17 15:50:11 -080056 #define CHECK_SHOULD_DRAW(draw) \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000057 do { \
58 if (gShouldDrawProc && !gShouldDrawProc()) return; \
joshualitt5531d512014-12-17 15:50:11 -080059 this->prepareDraw(draw); \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000060 } while (0)
61#else
joshualitt5531d512014-12-17 15:50:11 -080062 #define CHECK_SHOULD_DRAW(draw) this->prepareDraw(draw)
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000063#endif
64
65// This constant represents the screen alignment criterion in texels for
66// requiring texture domain clamping to prevent color bleeding when drawing
67// a sub region of a larger source image.
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000068#define COLOR_BLEED_TOLERANCE 0.001f
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000069
70#define DO_DEFERRED_CLEAR() \
71 do { \
bsalomonafe30052015-01-16 07:32:33 -080072 if (fNeedClear) { \
73 this->clearAll(); \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000074 } \
75 } while (false) \
76
77///////////////////////////////////////////////////////////////////////////////
78
79#define CHECK_FOR_ANNOTATION(paint) \
80 do { if (paint.getAnnotation()) { return; } } while (0)
81
82///////////////////////////////////////////////////////////////////////////////
83
bsalomonbcf0a522014-10-08 08:40:09 -070084// Helper for turning a bitmap into a texture. If the bitmap is GrTexture backed this
85// just accesses the backing GrTexture. Otherwise, it creates a cached texture
86// representation and releases it in the destructor.
87class AutoBitmapTexture : public SkNoncopyable {
Brian Salomon9323b8b2014-10-07 15:07:38 -040088public:
bsalomonbcf0a522014-10-08 08:40:09 -070089 AutoBitmapTexture() {}
robertphillipsdbe60742014-09-30 06:54:17 -070090
bsalomonbcf0a522014-10-08 08:40:09 -070091 AutoBitmapTexture(GrContext* context,
92 const SkBitmap& bitmap,
bsalomonafa95e22015-10-12 10:39:46 -070093 const GrTextureParams& params,
bsalomonbcf0a522014-10-08 08:40:09 -070094 GrTexture** texture) {
Brian Salomon9323b8b2014-10-07 15:07:38 -040095 SkASSERT(texture);
bsalomonbcf0a522014-10-08 08:40:09 -070096 *texture = this->set(context, bitmap, params);
Brian Salomon9323b8b2014-10-07 15:07:38 -040097 }
98
bsalomonbcf0a522014-10-08 08:40:09 -070099 GrTexture* set(GrContext* context,
Brian Salomon9323b8b2014-10-07 15:07:38 -0400100 const SkBitmap& bitmap,
bsalomonafa95e22015-10-12 10:39:46 -0700101 const GrTextureParams& params) {
bsalomonbcf0a522014-10-08 08:40:09 -0700102 // Either get the texture directly from the bitmap, or else use the cache and
103 // remember to unref it.
104 if (GrTexture* bmpTexture = bitmap.getTexture()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700105 fTexture.reset(nullptr);
bsalomonbcf0a522014-10-08 08:40:09 -0700106 return bmpTexture;
107 } else {
108 fTexture.reset(GrRefCachedBitmapTexture(context, bitmap, params));
109 return fTexture.get();
Brian Salomon9323b8b2014-10-07 15:07:38 -0400110 }
Brian Salomon9323b8b2014-10-07 15:07:38 -0400111 }
112
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000113private:
bsalomonbcf0a522014-10-08 08:40:09 -0700114 SkAutoTUnref<GrTexture> fTexture;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000115};
116
117///////////////////////////////////////////////////////////////////////////////
118
119struct GrSkDrawProcs : public SkDrawProcs {
120public:
121 GrContext* fContext;
122 GrTextContext* fTextContext;
123 GrFontScaler* fFontScaler; // cached in the skia glyphcache
124};
125
126///////////////////////////////////////////////////////////////////////////////
127
bsalomon74f681d2015-06-23 14:38:48 -0700128/** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation
129 should fail. */
130bool SkGpuDevice::CheckAlphaTypeAndGetFlags(
131 const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) {
132 *flags = 0;
133 if (info) {
134 switch (info->alphaType()) {
135 case kPremul_SkAlphaType:
136 break;
137 case kOpaque_SkAlphaType:
138 *flags |= SkGpuDevice::kIsOpaque_Flag;
139 break;
140 default: // If it is unpremul or unknown don't try to render
141 return false;
142 }
143 }
144 if (kClear_InitContents == init) {
145 *flags |= kNeedClear_Flag;
146 }
147 return true;
148}
149
150SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, const SkSurfaceProps* props,
151 InitContents init) {
152 return SkGpuDevice::Create(rt, rt->width(), rt->height(), props, init);
senorblancod0d37ca2015-04-02 04:54:56 -0700153}
154
155SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, int width, int height,
bsalomon74f681d2015-06-23 14:38:48 -0700156 const SkSurfaceProps* props, InitContents init) {
bsalomonafe30052015-01-16 07:32:33 -0800157 if (!rt || rt->wasDestroyed()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700158 return nullptr;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000159 }
bsalomon74f681d2015-06-23 14:38:48 -0700160 unsigned flags;
halcanary96fcdcc2015-08-27 07:41:13 -0700161 if (!CheckAlphaTypeAndGetFlags(nullptr, init, &flags)) {
162 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700163 }
halcanary385fe4d2015-08-26 13:07:48 -0700164 return new SkGpuDevice(rt, width, height, props, flags);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000165}
166
bsalomon74f681d2015-06-23 14:38:48 -0700167SkGpuDevice* SkGpuDevice::Create(GrContext* context, SkSurface::Budgeted budgeted,
168 const SkImageInfo& info, int sampleCount,
169 const SkSurfaceProps* props, InitContents init) {
170 unsigned flags;
171 if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700172 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700173 }
174
175 SkAutoTUnref<GrRenderTarget> rt(CreateRenderTarget(context, budgeted, info, sampleCount));
halcanary96fcdcc2015-08-27 07:41:13 -0700176 if (nullptr == rt) {
177 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700178 }
179
halcanary385fe4d2015-08-26 13:07:48 -0700180 return new SkGpuDevice(rt, info.width(), info.height(), props, flags);
bsalomon74f681d2015-06-23 14:38:48 -0700181}
182
senorblancod0d37ca2015-04-02 04:54:56 -0700183SkGpuDevice::SkGpuDevice(GrRenderTarget* rt, int width, int height,
184 const SkSurfaceProps* props, unsigned flags)
robertphillipsfcf78292015-06-19 11:49:52 -0700185 : INHERITED(SkSurfacePropsCopyOrDefault(props))
reedb2db8982014-11-13 12:41:02 -0800186{
halcanary96fcdcc2015-08-27 07:41:13 -0700187 fDrawProcs = nullptr;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000188
bsalomonafe30052015-01-16 07:32:33 -0800189 fContext = SkRef(rt->getContext());
bsalomon74f681d2015-06-23 14:38:48 -0700190 fNeedClear = SkToBool(flags & kNeedClear_Flag);
191 fOpaque = SkToBool(flags & kIsOpaque_Flag);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000192
bsalomonafe30052015-01-16 07:32:33 -0800193 fRenderTarget = SkRef(rt);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000194
bsalomon74f681d2015-06-23 14:38:48 -0700195 SkAlphaType at = fOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
196 SkImageInfo info = rt->surfacePriv().info(at).makeWH(width, height);
halcanary385fe4d2015-08-26 13:07:48 -0700197 SkPixelRef* pr = new SkGrPixelRef(info, rt);
bsalomonafbf2d62014-09-30 12:18:44 -0700198 fLegacyBitmap.setInfo(info);
reed89443ab2014-06-27 11:34:19 -0700199 fLegacyBitmap.setPixelRef(pr)->unref();
kkinnunenc6cb56f2014-06-24 00:12:27 -0700200
robertphillipsc9a37062015-09-01 08:34:28 -0700201 fDrawContext.reset(fContext->drawContext(&this->surfaceProps()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000202}
203
kkinnunenabcfab42015-02-22 22:53:44 -0800204GrRenderTarget* SkGpuDevice::CreateRenderTarget(GrContext* context, SkSurface::Budgeted budgeted,
205 const SkImageInfo& origInfo, int sampleCount) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000206 if (kUnknown_SkColorType == origInfo.colorType() ||
207 origInfo.width() < 0 || origInfo.height() < 0) {
halcanary96fcdcc2015-08-27 07:41:13 -0700208 return nullptr;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000209 }
210
bsalomonafe30052015-01-16 07:32:33 -0800211 if (!context) {
halcanary96fcdcc2015-08-27 07:41:13 -0700212 return nullptr;
bsalomonafe30052015-01-16 07:32:33 -0800213 }
214
reede5ea5002014-09-03 11:54:58 -0700215 SkColorType ct = origInfo.colorType();
216 SkAlphaType at = origInfo.alphaType();
reede5ea5002014-09-03 11:54:58 -0700217 if (kRGB_565_SkColorType == ct) {
218 at = kOpaque_SkAlphaType; // force this setting
bsalomonafe30052015-01-16 07:32:33 -0800219 } else if (ct != kBGRA_8888_SkColorType && ct != kRGBA_8888_SkColorType) {
220 // Fall back from whatever ct was to default of kRGBA or kBGRA which is aliased as kN32
reede5ea5002014-09-03 11:54:58 -0700221 ct = kN32_SkColorType;
bsalomonafe30052015-01-16 07:32:33 -0800222 }
223 if (kOpaque_SkAlphaType != at) {
224 at = kPremul_SkAlphaType; // force this setting
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000225 }
reede5ea5002014-09-03 11:54:58 -0700226 const SkImageInfo info = SkImageInfo::Make(origInfo.width(), origInfo.height(), ct, at);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000227
bsalomonf2703d82014-10-28 14:33:06 -0700228 GrSurfaceDesc desc;
229 desc.fFlags = kRenderTarget_GrSurfaceFlag;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000230 desc.fWidth = info.width();
231 desc.fHeight = info.height();
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000232 desc.fConfig = SkImageInfo2GrPixelConfig(info);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000233 desc.fSampleCnt = sampleCount;
bsalomond309e7a2015-04-30 14:18:54 -0700234 GrTexture* texture = context->textureProvider()->createTexture(
halcanary96fcdcc2015-08-27 07:41:13 -0700235 desc, SkToBool(budgeted), nullptr, 0);
236 if (nullptr == texture) {
237 return nullptr;
kkinnunenabcfab42015-02-22 22:53:44 -0800238 }
halcanary96fcdcc2015-08-27 07:41:13 -0700239 SkASSERT(nullptr != texture->asRenderTarget());
kkinnunenabcfab42015-02-22 22:53:44 -0800240 return texture->asRenderTarget();
241}
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000242
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000243SkGpuDevice::~SkGpuDevice() {
244 if (fDrawProcs) {
245 delete fDrawProcs;
246 }
skia.committer@gmail.comd2ac07b2014-01-25 07:01:49 +0000247
bsalomon32d0b3b2014-08-29 07:50:23 -0700248 fRenderTarget->unref();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000249 fContext->unref();
250}
251
252///////////////////////////////////////////////////////////////////////////////
253
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000254bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
255 int x, int y) {
256 DO_DEFERRED_CLEAR();
257
258 // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000259 GrPixelConfig config = SkImageInfo2GrPixelConfig(dstInfo);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000260 if (kUnknown_GrPixelConfig == config) {
261 return false;
262 }
263
264 uint32_t flags = 0;
265 if (kUnpremul_SkAlphaType == dstInfo.alphaType()) {
266 flags = GrContext::kUnpremul_PixelOpsFlag;
267 }
bsalomon74f681d2015-06-23 14:38:48 -0700268 return fRenderTarget->readPixels(x, y, dstInfo.width(), dstInfo.height(), config, dstPixels,
269 dstRowBytes, flags);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000270}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000271
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000272bool SkGpuDevice::onWritePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes,
273 int x, int y) {
274 // TODO: teach fRenderTarget to take ImageInfo directly to specify the src pixels
commit-bot@chromium.org3adcc342014-04-23 19:18:09 +0000275 GrPixelConfig config = SkImageInfo2GrPixelConfig(info);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000276 if (kUnknown_GrPixelConfig == config) {
277 return false;
278 }
279 uint32_t flags = 0;
280 if (kUnpremul_SkAlphaType == info.alphaType()) {
281 flags = GrContext::kUnpremul_PixelOpsFlag;
282 }
283 fRenderTarget->writePixels(x, y, info.width(), info.height(), config, pixels, rowBytes, flags);
284
285 // need to bump our genID for compatibility with clients that "know" we have a bitmap
reed89443ab2014-06-27 11:34:19 -0700286 fLegacyBitmap.notifyPixelsChanged();
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000287
288 return true;
289}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000290
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000291const SkBitmap& SkGpuDevice::onAccessBitmap() {
292 DO_DEFERRED_CLEAR();
reed89443ab2014-06-27 11:34:19 -0700293 return fLegacyBitmap;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000294}
295
reed41e010c2015-06-09 12:16:53 -0700296bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) {
297 DO_DEFERRED_CLEAR();
298 // For compatibility with clients the know we're backed w/ a bitmap, and want to inspect its
299 // genID. When we can hide/remove that fact, we can eliminate this call to notify.
300 // ... ugh.
301 fLegacyBitmap.notifyPixelsChanged();
302 return false;
303}
304
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000305void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
306 INHERITED::onAttachToCanvas(canvas);
307
308 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
joshualitt44701df2015-02-23 14:44:57 -0800309 fClipStack.reset(SkRef(canvas->getClipStack()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000310}
311
312void SkGpuDevice::onDetachFromCanvas() {
313 INHERITED::onDetachFromCanvas();
joshualitt570d2f82015-02-25 13:19:48 -0800314 fClip.reset();
halcanary96fcdcc2015-08-27 07:41:13 -0700315 fClipStack.reset(nullptr);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000316}
317
318// call this every draw call, to ensure that the context reflects our state,
319// and not the state from some other canvas/device
joshualitt5531d512014-12-17 15:50:11 -0800320void SkGpuDevice::prepareDraw(const SkDraw& draw) {
joshualitt44701df2015-02-23 14:44:57 -0800321 SkASSERT(fClipStack.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000322
joshualitt44701df2015-02-23 14:44:57 -0800323 SkASSERT(draw.fClipStack && draw.fClipStack == fClipStack);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000324
joshualitt570d2f82015-02-25 13:19:48 -0800325 fClip.setClipStack(fClipStack, &this->getOrigin());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000326
327 DO_DEFERRED_CLEAR();
328}
329
330GrRenderTarget* SkGpuDevice::accessRenderTarget() {
robertphillips7156b092015-05-14 08:54:12 -0700331 DO_DEFERRED_CLEAR();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000332 return fRenderTarget;
333}
334
reed8eddfb52014-12-04 07:50:14 -0800335void SkGpuDevice::clearAll() {
336 GrColor color = 0;
337 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::clearAll", fContext);
338 SkIRect rect = SkIRect::MakeWH(this->width(), this->height());
robertphillipsea461502015-05-26 11:38:03 -0700339 fDrawContext->clear(fRenderTarget, &rect, color, true);
bsalomonafe30052015-01-16 07:32:33 -0800340 fNeedClear = false;
reed8eddfb52014-12-04 07:50:14 -0800341}
342
kkinnunenabcfab42015-02-22 22:53:44 -0800343void SkGpuDevice::replaceRenderTarget(bool shouldRetainContent) {
344 // Caller must have accessed the render target, because it knows the rt must be replaced.
345 SkASSERT(!fNeedClear);
346
347 SkSurface::Budgeted budgeted =
348 fRenderTarget->resourcePriv().isBudgeted() ? SkSurface::kYes_Budgeted
349 : SkSurface::kNo_Budgeted;
350
351 SkAutoTUnref<GrRenderTarget> newRT(CreateRenderTarget(
vbuzinovdded6962015-06-12 08:59:45 -0700352 fRenderTarget->getContext(), budgeted, this->imageInfo(), fRenderTarget->desc().fSampleCnt));
kkinnunenabcfab42015-02-22 22:53:44 -0800353
halcanary96fcdcc2015-08-27 07:41:13 -0700354 if (nullptr == newRT) {
kkinnunenabcfab42015-02-22 22:53:44 -0800355 return;
356 }
357
358 if (shouldRetainContent) {
359 if (fRenderTarget->wasDestroyed()) {
360 return;
361 }
362 this->context()->copySurface(newRT, fRenderTarget);
363 }
364
365 SkASSERT(fRenderTarget != newRT);
366
367 fRenderTarget->unref();
368 fRenderTarget = newRT.detach();
369
bsalomon74f681d2015-06-23 14:38:48 -0700370#ifdef SK_DEBUG
371 SkImageInfo info = fRenderTarget->surfacePriv().info(fOpaque ? kOpaque_SkAlphaType :
372 kPremul_SkAlphaType);
373 SkASSERT(info == fLegacyBitmap.info());
374#endif
halcanary385fe4d2015-08-26 13:07:48 -0700375 SkPixelRef* pr = new SkGrPixelRef(fLegacyBitmap.info(), fRenderTarget);
kkinnunenabcfab42015-02-22 22:53:44 -0800376 fLegacyBitmap.setPixelRef(pr)->unref();
robertphillipsea461502015-05-26 11:38:03 -0700377
robertphillipsc9a37062015-09-01 08:34:28 -0700378 fDrawContext.reset(fRenderTarget->getContext()->drawContext(&this->surfaceProps()));
kkinnunenabcfab42015-02-22 22:53:44 -0800379}
380
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000381///////////////////////////////////////////////////////////////////////////////
382
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000383void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -0800384 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -0700385 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPaint", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000386
387 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700388 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700389 return;
390 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000391
robertphillipsea461502015-05-26 11:38:03 -0700392 fDrawContext->drawPaint(fRenderTarget, fClip, grPaint, *draw.fMatrix);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000393}
394
395// must be in SkCanvas::PointMode order
396static const GrPrimitiveType gPointMode2PrimtiveType[] = {
397 kPoints_GrPrimitiveType,
398 kLines_GrPrimitiveType,
399 kLineStrip_GrPrimitiveType
400};
401
ethannicholas330bb952015-07-17 06:44:02 -0700402// suppress antialiasing on axis-aligned integer-coordinate lines
403static bool needs_antialiasing(SkCanvas::PointMode mode, size_t count, const SkPoint pts[]) {
404 if (mode == SkCanvas::PointMode::kPoints_PointMode) {
405 return false;
406 }
407 if (count == 2) {
408 // We do not antialias as long as the primary axis of the line is integer-aligned, even if
409 // the other coordinates are not. This does mean the two end pixels of the line will be
410 // sharp even when they shouldn't be, but turning antialiasing on (as things stand
411 // currently) means that the line will turn into a two-pixel-wide blur. While obviously a
412 // more complete fix is possible down the road, for the time being we accept the error on
413 // the two end pixels as being the lesser of two evils.
414 if (pts[0].fX == pts[1].fX) {
415 return ((int) pts[0].fX) != pts[0].fX;
416 }
417 if (pts[0].fY == pts[1].fY) {
418 return ((int) pts[0].fY) != pts[0].fY;
419 }
420 }
421 return true;
422}
423
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000424void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
425 size_t count, const SkPoint pts[], const SkPaint& paint) {
426 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800427 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000428
429 SkScalar width = paint.getStrokeWidth();
430 if (width < 0) {
431 return;
432 }
433
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000434 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) {
egdaniele61c4112014-06-12 10:24:21 -0700435 GrStrokeInfo strokeInfo(paint, SkPaint::kStroke_Style);
436 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700437 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700438 return;
439 }
egdaniele61c4112014-06-12 10:24:21 -0700440 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700441 path.setIsVolatile(true);
egdaniele61c4112014-06-12 10:24:21 -0700442 path.moveTo(pts[0]);
443 path.lineTo(pts[1]);
robertphillipsea461502015-05-26 11:38:03 -0700444 fDrawContext->drawPath(fRenderTarget, fClip, grPaint, *draw.fMatrix, path, strokeInfo);
egdaniele61c4112014-06-12 10:24:21 -0700445 return;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000446 }
447
ethannicholas330bb952015-07-17 06:44:02 -0700448 // we only handle non-antialiased hairlines and paints without path effects or mask filters,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000449 // else we let the SkDraw call our drawPath()
ethannicholas330bb952015-07-17 06:44:02 -0700450 if (width > 0 || paint.getPathEffect() || paint.getMaskFilter() ||
451 (paint.isAntiAlias() && needs_antialiasing(mode, count, pts))) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000452 draw.drawPoints(mode, count, pts, paint, true);
453 return;
454 }
455
456 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700457 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700458 return;
459 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000460
robertphillipsea461502015-05-26 11:38:03 -0700461 fDrawContext->drawVertices(fRenderTarget,
462 fClip,
463 grPaint,
464 *draw.fMatrix,
465 gPointMode2PrimtiveType[mode],
466 SkToS32(count),
467 (SkPoint*)pts,
halcanary96fcdcc2015-08-27 07:41:13 -0700468 nullptr,
469 nullptr,
470 nullptr,
robertphillipsea461502015-05-26 11:38:03 -0700471 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000472}
473
474///////////////////////////////////////////////////////////////////////////////
475
476void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect,
477 const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -0700478 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRect", fContext);
479
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000480 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800481 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000482
483 bool doStroke = paint.getStyle() != SkPaint::kFill_Style;
484 SkScalar width = paint.getStrokeWidth();
485
486 /*
487 We have special code for hairline strokes, miter-strokes, bevel-stroke
488 and fills. Anything else we just call our path code.
489 */
490 bool usePath = doStroke && width > 0 &&
491 (paint.getStrokeJoin() == SkPaint::kRound_Join ||
492 (paint.getStrokeJoin() == SkPaint::kBevel_Join && rect.isEmpty()));
egdanield58a0ba2014-06-11 10:30:05 -0700493
robertphillipsd8aa59d2015-08-05 09:07:12 -0700494 // a few other reasons we might need to call drawPath...
495 if (paint.getMaskFilter() ||
496 paint.getStyle() == SkPaint::kStrokeAndFill_Style) { // we can't both stroke and fill rects
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000497 usePath = true;
498 }
egdanield58a0ba2014-06-11 10:30:05 -0700499
joshualitt5531d512014-12-17 15:50:11 -0800500 if (!usePath && paint.isAntiAlias() && !draw.fMatrix->rectStaysRect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000501 usePath = true;
502 }
503
egdanield58a0ba2014-06-11 10:30:05 -0700504 GrStrokeInfo strokeInfo(paint);
505
506 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700507 if (!usePath && pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700508 usePath = true;
509 }
510
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000511 if (usePath) {
512 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700513 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000514 path.addRect(rect);
halcanary96fcdcc2015-08-27 07:41:13 -0700515 this->drawPath(draw, path, paint, nullptr, true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000516 return;
517 }
518
519 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700520 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700521 return;
522 }
Mike Klein744fb732014-06-23 15:13:26 -0400523
robertphillipsea461502015-05-26 11:38:03 -0700524 fDrawContext->drawRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, &strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000525}
526
527///////////////////////////////////////////////////////////////////////////////
528
529void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect,
joshualitt5531d512014-12-17 15:50:11 -0800530 const SkPaint& paint) {
egdanield78a1682014-07-09 10:41:26 -0700531 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawRRect", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000532 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800533 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000534
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000535 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700536 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700537 return;
538 }
Mike Klein744fb732014-06-23 15:13:26 -0400539
egdanield58a0ba2014-06-11 10:30:05 -0700540 GrStrokeInfo strokeInfo(paint);
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000541 if (paint.getMaskFilter()) {
542 // try to hit the fast path for drawing filtered round rects
543
544 SkRRect devRRect;
joshualitt5531d512014-12-17 15:50:11 -0800545 if (rect.transform(*draw.fMatrix, &devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000546 if (devRRect.allCornersCircular()) {
547 SkRect maskRect;
robertphillips30c4cae2015-09-15 10:20:55 -0700548 if (paint.getMaskFilter()->canFilterMaskGPU(devRRect,
joshualitt5531d512014-12-17 15:50:11 -0800549 draw.fClip->getBounds(),
550 *draw.fMatrix,
551 &maskRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000552 SkIRect finalIRect;
553 maskRect.roundOut(&finalIRect);
554 if (draw.fClip->quickReject(finalIRect)) {
555 // clipped out
556 return;
557 }
robertphillipsff0ca5e2015-07-22 11:54:44 -0700558 if (paint.getMaskFilter()->directFilterRRectMaskGPU(fContext->textureProvider(),
559 fDrawContext,
joshualitt25d9c152015-02-18 12:29:52 -0800560 fRenderTarget,
561 &grPaint,
joshualitt570d2f82015-02-25 13:19:48 -0800562 fClip,
joshualitt5531d512014-12-17 15:50:11 -0800563 *draw.fMatrix,
kkinnunend156d362015-05-18 22:23:54 -0700564 strokeInfo,
egdanield58a0ba2014-06-11 10:30:05 -0700565 devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000566 return;
567 }
568 }
569
570 }
571 }
572
573 }
574
egdanield58a0ba2014-06-11 10:30:05 -0700575 bool usePath = false;
576
577 if (paint.getMaskFilter()) {
578 usePath = true;
579 } else {
580 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700581 if (pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700582 usePath = true;
583 }
584 }
585
586
587 if (usePath) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000588 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700589 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000590 path.addRRect(rect);
halcanary96fcdcc2015-08-27 07:41:13 -0700591 this->drawPath(draw, path, paint, nullptr, true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000592 return;
593 }
Mike Klein744fb732014-06-23 15:13:26 -0400594
robertphillipsea461502015-05-26 11:38:03 -0700595 fDrawContext->drawRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, rect, strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000596}
597
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000598void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer,
joshualitt5531d512014-12-17 15:50:11 -0800599 const SkRRect& inner, const SkPaint& paint) {
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000600 SkStrokeRec stroke(paint);
601 if (stroke.isFillStyle()) {
602
603 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800604 CHECK_SHOULD_DRAW(draw);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000605
606 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700607 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700608 return;
609 }
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000610
halcanary96fcdcc2015-08-27 07:41:13 -0700611 if (nullptr == paint.getMaskFilter() && nullptr == paint.getPathEffect()) {
robertphillipsea461502015-05-26 11:38:03 -0700612 fDrawContext->drawDRRect(fRenderTarget, fClip, grPaint, *draw.fMatrix, outer, inner);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000613 return;
614 }
615 }
616
617 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700618 path.setIsVolatile(true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000619 path.addRRect(outer);
620 path.addRRect(inner);
621 path.setFillType(SkPath::kEvenOdd_FillType);
622
halcanary96fcdcc2015-08-27 07:41:13 -0700623 this->drawPath(draw, path, paint, nullptr, true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000624}
625
626
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000627/////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000628
629void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval,
630 const SkPaint& paint) {
egdanield78a1682014-07-09 10:41:26 -0700631 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawOval", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000632 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800633 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000634
egdanield58a0ba2014-06-11 10:30:05 -0700635 GrStrokeInfo strokeInfo(paint);
636
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000637 bool usePath = false;
638 // some basic reasons we might need to call drawPath...
egdanield58a0ba2014-06-11 10:30:05 -0700639 if (paint.getMaskFilter()) {
robertphillips30c4cae2015-09-15 10:20:55 -0700640 // The RRect path can handle special case blurring
641 SkRRect rr = SkRRect::MakeOval(oval);
642 return this->drawRRect(draw, rr, paint);
egdanield58a0ba2014-06-11 10:30:05 -0700643 } else {
644 const SkPathEffect* pe = paint.getPathEffect();
bsalomon49f085d2014-09-05 13:34:00 -0700645 if (pe && !strokeInfo.isDashed()) {
egdanield58a0ba2014-06-11 10:30:05 -0700646 usePath = true;
647 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000648 }
649
650 if (usePath) {
651 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700652 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000653 path.addOval(oval);
halcanary96fcdcc2015-08-27 07:41:13 -0700654 this->drawPath(draw, path, paint, nullptr, true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000655 return;
656 }
657
658 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -0700659 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700660 return;
661 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000662
robertphillipsea461502015-05-26 11:38:03 -0700663 fDrawContext->drawOval(fRenderTarget, fClip, grPaint, *draw.fMatrix, oval, strokeInfo);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000664}
665
666#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000667
668///////////////////////////////////////////////////////////////////////////////
669
robertphillipsccb1b572015-05-27 11:02:55 -0700670static SkBitmap wrap_texture(GrTexture* texture, int width, int height) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000671 SkBitmap result;
senorblancod0d37ca2015-04-02 04:54:56 -0700672 result.setInfo(SkImageInfo::MakeN32Premul(width, height));
halcanary385fe4d2015-08-26 13:07:48 -0700673 result.setPixelRef(new SkGrPixelRef(result.info(), texture))->unref();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000674 return result;
675}
676
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000677void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath,
678 const SkPaint& paint, const SkMatrix* prePathMatrix,
679 bool pathIsMutable) {
680 CHECK_FOR_ANNOTATION(paint);
joshualitt5531d512014-12-17 15:50:11 -0800681 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -0700682 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPath", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000683
robertphillipsccb1b572015-05-27 11:02:55 -0700684 GrBlurUtils::drawPathWithMaskFilter(fContext, fDrawContext, fRenderTarget,
685 fClip, origSrcPath, paint,
686 *draw.fMatrix, prePathMatrix,
687 draw.fClip->getBounds(), pathIsMutable);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000688}
689
690static const int kBmpSmallTileSize = 1 << 10;
691
692static inline int get_tile_count(const SkIRect& srcRect, int tileSize) {
693 int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1;
694 int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1;
695 return tilesX * tilesY;
696}
697
reed85d91782015-09-10 14:33:38 -0700698static int determine_tile_size(const SkIRect& src, int maxTileSize) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000699 if (maxTileSize <= kBmpSmallTileSize) {
700 return maxTileSize;
701 }
702
703 size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize);
704 size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize);
705
706 maxTileTotalTileSize *= maxTileSize * maxTileSize;
707 smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize;
708
709 if (maxTileTotalTileSize > 2 * smallTotalTileSize) {
710 return kBmpSmallTileSize;
711 } else {
712 return maxTileSize;
713 }
714}
715
716// Given a bitmap, an optional src rect, and a context with a clip and matrix determine what
717// pixels from the bitmap are necessary.
bsalomon74f681d2015-06-23 14:38:48 -0700718static void determine_clipped_src_rect(const GrRenderTarget* rt,
joshualitt570d2f82015-02-25 13:19:48 -0800719 const GrClip& clip,
joshualitt5531d512014-12-17 15:50:11 -0800720 const SkMatrix& viewMatrix,
reed85d91782015-09-10 14:33:38 -0700721 const SkISize& imageSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000722 const SkRect* srcRectPtr,
723 SkIRect* clippedSrcIRect) {
halcanary96fcdcc2015-08-27 07:41:13 -0700724 clip.getConservativeBounds(rt, clippedSrcIRect, nullptr);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000725 SkMatrix inv;
joshualitt5531d512014-12-17 15:50:11 -0800726 if (!viewMatrix.invert(&inv)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000727 clippedSrcIRect->setEmpty();
728 return;
729 }
730 SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect);
731 inv.mapRect(&clippedSrcRect);
bsalomon49f085d2014-09-05 13:34:00 -0700732 if (srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000733 // we've setup src space 0,0 to map to the top left of the src rect.
734 clippedSrcRect.offset(srcRectPtr->fLeft, srcRectPtr->fTop);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000735 if (!clippedSrcRect.intersect(*srcRectPtr)) {
736 clippedSrcIRect->setEmpty();
737 return;
738 }
739 }
740 clippedSrcRect.roundOut(clippedSrcIRect);
reed85d91782015-09-10 14:33:38 -0700741 SkIRect bmpBounds = SkIRect::MakeSize(imageSize);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000742 if (!clippedSrcIRect->intersect(bmpBounds)) {
743 clippedSrcIRect->setEmpty();
744 }
745}
746
reed85d91782015-09-10 14:33:38 -0700747bool SkGpuDevice::shouldTileImageID(uint32_t imageID, const SkIRect& imageRect,
748 const SkMatrix& viewMatrix,
749 const GrTextureParams& params,
750 const SkRect* srcRectPtr,
751 int maxTileSize,
752 int* tileSize,
753 SkIRect* clippedSubset) const {
754 // if it's larger than the max tile size, then we have no choice but tiling.
755 if (imageRect.width() > maxTileSize || imageRect.height() > maxTileSize) {
756 determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, imageRect.size(),
757 srcRectPtr, clippedSubset);
758 *tileSize = determine_tile_size(*clippedSubset, maxTileSize);
759 return true;
760 }
761
762 const size_t area = imageRect.width() * imageRect.height();
763 if (area < 4 * kBmpSmallTileSize * kBmpSmallTileSize) {
764 return false;
765 }
766
767 // if the entire image/bitmap is already in our cache then no reason to tile it
bsalomonafa95e22015-10-12 10:39:46 -0700768 if (GrIsImageInCache(fContext, imageID, imageRect, nullptr, params)) {
reed85d91782015-09-10 14:33:38 -0700769 return false;
770 }
771
772 // At this point we know we could do the draw by uploading the entire bitmap
773 // as a texture. However, if the texture would be large compared to the
774 // cache size and we don't require most of it for this draw then tile to
775 // reduce the amount of upload and cache spill.
776
777 // assumption here is that sw bitmap size is a good proxy for its size as
778 // a texture
779 size_t bmpSize = area * sizeof(SkPMColor); // assume 32bit pixels
780 size_t cacheSize;
781 fContext->getResourceCacheLimits(nullptr, &cacheSize);
782 if (bmpSize < cacheSize / 2) {
783 return false;
784 }
785
786 // Figure out how much of the src we will need based on the src rect and clipping.
787 determine_clipped_src_rect(fRenderTarget, fClip, viewMatrix, imageRect.size(), srcRectPtr,
788 clippedSubset);
789 *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile.
790 size_t usedTileBytes = get_tile_count(*clippedSubset, kBmpSmallTileSize) *
791 kBmpSmallTileSize * kBmpSmallTileSize;
792
793 return usedTileBytes < 2 * bmpSize;
794}
795
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000796bool SkGpuDevice::shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800797 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000798 const GrTextureParams& params,
799 const SkRect* srcRectPtr,
800 int maxTileSize,
801 int* tileSize,
802 SkIRect* clippedSrcRect) const {
803 // if bitmap is explictly texture backed then just use the texture
bsalomon49f085d2014-09-05 13:34:00 -0700804 if (bitmap.getTexture()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000805 return false;
806 }
807
reed85d91782015-09-10 14:33:38 -0700808 return this->shouldTileImageID(bitmap.getGenerationID(), bitmap.getSubset(), viewMatrix, params,
809 srcRectPtr, maxTileSize, tileSize, clippedSrcRect);
810}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000811
reed85d91782015-09-10 14:33:38 -0700812bool SkGpuDevice::shouldTileImage(const SkImage* image, const SkRect* srcRectPtr,
813 SkCanvas::SrcRectConstraint constraint, SkFilterQuality quality,
814 const SkMatrix& viewMatrix) const {
815 // if image is explictly texture backed then just use the texture
816 if (as_IB(image)->peekTexture()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000817 return false;
818 }
819
reed85d91782015-09-10 14:33:38 -0700820 GrTextureParams params;
821 bool doBicubic;
822 GrTextureParams::FilterMode textureFilterMode =
823 GrSkFilterQualityToGrFilterMode(quality, viewMatrix, SkMatrix::I(), &doBicubic);
824
825 int tileFilterPad;
826 if (doBicubic) {
827 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
828 } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) {
829 tileFilterPad = 0;
830 } else {
831 tileFilterPad = 1;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000832 }
reed85d91782015-09-10 14:33:38 -0700833 params.setFilterMode(textureFilterMode);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000834
reed85d91782015-09-10 14:33:38 -0700835 int maxTileSize = fContext->caps()->maxTextureSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000836
reed85d91782015-09-10 14:33:38 -0700837 // these are output, which we safely ignore, as we just want to know the predicate
838 int outTileSize;
839 SkIRect outClippedSrcRect;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000840
reed85d91782015-09-10 14:33:38 -0700841 return this->shouldTileImageID(image->unique(), image->bounds(), viewMatrix, params, srcRectPtr,
842 maxTileSize, &outTileSize, &outClippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000843}
844
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000845void SkGpuDevice::drawBitmap(const SkDraw& origDraw,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000846 const SkBitmap& bitmap,
847 const SkMatrix& m,
848 const SkPaint& paint) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000849 SkMatrix concat;
850 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
851 if (!m.isIdentity()) {
852 concat.setConcat(*draw->fMatrix, m);
853 draw.writable()->fMatrix = &concat;
854 }
halcanary96fcdcc2015-08-27 07:41:13 -0700855 this->drawBitmapCommon(*draw, bitmap, nullptr, nullptr, paint, SkCanvas::kStrict_SrcRectConstraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000856}
857
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000858// This method outsets 'iRect' by 'outset' all around and then clamps its extents to
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000859// 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner
860// of 'iRect' for all possible outsets/clamps.
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000861static inline void clamped_outset_with_offset(SkIRect* iRect,
862 int outset,
863 SkPoint* offset,
864 const SkIRect& clamp) {
865 iRect->outset(outset, outset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000866
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000867 int leftClampDelta = clamp.fLeft - iRect->fLeft;
868 if (leftClampDelta > 0) {
869 offset->fX -= outset - leftClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000870 iRect->fLeft = clamp.fLeft;
871 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000872 offset->fX -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000873 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000874
875 int topClampDelta = clamp.fTop - iRect->fTop;
876 if (topClampDelta > 0) {
877 offset->fY -= outset - topClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000878 iRect->fTop = clamp.fTop;
879 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000880 offset->fY -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000881 }
882
883 if (iRect->fRight > clamp.fRight) {
884 iRect->fRight = clamp.fRight;
885 }
886 if (iRect->fBottom > clamp.fBottom) {
887 iRect->fBottom = clamp.fBottom;
888 }
889}
890
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000891static bool has_aligned_samples(const SkRect& srcRect,
892 const SkRect& transformedRect) {
893 // detect pixel disalignment
894 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) -
895 transformedRect.left()) < COLOR_BLEED_TOLERANCE &&
896 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) -
897 transformedRect.top()) < COLOR_BLEED_TOLERANCE &&
898 SkScalarAbs(transformedRect.width() - srcRect.width()) <
899 COLOR_BLEED_TOLERANCE &&
900 SkScalarAbs(transformedRect.height() - srcRect.height()) <
901 COLOR_BLEED_TOLERANCE) {
902 return true;
903 }
904 return false;
905}
906
907static bool may_color_bleed(const SkRect& srcRect,
908 const SkRect& transformedRect,
robertphillips1accc4c2015-07-20 10:22:29 -0700909 const SkMatrix& m,
910 bool isMSAA) {
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000911 // Only gets called if has_aligned_samples returned false.
912 // So we can assume that sampling is axis aligned but not texel aligned.
913 SkASSERT(!has_aligned_samples(srcRect, transformedRect));
914 SkRect innerSrcRect(srcRect), innerTransformedRect,
915 outerTransformedRect(transformedRect);
robertphillips1accc4c2015-07-20 10:22:29 -0700916 if (isMSAA) {
917 innerSrcRect.inset(SK_Scalar1, SK_Scalar1);
918 } else {
919 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
920 }
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000921 m.mapRect(&innerTransformedRect, innerSrcRect);
922
923 // The gap between outerTransformedRect and innerTransformedRect
924 // represents the projection of the source border area, which is
925 // problematic for color bleeding. We must check whether any
926 // destination pixels sample the border area.
927 outerTransformedRect.inset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
928 innerTransformedRect.outset(COLOR_BLEED_TOLERANCE, COLOR_BLEED_TOLERANCE);
929 SkIRect outer, inner;
930 outerTransformedRect.round(&outer);
931 innerTransformedRect.round(&inner);
932 // If the inner and outer rects round to the same result, it means the
933 // border does not overlap any pixel centers. Yay!
934 return inner != outer;
935}
936
937static bool needs_texture_domain(const SkBitmap& bitmap,
938 const SkRect& srcRect,
939 GrTextureParams &params,
940 const SkMatrix& contextMatrix,
robertphillips1accc4c2015-07-20 10:22:29 -0700941 bool bicubic,
942 bool isMSAA) {
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000943 bool needsTextureDomain = false;
senorblancod0d37ca2015-04-02 04:54:56 -0700944 GrTexture* tex = bitmap.getTexture();
945 int width = tex ? tex->width() : bitmap.width();
946 int height = tex ? tex->height() : bitmap.height();
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000947
948 if (bicubic || params.filterMode() != GrTextureParams::kNone_FilterMode) {
949 // Need texture domain if drawing a sub rect
senorblancod0d37ca2015-04-02 04:54:56 -0700950 needsTextureDomain = srcRect.width() < width ||
951 srcRect.height() < height;
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000952 if (!bicubic && needsTextureDomain && contextMatrix.rectStaysRect()) {
953 // sampling is axis-aligned
954 SkRect transformedRect;
955 contextMatrix.mapRect(&transformedRect, srcRect);
956
957 if (has_aligned_samples(srcRect, transformedRect)) {
958 params.setFilterMode(GrTextureParams::kNone_FilterMode);
959 needsTextureDomain = false;
960 } else {
robertphillips1accc4c2015-07-20 10:22:29 -0700961 needsTextureDomain = may_color_bleed(srcRect, transformedRect,
962 contextMatrix, isMSAA);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000963 }
964 }
965 }
966 return needsTextureDomain;
967}
968
joshualitta61c8172015-08-17 10:51:22 -0700969static void draw_aa_bitmap(GrDrawContext* drawContext, GrContext* context,
970 GrRenderTarget* renderTarget, const GrClip& clip,
971 const SkMatrix& viewMatrix, const SkMatrix& srcRectToDstRect,
972 const SkPaint& paint, const SkBitmap* bitmapPtr, const SkSize& dstSize) {
973 SkShader::TileMode tm[] = {
974 SkShader::kClamp_TileMode,
975 SkShader::kClamp_TileMode,
976 };
977
978 bool doBicubic;
979 GrTextureParams::FilterMode textureFilterMode =
980 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewMatrix,
981 srcRectToDstRect,
982 &doBicubic);
983
984 // Setup texture to wrap bitmap
985 GrTextureParams params(tm, textureFilterMode);
bsalomonafa95e22015-10-12 10:39:46 -0700986 SkAutoTUnref<GrTexture> texture(GrRefCachedBitmapTexture(context, *bitmapPtr, params));
joshualitta61c8172015-08-17 10:51:22 -0700987
988 if (!texture) {
989 SkErrorInternals::SetError(kInternalError_SkError,
990 "Couldn't convert bitmap to texture.");
991 return;
992 }
993
joshualitta61c8172015-08-17 10:51:22 -0700994
995 GrPaint grPaint;
996
997 // Create and insert texture effect
998 SkAutoTUnref<const GrFragmentProcessor> fp;
999 if (doBicubic) {
bsalomon4a339522015-10-06 08:40:50 -07001000 fp.reset(GrBicubicEffect::Create(texture, SkMatrix::I(), tm));
joshualitta61c8172015-08-17 10:51:22 -07001001 } else {
bsalomon4a339522015-10-06 08:40:50 -07001002 fp.reset(GrSimpleTextureEffect::Create(texture, SkMatrix::I(), params));
joshualitta61c8172015-08-17 10:51:22 -07001003 }
1004
bsalomonf1b7a1d2015-09-28 06:26:28 -07001005 if (kAlpha_8_SkColorType == bitmapPtr->colorType()) {
1006 fp.reset(GrFragmentProcessor::MulOutputByInputUnpremulColor(fp));
1007 } else {
1008 fp.reset(GrFragmentProcessor::MulOutputByInputAlpha(fp));
joshualitta61c8172015-08-17 10:51:22 -07001009 }
1010
bsalomonf1b7a1d2015-09-28 06:26:28 -07001011 if (!SkPaintToGrPaintReplaceShader(context, paint, fp, &grPaint)) {
1012 return;
1013 }
joshualitta61c8172015-08-17 10:51:22 -07001014
1015 // Setup dst rect and final matrix
1016 SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight};
1017
1018 SkRect devRect;
1019 viewMatrix.mapRect(&devRect, dstRect);
1020
1021 SkMatrix matrix;
1022 matrix.setIDiv(bitmapPtr->width(), bitmapPtr->height());
1023
1024 SkMatrix dstRectToSrcRect;
1025 if (!srcRectToDstRect.invert(&dstRectToSrcRect)) {
1026 return;
1027 }
1028 matrix.preConcat(dstRectToSrcRect);
1029
joshualittd2b23e02015-08-21 10:53:34 -07001030 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateAAFill(grPaint.getColor(),
joshualitta61c8172015-08-17 10:51:22 -07001031 viewMatrix,
1032 matrix,
1033 dstRect,
1034 devRect));
1035
1036 drawContext->drawBatch(renderTarget, clip, grPaint, batch);
1037}
1038
reed3322a812015-09-16 10:09:24 -07001039static bool can_ignore_strict_subset_constraint(const SkBitmap& bitmap, const SkRect& subset) {
1040 GrTexture* tex = bitmap.getTexture();
1041 int width = tex ? tex->width() : bitmap.width();
1042 int height = tex ? tex->height() : bitmap.height();
1043 return subset.contains(SkRect::MakeIWH(width, height));
1044}
1045
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001046void SkGpuDevice::drawBitmapCommon(const SkDraw& draw,
1047 const SkBitmap& bitmap,
1048 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001049 const SkSize* dstSizePtr,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001050 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001051 SkCanvas::SrcRectConstraint constraint) {
joshualitt5531d512014-12-17 15:50:11 -08001052 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001053
1054 SkRect srcRect;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001055 SkSize dstSize;
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001056 // If there is no src rect, or the src rect contains the entire bitmap then we're effectively
1057 // in the (easier) bleed case, so update flags.
halcanary96fcdcc2015-08-27 07:41:13 -07001058 if (nullptr == srcRectPtr) {
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001059 SkScalar w = SkIntToScalar(bitmap.width());
1060 SkScalar h = SkIntToScalar(bitmap.height());
1061 dstSize.fWidth = w;
1062 dstSize.fHeight = h;
1063 srcRect.set(0, 0, w, h);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001064 } else {
bsalomon49f085d2014-09-05 13:34:00 -07001065 SkASSERT(dstSizePtr);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001066 srcRect = *srcRectPtr;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001067 dstSize = *dstSizePtr;
senorblancod0d37ca2015-04-02 04:54:56 -07001068 }
reed3322a812015-09-16 10:09:24 -07001069
1070 if (can_ignore_strict_subset_constraint(bitmap, srcRect)) {
reeda5517e22015-07-14 10:54:12 -07001071 constraint = SkCanvas::kFast_SrcRectConstraint;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001072 }
1073
derekf367e1862014-12-02 11:02:06 -08001074 // If the render target is not msaa and draw is antialiased, we call
1075 // drawRect instead of drawing on the render target directly.
1076 // FIXME: the tiled bitmap code path doesn't currently support
1077 // anti-aliased edges, we work around that for now by drawing directly
1078 // if the image size exceeds maximum texture size.
bsalomon76228632015-05-29 08:02:10 -07001079 int maxTextureSize = fContext->caps()->maxTextureSize();
joshualitt1a899c92015-08-17 11:53:44 -07001080 bool drawAA = !fRenderTarget->isUnifiedMultisampled() &&
1081 paint.isAntiAlias() &&
1082 bitmap.width() <= maxTextureSize &&
1083 bitmap.height() <= maxTextureSize;
derekf367e1862014-12-02 11:02:06 -08001084
joshualitt1a899c92015-08-17 11:53:44 -07001085 if (paint.getMaskFilter() || drawAA) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001086 // Convert the bitmap to a shader so that the rect can be drawn
1087 // through drawRect, which supports mask filters.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001088 SkBitmap tmp; // subset of bitmap, if necessary
1089 const SkBitmap* bitmapPtr = &bitmap;
joshualitta61c8172015-08-17 10:51:22 -07001090 SkMatrix srcRectToDstRect;
bsalomon49f085d2014-09-05 13:34:00 -07001091 if (srcRectPtr) {
joshualitta61c8172015-08-17 10:51:22 -07001092 srcRectToDstRect.setTranslate(-srcRectPtr->fLeft, -srcRectPtr->fTop);
1093 srcRectToDstRect.postScale(dstSize.fWidth / srcRectPtr->width(),
1094 dstSize.fHeight / srcRectPtr->height());
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001095 // In bleed mode we position and trim the bitmap based on the src rect which is
1096 // already accounted for in 'm' and 'srcRect'. In clamp mode we need to chop out
1097 // the desired portion of the bitmap and then update 'm' and 'srcRect' to
1098 // compensate.
reeda5517e22015-07-14 10:54:12 -07001099 if (SkCanvas::kStrict_SrcRectConstraint == constraint) {
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001100 SkIRect iSrc;
1101 srcRect.roundOut(&iSrc);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001102
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001103 SkPoint offset = SkPoint::Make(SkIntToScalar(iSrc.fLeft),
1104 SkIntToScalar(iSrc.fTop));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001105
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001106 if (!bitmap.extractSubset(&tmp, iSrc)) {
1107 return; // extraction failed
1108 }
1109 bitmapPtr = &tmp;
1110 srcRect.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001111
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +00001112 // The source rect has changed so update the matrix
joshualitta61c8172015-08-17 10:51:22 -07001113 srcRectToDstRect.preTranslate(offset.fX, offset.fY);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001114 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001115 } else {
joshualitta61c8172015-08-17 10:51:22 -07001116 srcRectToDstRect.reset();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001117 }
1118
joshualitta61c8172015-08-17 10:51:22 -07001119 // If we have a maskfilter then we can't batch, so we take a slow path. However, we fast
1120 // path the case where we are drawing an AA rect so we can batch many drawImageRect calls
1121 if (paint.getMaskFilter()) {
1122 SkPaint paintWithShader(paint);
1123 paintWithShader.setShader(SkShader::CreateBitmapShader(*bitmapPtr,
1124 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode,
1125 &srcRectToDstRect))->unref();
1126 SkRect dstRect = {0, 0, dstSize.fWidth, dstSize.fHeight};
1127 this->drawRect(draw, dstRect, paintWithShader);
1128 } else {
1129 draw_aa_bitmap(fDrawContext, fContext, fRenderTarget, fClip, *draw.fMatrix,
1130 srcRectToDstRect, paint, bitmapPtr, dstSize);
1131 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001132
1133 return;
1134 }
1135
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001136 // If there is no mask filter than it is OK to handle the src rect -> dst rect scaling using
1137 // the view matrix rather than a local matrix.
joshualitt5531d512014-12-17 15:50:11 -08001138 SkMatrix viewM = *draw.fMatrix;
reed85d91782015-09-10 14:33:38 -07001139 viewM.preScale(dstSize.fWidth / srcRect.width(),
1140 dstSize.fHeight / srcRect.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001141
1142 GrTextureParams params;
joshualitt9bc39542015-08-12 12:57:54 -07001143 bool doBicubic;
1144 GrTextureParams::FilterMode textureFilterMode =
1145 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewM, SkMatrix::I(),
1146 &doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001147
commit-bot@chromium.org9927bd32014-05-20 17:51:13 +00001148 int tileFilterPad;
1149 if (doBicubic) {
1150 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
1151 } else if (GrTextureParams::kNone_FilterMode == textureFilterMode) {
1152 tileFilterPad = 0;
1153 } else {
1154 tileFilterPad = 1;
1155 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001156 params.setFilterMode(textureFilterMode);
1157
bsalomon76228632015-05-29 08:02:10 -07001158 int maxTileSize = fContext->caps()->maxTextureSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001159 int tileSize;
1160
1161 SkIRect clippedSrcRect;
joshualitt5531d512014-12-17 15:50:11 -08001162 if (this->shouldTileBitmap(bitmap, viewM, params, srcRectPtr, maxTileSize, &tileSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001163 &clippedSrcRect)) {
reeda5517e22015-07-14 10:54:12 -07001164 this->drawTiledBitmap(bitmap, viewM, srcRect, clippedSrcRect, params, paint, constraint,
joshualitt5531d512014-12-17 15:50:11 -08001165 tileSize, doBicubic);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001166 } else {
1167 // take the simple case
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001168 bool needsTextureDomain = needs_texture_domain(bitmap,
1169 srcRect,
1170 params,
joshualitt5531d512014-12-17 15:50:11 -08001171 viewM,
robertphillips1accc4c2015-07-20 10:22:29 -07001172 doBicubic,
1173 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001174 this->internalDrawBitmap(bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001175 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001176 srcRect,
1177 params,
1178 paint,
reeda5517e22015-07-14 10:54:12 -07001179 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001180 doBicubic,
1181 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001182 }
1183}
1184
1185// Break 'bitmap' into several tiles to draw it since it has already
1186// been determined to be too large to fit in VRAM
1187void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001188 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001189 const SkRect& srcRect,
1190 const SkIRect& clippedSrcIRect,
1191 const GrTextureParams& params,
1192 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001193 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001194 int tileSize,
1195 bool bicubic) {
commit-bot@chromium.org9d5e3f12014-05-01 21:23:19 +00001196 // The following pixel lock is technically redundant, but it is desirable
1197 // to lock outside of the tile loop to prevent redecoding the whole image
1198 // at each tile in cases where 'bitmap' holds an SkDiscardablePixelRef that
1199 // is larger than the limit of the discardable memory pool.
1200 SkAutoLockPixels alp(bitmap);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001201 SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect);
1202
1203 int nx = bitmap.width() / tileSize;
1204 int ny = bitmap.height() / tileSize;
1205 for (int x = 0; x <= nx; x++) {
1206 for (int y = 0; y <= ny; y++) {
1207 SkRect tileR;
1208 tileR.set(SkIntToScalar(x * tileSize),
1209 SkIntToScalar(y * tileSize),
1210 SkIntToScalar((x + 1) * tileSize),
1211 SkIntToScalar((y + 1) * tileSize));
1212
1213 if (!SkRect::Intersects(tileR, clippedSrcRect)) {
1214 continue;
1215 }
1216
1217 if (!tileR.intersect(srcRect)) {
1218 continue;
1219 }
1220
1221 SkBitmap tmpB;
1222 SkIRect iTileR;
1223 tileR.roundOut(&iTileR);
1224 SkPoint offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft),
1225 SkIntToScalar(iTileR.fTop));
1226
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001227 // Adjust the context matrix to draw at the right x,y in device space
joshualitt5531d512014-12-17 15:50:11 -08001228 SkMatrix viewM = viewMatrix;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001229 SkMatrix tmpM;
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001230 tmpM.setTranslate(offset.fX - srcRect.fLeft, offset.fY - srcRect.fTop);
joshualitt5531d512014-12-17 15:50:11 -08001231 viewM.preConcat(tmpM);
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001232
robertphillipsec8bb942014-11-21 10:16:25 -08001233 if (GrTextureParams::kNone_FilterMode != params.filterMode() || bicubic) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001234 SkIRect iClampRect;
1235
reeda5517e22015-07-14 10:54:12 -07001236 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001237 // In bleed mode we want to always expand the tile on all edges
1238 // but stay within the bitmap bounds
1239 iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height());
1240 } else {
1241 // In texture-domain/clamp mode we only want to expand the
1242 // tile on edges interior to "srcRect" (i.e., we want to
1243 // not bleed across the original clamped edges)
1244 srcRect.roundOut(&iClampRect);
1245 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001246 int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1;
1247 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001248 }
1249
1250 if (bitmap.extractSubset(&tmpB, iTileR)) {
1251 // now offset it to make it "local" to our tmp bitmap
1252 tileR.offset(-offset.fX, -offset.fY);
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001253 GrTextureParams paramsTemp = params;
robertphillips1accc4c2015-07-20 10:22:29 -07001254 bool needsTextureDomain = needs_texture_domain(
1255 bitmap, srcRect, paramsTemp,
1256 viewM, bicubic,
1257 fRenderTarget->isUnifiedMultisampled());
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001258 this->internalDrawBitmap(tmpB,
joshualitt5531d512014-12-17 15:50:11 -08001259 viewM,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001260 tileR,
1261 paramsTemp,
1262 paint,
reeda5517e22015-07-14 10:54:12 -07001263 constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001264 bicubic,
1265 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001266 }
1267 }
1268 }
1269}
1270
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001271
1272/*
1273 * This is called by drawBitmap(), which has to handle images that may be too
1274 * large to be represented by a single texture.
1275 *
1276 * internalDrawBitmap assumes that the specified bitmap will fit in a texture
1277 * and that non-texture portion of the GrPaint has already been setup.
1278 */
1279void SkGpuDevice::internalDrawBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -08001280 const SkMatrix& viewMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001281 const SkRect& srcRect,
1282 const GrTextureParams& params,
1283 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -07001284 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +00001285 bool bicubic,
1286 bool needsTextureDomain) {
bsalomon76228632015-05-29 08:02:10 -07001287 SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() &&
1288 bitmap.height() <= fContext->caps()->maxTextureSize());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001289
1290 GrTexture* texture;
bsalomonafa95e22015-10-12 10:39:46 -07001291 AutoBitmapTexture abt(fContext, bitmap, params, &texture);
halcanary96fcdcc2015-08-27 07:41:13 -07001292 if (nullptr == texture) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001293 return;
1294 }
1295
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001296 SkRect dstRect = {0, 0, srcRect.width(), srcRect.height() };
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001297 SkRect paintRect;
1298 SkScalar wInv = SkScalarInvert(SkIntToScalar(texture->width()));
1299 SkScalar hInv = SkScalarInvert(SkIntToScalar(texture->height()));
1300 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1301 SkScalarMul(srcRect.fTop, hInv),
1302 SkScalarMul(srcRect.fRight, wInv),
1303 SkScalarMul(srcRect.fBottom, hInv));
1304
egdaniel79da63f2015-10-09 10:55:16 -07001305 SkMatrix texMatrix;
1306 texMatrix.reset();
1307 if (kAlpha_8_SkColorType == bitmap.colorType() && paint.getShader()) {
1308 // In cases where we are doing an A8 bitmap draw with a shader installed, we cannot use
1309 // local coords with the bitmap draw since it may mess up texture look ups for the shader.
1310 // Thus we need to pass in the transform matrix directly to the texture processor used for
1311 // the bitmap draw.
1312 texMatrix.setScale(wInv, hInv);
1313 }
1314
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001315 SkRect textureDomain = SkRect::MakeEmpty();
joshualitt5f10b5c2015-07-09 10:24:35 -07001316
1317 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
1318 // the rest from the SkPaint.
1319 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001320 SkAutoTUnref<const GrFragmentProcessor> fp;
joshualitt5f10b5c2015-07-09 10:24:35 -07001321
reeda5517e22015-07-14 10:54:12 -07001322 if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001323 // Use a constrained texture domain to avoid color bleeding
1324 SkScalar left, top, right, bottom;
1325 if (srcRect.width() > SK_Scalar1) {
1326 SkScalar border = SK_ScalarHalf / texture->width();
1327 left = paintRect.left() + border;
1328 right = paintRect.right() - border;
1329 } else {
1330 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
1331 }
1332 if (srcRect.height() > SK_Scalar1) {
1333 SkScalar border = SK_ScalarHalf / texture->height();
1334 top = paintRect.top() + border;
1335 bottom = paintRect.bottom() - border;
1336 } else {
1337 top = bottom = SkScalarHalf(paintRect.top() + paintRect.bottom());
1338 }
1339 textureDomain.setLTRB(left, top, right, bottom);
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001340 if (bicubic) {
egdaniel79da63f2015-10-09 10:55:16 -07001341 fp.reset(GrBicubicEffect::Create(texture, texMatrix, textureDomain));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001342 } else {
bsalomon4a339522015-10-06 08:40:50 -07001343 fp.reset(GrTextureDomainEffect::Create(texture,
egdaniel79da63f2015-10-09 10:55:16 -07001344 texMatrix,
joshualitt5531d512014-12-17 15:50:11 -08001345 textureDomain,
1346 GrTextureDomain::kClamp_Mode,
1347 params.filterMode()));
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001348 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001349 } else if (bicubic) {
commit-bot@chromium.orgbc91fd72013-12-10 12:53:39 +00001350 SkASSERT(GrTextureParams::kNone_FilterMode == params.filterMode());
1351 SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() };
egdaniel79da63f2015-10-09 10:55:16 -07001352 fp.reset(GrBicubicEffect::Create(texture, texMatrix, tileModes));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001353 } else {
egdaniel79da63f2015-10-09 10:55:16 -07001354 fp.reset(GrSimpleTextureEffect::Create(texture, texMatrix, params));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001355 }
1356
egdaniel79da63f2015-10-09 10:55:16 -07001357 SkAutoTUnref<const GrFragmentProcessor> shaderFP;
1358
bsalomonf1b7a1d2015-09-28 06:26:28 -07001359 if (kAlpha_8_SkColorType == bitmap.colorType()) {
egdaniel79da63f2015-10-09 10:55:16 -07001360 if (const SkShader* shader = paint.getShader()) {
1361 shaderFP.reset(shader->asFragmentProcessor(this->context(),
1362 viewMatrix,
1363 nullptr,
1364 paint.getFilterQuality()));
1365 if (!shaderFP) {
1366 return;
1367 }
1368 const GrFragmentProcessor* fpSeries[] = { shaderFP.get(), fp.get() };
1369 fp.reset(GrFragmentProcessor::RunInSeries(fpSeries, 2));
1370 } else {
1371 fp.reset(GrFragmentProcessor::MulOutputByInputUnpremulColor(fp));
1372 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001373 } else {
1374 fp.reset(GrFragmentProcessor::MulOutputByInputAlpha(fp));
1375 }
1376
1377 if (!SkPaintToGrPaintReplaceShader(this->context(), paint, fp, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001378 return;
1379 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001380
egdaniel79da63f2015-10-09 10:55:16 -07001381 if (kAlpha_8_SkColorType == bitmap.colorType() && paint.getShader()) {
1382 // We don't have local coords in this case and have previously set the transform
1383 // matrices directly on the texture processor.
1384 fDrawContext->drawRect(fRenderTarget, fClip, grPaint, viewMatrix, dstRect);
1385 } else {
1386 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, viewMatrix, dstRect,
1387 paintRect);
1388 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001389}
1390
fmalita2d97bc12014-11-20 10:44:58 -08001391bool SkGpuDevice::filterTexture(GrContext* context, GrTexture* texture,
senorblancod0d37ca2015-04-02 04:54:56 -07001392 int width, int height,
fmalita2d97bc12014-11-20 10:44:58 -08001393 const SkImageFilter* filter,
1394 const SkImageFilter::Context& ctx,
1395 SkBitmap* result, SkIPoint* offset) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001396 SkASSERT(filter);
fmalita2d97bc12014-11-20 10:44:58 -08001397
robertphillipsefbffed2015-06-22 12:06:08 -07001398 SkImageFilter::Proxy proxy(this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001399
1400 if (filter->canFilterImageGPU()) {
senorblancod0d37ca2015-04-02 04:54:56 -07001401 return filter->filterImageGPU(&proxy, wrap_texture(texture, width, height),
1402 ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001403 } else {
1404 return false;
1405 }
1406}
1407
1408void SkGpuDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap,
1409 int left, int top, const SkPaint& paint) {
1410 // drawSprite is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001411 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001412
1413 SkAutoLockPixels alp(bitmap, !bitmap.getTexture());
1414 if (!bitmap.getTexture() && !bitmap.readyToDraw()) {
1415 return;
1416 }
1417
1418 int w = bitmap.width();
1419 int h = bitmap.height();
1420
1421 GrTexture* texture;
bsalomonafa95e22015-10-12 10:39:46 -07001422 // draw sprite neither filters nor tiles.
1423 AutoBitmapTexture abt(fContext, bitmap, GrTextureParams::ClampNoFilter(), &texture);
joshualitt5f5a8d72015-02-25 14:09:45 -08001424 if (!texture) {
1425 return;
1426 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001427
bsalomonf1b7a1d2015-09-28 06:26:28 -07001428 bool alphaOnly = kAlpha_8_SkColorType == bitmap.colorType();
1429
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001430 SkImageFilter* filter = paint.getImageFilter();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001431 // This bitmap will own the filtered result as a texture.
1432 SkBitmap filteredBitmap;
1433
bsalomon49f085d2014-09-05 13:34:00 -07001434 if (filter) {
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001435 SkIPoint offset = SkIPoint::Make(0, 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001436 SkMatrix matrix(*draw.fMatrix);
1437 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001438 SkIRect clipBounds = SkIRect::MakeWH(bitmap.width(), bitmap.height());
senorblancobe129b22014-08-08 07:14:35 -07001439 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
senorblanco55b6d8b2014-07-30 11:26:46 -07001440 // This cache is transient, and is freed (along with all its contained
1441 // textures) when it goes out of scope.
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001442 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001443 if (this->filterTexture(fContext, texture, w, h, filter, ctx, &filteredBitmap,
fmalita2d97bc12014-11-20 10:44:58 -08001444 &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001445 texture = (GrTexture*) filteredBitmap.getTexture();
1446 w = filteredBitmap.width();
1447 h = filteredBitmap.height();
senorblanco@chromium.org6776b822014-01-03 21:48:22 +00001448 left += offset.x();
1449 top += offset.y();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001450 } else {
1451 return;
1452 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001453 SkASSERT(!GrPixelConfigIsAlphaOnly(texture->config()));
1454 alphaOnly = false;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001455 }
1456
1457 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001458 SkAutoTUnref<const GrFragmentProcessor> fp(
bsalomon4a339522015-10-06 08:40:50 -07001459 GrSimpleTextureEffect::Create(texture, SkMatrix::I()));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001460 if (alphaOnly) {
1461 fp.reset(GrFragmentProcessor::MulOutputByInputUnpremulColor(fp));
1462 } else {
1463 fp.reset(GrFragmentProcessor::MulOutputByInputAlpha(fp));
1464 }
1465 if (!SkPaintToGrPaintReplaceShader(this->context(), paint, fp, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001466 return;
1467 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001468
robertphillipsea461502015-05-26 11:38:03 -07001469 fDrawContext->drawNonAARectToRect(fRenderTarget,
1470 fClip,
1471 grPaint,
1472 SkMatrix::I(),
1473 SkRect::MakeXYWH(SkIntToScalar(left),
1474 SkIntToScalar(top),
1475 SkIntToScalar(w),
1476 SkIntToScalar(h)),
1477 SkRect::MakeXYWH(0,
1478 0,
1479 SK_Scalar1 * w / texture->width(),
1480 SK_Scalar1 * h / texture->height()));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001481}
1482
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001483void SkGpuDevice::drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001484 const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -07001485 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001486 SkMatrix matrix;
1487 SkRect bitmapBounds, tmpSrc;
1488
1489 bitmapBounds.set(0, 0,
1490 SkIntToScalar(bitmap.width()),
1491 SkIntToScalar(bitmap.height()));
1492
1493 // Compute matrix from the two rectangles
bsalomon49f085d2014-09-05 13:34:00 -07001494 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001495 tmpSrc = *src;
1496 } else {
1497 tmpSrc = bitmapBounds;
1498 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001499
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001500 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1501
1502 // clip the tmpSrc to the bounds of the bitmap. No check needed if src==null.
bsalomon49f085d2014-09-05 13:34:00 -07001503 if (src) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001504 if (!bitmapBounds.contains(tmpSrc)) {
1505 if (!tmpSrc.intersect(bitmapBounds)) {
1506 return; // nothing to draw
1507 }
1508 }
1509 }
1510
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001511 SkRect tmpDst;
1512 matrix.mapRect(&tmpDst, tmpSrc);
1513
1514 SkTCopyOnFirstWrite<SkDraw> draw(origDraw);
1515 if (0 != tmpDst.fLeft || 0 != tmpDst.fTop) {
1516 // Translate so that tempDst's top left is at the origin.
1517 matrix = *origDraw.fMatrix;
1518 matrix.preTranslate(tmpDst.fLeft, tmpDst.fTop);
1519 draw.writable()->fMatrix = &matrix;
1520 }
1521 SkSize dstSize;
1522 dstSize.fWidth = tmpDst.width();
1523 dstSize.fHeight = tmpDst.height();
1524
reeda5517e22015-07-14 10:54:12 -07001525 this->drawBitmapCommon(*draw, bitmap, &tmpSrc, &dstSize, paint, constraint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001526}
1527
1528void SkGpuDevice::drawDevice(const SkDraw& draw, SkBaseDevice* device,
1529 int x, int y, const SkPaint& paint) {
1530 // clear of the source device must occur before CHECK_SHOULD_DRAW
egdanield78a1682014-07-09 10:41:26 -07001531 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawDevice", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001532 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
kkinnunen2e4414e2015-02-19 07:20:40 -08001533
1534 // TODO: If the source device covers the whole of this device, we could
1535 // omit fNeedsClear -related flushing.
1536 // TODO: if source needs clear, we could maybe omit the draw fully.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001537
1538 // drawDevice is defined to be in device coords.
joshualitt5531d512014-12-17 15:50:11 -08001539 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001540
1541 GrRenderTarget* devRT = dev->accessRenderTarget();
1542 GrTexture* devTex;
halcanary96fcdcc2015-08-27 07:41:13 -07001543 if (nullptr == (devTex = devRT->asTexture())) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001544 return;
1545 }
1546
robertphillips7b9e8a42014-12-11 08:20:31 -08001547 const SkImageInfo ii = dev->imageInfo();
1548 int w = ii.width();
1549 int h = ii.height();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001550
1551 SkImageFilter* filter = paint.getImageFilter();
1552 // This bitmap will own the filtered result as a texture.
1553 SkBitmap filteredBitmap;
1554
bsalomon49f085d2014-09-05 13:34:00 -07001555 if (filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001556 SkIPoint offset = SkIPoint::Make(0, 0);
1557 SkMatrix matrix(*draw.fMatrix);
1558 matrix.postTranslate(SkIntToScalar(-x), SkIntToScalar(-y));
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001559 SkIRect clipBounds = SkIRect::MakeWH(devTex->width(), devTex->height());
senorblanco55b6d8b2014-07-30 11:26:46 -07001560 // This cache is transient, and is freed (along with all its contained
1561 // textures) when it goes out of scope.
senorblancobe129b22014-08-08 07:14:35 -07001562 SkAutoTUnref<SkImageFilter::Cache> cache(getImageFilterCache());
commit-bot@chromium.orgf7efa502014-04-11 18:57:00 +00001563 SkImageFilter::Context ctx(matrix, clipBounds, cache);
senorblancod0d37ca2015-04-02 04:54:56 -07001564 if (this->filterTexture(fContext, devTex, device->width(), device->height(),
1565 filter, ctx, &filteredBitmap, &offset)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001566 devTex = filteredBitmap.getTexture();
1567 w = filteredBitmap.width();
1568 h = filteredBitmap.height();
1569 x += offset.fX;
1570 y += offset.fY;
1571 } else {
1572 return;
1573 }
1574 }
1575
1576 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001577 SkAutoTUnref<const GrFragmentProcessor> fp(
bsalomon4a339522015-10-06 08:40:50 -07001578 GrSimpleTextureEffect::Create(devTex, SkMatrix::I()));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001579 if (GrPixelConfigIsAlphaOnly(devTex->config())) {
1580 // Can this happen?
1581 fp.reset(GrFragmentProcessor::MulOutputByInputUnpremulColor(fp));
1582 } else {
1583 fp.reset(GrFragmentProcessor::MulOutputByInputAlpha(fp));
1584 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001585
bsalomonf1b7a1d2015-09-28 06:26:28 -07001586 if (!SkPaintToGrPaintReplaceShader(this->context(), paint, fp, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001587 return;
1588 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001589
1590 SkRect dstRect = SkRect::MakeXYWH(SkIntToScalar(x),
1591 SkIntToScalar(y),
1592 SkIntToScalar(w),
1593 SkIntToScalar(h));
1594
1595 // The device being drawn may not fill up its texture (e.g. saveLayer uses approximate
1596 // scratch texture).
1597 SkRect srcRect = SkRect::MakeWH(SK_Scalar1 * w / devTex->width(),
1598 SK_Scalar1 * h / devTex->height());
1599
robertphillipsea461502015-05-26 11:38:03 -07001600 fDrawContext->drawNonAARectToRect(fRenderTarget, fClip, grPaint, SkMatrix::I(), dstRect,
1601 srcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001602}
1603
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001604bool SkGpuDevice::canHandleImageFilter(const SkImageFilter* filter) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001605 return filter->canFilterImageGPU();
1606}
1607
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00001608bool SkGpuDevice::filterImage(const SkImageFilter* filter, const SkBitmap& src,
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +00001609 const SkImageFilter::Context& ctx,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001610 SkBitmap* result, SkIPoint* offset) {
1611 // want explicitly our impl, so guard against a subclass of us overriding it
1612 if (!this->SkGpuDevice::canHandleImageFilter(filter)) {
1613 return false;
1614 }
1615
1616 SkAutoLockPixels alp(src, !src.getTexture());
1617 if (!src.getTexture() && !src.readyToDraw()) {
1618 return false;
1619 }
1620
1621 GrTexture* texture;
1622 // We assume here that the filter will not attempt to tile the src. Otherwise, this cache lookup
1623 // must be pushed upstack.
bsalomonafa95e22015-10-12 10:39:46 -07001624 AutoBitmapTexture abt(fContext, src, GrTextureParams::ClampNoFilter(), &texture);
robertphillipsf83be822015-04-30 08:55:06 -07001625 if (!texture) {
1626 return false;
1627 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001628
senorblancod0d37ca2015-04-02 04:54:56 -07001629 return this->filterTexture(fContext, texture, src.width(), src.height(),
1630 filter, ctx, result, offset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001631}
1632
reed85d91782015-09-10 14:33:38 -07001633static bool wrap_as_bm(GrContext* ctx, const SkImage* image, SkBitmap* bm) {
bsalomonafa95e22015-10-12 10:39:46 -07001634 // TODO: It is wrong to assume these texture params here.
1635 SkAutoTUnref<GrTexture> tex(as_IB(image)->asTextureRef(ctx, GrTextureParams::ClampNoFilter()));
reeda85d4d02015-05-06 12:56:48 -07001636 if (tex) {
reed8b26b992015-05-07 15:36:17 -07001637 GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), bm);
1638 return true;
reeda85d4d02015-05-06 12:56:48 -07001639 } else {
reed8b26b992015-05-07 15:36:17 -07001640 return as_IB(image)->getROPixels(bm);
reeda85d4d02015-05-06 12:56:48 -07001641 }
reeda85d4d02015-05-06 12:56:48 -07001642}
1643
1644void SkGpuDevice::drawImage(const SkDraw& draw, const SkImage* image, SkScalar x, SkScalar y,
1645 const SkPaint& paint) {
1646 SkBitmap bm;
reed85d91782015-09-10 14:33:38 -07001647 if (GrTexture* tex = as_IB(image)->peekTexture()) {
1648 GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), &bm);
1649 } else {
1650 if (this->shouldTileImage(image, nullptr, SkCanvas::kFast_SrcRectConstraint,
1651 paint.getFilterQuality(), *draw.fMatrix)) {
1652 // only support tiling as bitmap at the moment, so force raster-version
1653 if (!as_IB(image)->getROPixels(&bm)) {
1654 return;
1655 }
1656 } else {
1657 if (!wrap_as_bm(this->context(), image, &bm)) {
1658 return;
1659 }
1660 }
reeda85d4d02015-05-06 12:56:48 -07001661 }
reed85d91782015-09-10 14:33:38 -07001662 this->drawBitmap(draw, bm, SkMatrix::MakeTrans(x, y), paint);
reeda85d4d02015-05-06 12:56:48 -07001663}
1664
1665void SkGpuDevice::drawImageRect(const SkDraw& draw, const SkImage* image, const SkRect* src,
reeda5517e22015-07-14 10:54:12 -07001666 const SkRect& dst, const SkPaint& paint,
1667 SkCanvas::SrcRectConstraint constraint) {
reeda85d4d02015-05-06 12:56:48 -07001668 SkBitmap bm;
reed85d91782015-09-10 14:33:38 -07001669 if (GrTexture* tex = as_IB(image)->peekTexture()) {
1670 GrWrapTextureInBitmap(tex, image->width(), image->height(), image->isOpaque(), &bm);
1671 } else {
1672 SkMatrix viewMatrix = *draw.fMatrix;
1673 viewMatrix.preScale(dst.width() / (src ? src->width() : image->width()),
1674 dst.height() / (src ? src->height() : image->height()));
1675
1676 if (this->shouldTileImage(image, src, constraint, paint.getFilterQuality(), viewMatrix)) {
1677 // only support tiling as bitmap at the moment, so force raster-version
1678 if (!as_IB(image)->getROPixels(&bm)) {
1679 return;
1680 }
1681 } else {
1682 if (!wrap_as_bm(this->context(), image, &bm)) {
1683 return;
1684 }
1685 }
reeda85d4d02015-05-06 12:56:48 -07001686 }
reed85d91782015-09-10 14:33:38 -07001687 this->drawBitmapRect(draw, bm, src, dst, paint, constraint);
reeda85d4d02015-05-06 12:56:48 -07001688}
1689
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001690///////////////////////////////////////////////////////////////////////////////
1691
1692// must be in SkCanvas::VertexMode order
1693static const GrPrimitiveType gVertexMode2PrimitiveType[] = {
1694 kTriangles_GrPrimitiveType,
1695 kTriangleStrip_GrPrimitiveType,
1696 kTriangleFan_GrPrimitiveType,
1697};
1698
1699void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
1700 int vertexCount, const SkPoint vertices[],
1701 const SkPoint texs[], const SkColor colors[],
1702 SkXfermode* xmode,
1703 const uint16_t indices[], int indexCount,
1704 const SkPaint& paint) {
joshualitt5531d512014-12-17 15:50:11 -08001705 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001706 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawVertices", fContext);
mtklein533eb782014-08-27 10:39:42 -07001707
halcanary96fcdcc2015-08-27 07:41:13 -07001708 // If both textures and vertex-colors are nullptr, strokes hairlines with the paint's color.
1709 if ((nullptr == texs || nullptr == paint.getShader()) && nullptr == colors) {
mtklein533eb782014-08-27 10:39:42 -07001710
halcanary96fcdcc2015-08-27 07:41:13 -07001711 texs = nullptr;
mtklein533eb782014-08-27 10:39:42 -07001712
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001713 SkPaint copy(paint);
1714 copy.setStyle(SkPaint::kStroke_Style);
1715 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001716
bsalomonf1b7a1d2015-09-28 06:26:28 -07001717 GrPaint grPaint;
dandov32a311b2014-07-15 19:46:26 -07001718 // we ignore the shader if texs is null.
bsalomonf1b7a1d2015-09-28 06:26:28 -07001719 if (!SkPaintToGrPaintNoShader(this->context(), copy, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001720 return;
1721 }
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001722
dandov32a311b2014-07-15 19:46:26 -07001723 int triangleCount = 0;
halcanary96fcdcc2015-08-27 07:41:13 -07001724 int n = (nullptr == indices) ? vertexCount : indexCount;
dandov32a311b2014-07-15 19:46:26 -07001725 switch (vmode) {
1726 case SkCanvas::kTriangles_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001727 triangleCount = n / 3;
dandov32a311b2014-07-15 19:46:26 -07001728 break;
1729 case SkCanvas::kTriangleStrip_VertexMode:
1730 case SkCanvas::kTriangleFan_VertexMode:
bsalomona098dd42014-08-06 11:01:44 -07001731 triangleCount = n - 2;
dandov32a311b2014-07-15 19:46:26 -07001732 break;
1733 }
mtklein533eb782014-08-27 10:39:42 -07001734
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001735 VertState state(vertexCount, indices, indexCount);
1736 VertState::Proc vertProc = state.chooseProc(vmode);
mtklein533eb782014-08-27 10:39:42 -07001737
dandov32a311b2014-07-15 19:46:26 -07001738 //number of indices for lines per triangle with kLines
1739 indexCount = triangleCount * 6;
mtklein533eb782014-08-27 10:39:42 -07001740
bsalomonf1b7a1d2015-09-28 06:26:28 -07001741 SkAutoTDeleteArray<uint16_t> lineIndices(new uint16_t[indexCount]);
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001742 int i = 0;
1743 while (vertProc(&state)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001744 lineIndices[i] = state.f0;
1745 lineIndices[i + 1] = state.f1;
1746 lineIndices[i + 2] = state.f1;
1747 lineIndices[i + 3] = state.f2;
1748 lineIndices[i + 4] = state.f2;
1749 lineIndices[i + 5] = state.f0;
commit-bot@chromium.org559a8832014-05-30 10:08:22 +00001750 i += 6;
1751 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001752 fDrawContext->drawVertices(fRenderTarget,
1753 fClip,
1754 grPaint,
1755 *draw.fMatrix,
1756 kLines_GrPrimitiveType,
1757 vertexCount,
1758 vertices,
1759 texs,
1760 colors,
1761 lineIndices.get(),
1762 indexCount);
1763 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001764 }
1765
bsalomonf1b7a1d2015-09-28 06:26:28 -07001766 GrPrimitiveType primType = gVertexMode2PrimitiveType[vmode];
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001767
1768 SkAutoSTMalloc<128, GrColor> convertedColors(0);
bsalomon49f085d2014-09-05 13:34:00 -07001769 if (colors) {
bsalomonaa48d362015-10-01 08:34:17 -07001770 // need to convert byte order and from non-PM to PM. TODO: Keep unpremul until after
1771 // interpolation.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001772 convertedColors.reset(vertexCount);
1773 for (int i = 0; i < vertexCount; ++i) {
bsalomonaa48d362015-10-01 08:34:17 -07001774 convertedColors[i] = SkColorToPremulGrColor(colors[i]);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001775 }
1776 colors = convertedColors.get();
1777 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001778 GrPaint grPaint;
bsalomonaa48d362015-10-01 08:34:17 -07001779 if (texs && paint.getShader()) {
1780 if (colors) {
1781 // When there are texs and colors the shader and colors are combined using xmode. A null
1782 // xmode is defined to mean modulate.
1783 SkXfermode::Mode colorMode;
1784 if (xmode) {
1785 if (!xmode->asMode(&colorMode)) {
1786 return;
1787 }
1788 } else {
1789 colorMode = SkXfermode::kModulate_Mode;
1790 }
1791 if (!SkPaintToGrPaintWithXfermode(this->context(), paint, *draw.fMatrix, colorMode,
1792 false, &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001793 return;
1794 }
1795 } else {
bsalomonaa48d362015-10-01 08:34:17 -07001796 // We have a shader, but no colors to blend it against.
1797 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
1798 return;
1799 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001800 }
bsalomonaa48d362015-10-01 08:34:17 -07001801 } else {
1802 if (colors) {
1803 // We have colors, but either have no shader or no texture coords (which implies that
1804 // we should ignore the shader).
1805 if (!SkPaintToGrPaintWithPrimitiveColor(this->context(), paint, &grPaint)) {
1806 return;
1807 }
1808 } else {
1809 // No colors and no shaders. Just draw with the paint color.
1810 if (!SkPaintToGrPaintNoShader(this->context(), paint, &grPaint)) {
1811 return;
1812 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001813 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001814 }
1815
robertphillipsea461502015-05-26 11:38:03 -07001816 fDrawContext->drawVertices(fRenderTarget,
1817 fClip,
1818 grPaint,
1819 *draw.fMatrix,
1820 primType,
1821 vertexCount,
1822 vertices,
1823 texs,
1824 colors,
bsalomonf1b7a1d2015-09-28 06:26:28 -07001825 indices,
robertphillipsea461502015-05-26 11:38:03 -07001826 indexCount);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001827}
1828
1829///////////////////////////////////////////////////////////////////////////////
1830
jvanverth31ff7622015-08-07 10:09:28 -07001831void SkGpuDevice::drawAtlas(const SkDraw& draw, const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001832 const SkRect texRect[], const SkColor colors[], int count,
1833 SkXfermode::Mode mode, const SkPaint& paint) {
1834 if (paint.isAntiAlias()) {
jvanverth31ff7622015-08-07 10:09:28 -07001835 this->INHERITED::drawAtlas(draw, atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001836 return;
1837 }
1838
jvanverth31ff7622015-08-07 10:09:28 -07001839 CHECK_SHOULD_DRAW(draw);
1840 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
1841
reedca109532015-06-25 16:25:25 -07001842 SkPaint p(paint);
1843 p.setShader(atlas->newShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode))->unref();
1844
jvanverth31ff7622015-08-07 10:09:28 -07001845 GrPaint grPaint;
robertphillips29ccdf82015-07-24 10:20:45 -07001846 if (colors) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001847 if (!SkPaintToGrPaintWithXfermode(this->context(), p, *draw.fMatrix, mode, true,
1848 &grPaint)) {
1849 return;
1850 }
1851 } else {
1852 if (!SkPaintToGrPaint(this->context(), p, *draw.fMatrix, &grPaint)) {
jvanverth31ff7622015-08-07 10:09:28 -07001853 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001854 }
1855 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001856
1857 SkDEBUGCODE(this->validate();)
jvanverth31ff7622015-08-07 10:09:28 -07001858 fDrawContext->drawAtlas(fRenderTarget, fClip, grPaint, *draw.fMatrix,
1859 count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001860}
1861
1862///////////////////////////////////////////////////////////////////////////////
1863
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001864void SkGpuDevice::drawText(const SkDraw& draw, const void* text,
joshualitt5531d512014-12-17 15:50:11 -08001865 size_t byteLength, SkScalar x, SkScalar y,
1866 const SkPaint& paint) {
1867 CHECK_SHOULD_DRAW(draw);
egdanield78a1682014-07-09 10:41:26 -07001868 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawText", fContext);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001869
jvanverth8c27a182014-10-14 08:45:50 -07001870 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001871 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001872 return;
1873 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001874
jvanverth8c27a182014-10-14 08:45:50 -07001875 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001876
robertphillips2334fb62015-06-17 05:43:33 -07001877 fDrawContext->drawText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001878 (const char *)text, byteLength, x, y, draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001879}
1880
fmalita05c4a432014-09-29 06:29:53 -07001881void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text, size_t byteLength,
1882 const SkScalar pos[], int scalarsPerPos,
1883 const SkPoint& offset, const SkPaint& paint) {
egdanielbbcb38d2014-06-19 10:19:29 -07001884 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawPosText", fContext);
joshualitt5531d512014-12-17 15:50:11 -08001885 CHECK_SHOULD_DRAW(draw);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001886
jvanverth8c27a182014-10-14 08:45:50 -07001887 GrPaint grPaint;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001888 if (!SkPaintToGrPaint(this->context(), paint, *draw.fMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001889 return;
1890 }
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001891
jvanverth8c27a182014-10-14 08:45:50 -07001892 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001893
robertphillips2334fb62015-06-17 05:43:33 -07001894 fDrawContext->drawPosText(fRenderTarget, fClip, grPaint, paint, *draw.fMatrix,
joshualitt6e8cd962015-03-20 10:30:14 -07001895 (const char *)text, byteLength, pos, scalarsPerPos, offset,
1896 draw.fClip->getBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001897}
1898
joshualitt9c328182015-03-23 08:13:04 -07001899void SkGpuDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y,
1900 const SkPaint& paint, SkDrawFilter* drawFilter) {
1901 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawTextBlob", fContext);
1902 CHECK_SHOULD_DRAW(draw);
1903
1904 SkDEBUGCODE(this->validate();)
1905
robertphillips2334fb62015-06-17 05:43:33 -07001906 fDrawContext->drawTextBlob(fRenderTarget, fClip, paint, *draw.fMatrix,
robertphillipsccb1b572015-05-27 11:02:55 -07001907 blob, x, y, drawFilter, draw.fClip->getBounds());
joshualitt9c328182015-03-23 08:13:04 -07001908}
1909
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001910///////////////////////////////////////////////////////////////////////////////
1911
reedb2db8982014-11-13 12:41:02 -08001912bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const {
robertphillips9c240a12015-05-28 07:45:59 -07001913 return GrTextContext::ShouldDisableLCD(paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001914}
1915
1916void SkGpuDevice::flush() {
1917 DO_DEFERRED_CLEAR();
bsalomonc49e8682015-06-30 11:37:35 -07001918 fRenderTarget->prepareForExternalIO();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001919}
1920
1921///////////////////////////////////////////////////////////////////////////////
1922
reed76033be2015-03-14 10:54:31 -07001923SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
bsalomonf2703d82014-10-28 14:33:06 -07001924 GrSurfaceDesc desc;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001925 desc.fConfig = fRenderTarget->config();
bsalomonf2703d82014-10-28 14:33:06 -07001926 desc.fFlags = kRenderTarget_GrSurfaceFlag;
fmalita6987dca2014-11-13 08:33:37 -08001927 desc.fWidth = cinfo.fInfo.width();
1928 desc.fHeight = cinfo.fInfo.height();
vbuzinovdded6962015-06-12 08:59:45 -07001929 desc.fSampleCnt = fRenderTarget->desc().fSampleCnt;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001930
1931 SkAutoTUnref<GrTexture> texture;
1932 // Skia's convention is to only clear a device if it is non-opaque.
bsalomon74f681d2015-06-23 14:38:48 -07001933 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001934
hcm4396fa52014-10-27 21:43:30 -07001935 // layers are never draw in repeat modes, so we can request an approx
1936 // match and ignore any padding.
bsalomoneae62002015-07-31 13:59:30 -07001937 if (kNever_TileUsage == cinfo.fTileUsage) {
1938 texture.reset(fContext->textureProvider()->createApproxTexture(desc));
1939 } else {
1940 texture.reset(fContext->textureProvider()->createTexture(desc, true));
1941 }
bsalomonafe30052015-01-16 07:32:33 -08001942
1943 if (texture) {
robertphillips7b05ff12015-06-19 14:14:54 -07001944 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
senorblancod0d37ca2015-04-02 04:54:56 -07001945 return SkGpuDevice::Create(
bsalomon74f681d2015-06-23 14:38:48 -07001946 texture->asRenderTarget(), cinfo.fInfo.width(), cinfo.fInfo.height(), &props, init);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001947 } else {
joshualitt5f5a8d72015-02-25 14:09:45 -08001948 SkErrorInternals::SetError( kInternalError_SkError,
reed61f501f2015-04-29 08:34:00 -07001949 "---- failed to create gpu device texture [%d %d]\n",
joshualitt5f5a8d72015-02-25 14:09:45 -08001950 cinfo.fInfo.width(), cinfo.fInfo.height());
halcanary96fcdcc2015-08-27 07:41:13 -07001951 return nullptr;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001952 }
1953}
1954
reed4a8126e2014-09-22 07:29:03 -07001955SkSurface* SkGpuDevice::newSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
bsalomonafe30052015-01-16 07:32:33 -08001956 // TODO: Change the signature of newSurface to take a budgeted parameter.
1957 static const SkSurface::Budgeted kBudgeted = SkSurface::kNo_Budgeted;
vbuzinovdded6962015-06-12 08:59:45 -07001958 return SkSurface::NewRenderTarget(fContext, kBudgeted, info, fRenderTarget->desc().fSampleCnt,
bsalomonafe30052015-01-16 07:32:33 -08001959 &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001960}
1961
robertphillips30d2cc62014-09-24 08:52:18 -07001962bool SkGpuDevice::EXPERIMENTAL_drawPicture(SkCanvas* mainCanvas, const SkPicture* mainPicture,
reedd5fa1a42014-08-09 11:08:05 -07001963 const SkMatrix* matrix, const SkPaint* paint) {
robertphillips63242d72014-12-04 08:31:02 -08001964#ifndef SK_IGNORE_GPU_LAYER_HOISTING
robertphillips30d78412014-11-24 09:49:17 -08001965 // todo: should handle this natively
1966 if (paint) {
reedd5fa1a42014-08-09 11:08:05 -07001967 return false;
1968 }
1969
halcanary96fcdcc2015-08-27 07:41:13 -07001970 const SkBigPicture::AccelData* data = nullptr;
mtklein9db912c2015-05-19 11:11:26 -07001971 if (const SkBigPicture* bp = mainPicture->asSkBigPicture()) {
1972 data = bp->accelData();
1973 }
robertphillips81f71b62014-11-11 04:54:49 -08001974 if (!data) {
1975 return false;
1976 }
1977
robertphillipse5524cd2015-02-20 12:30:26 -08001978 const SkLayerInfo *gpuData = static_cast<const SkLayerInfo*>(data);
1979 if (0 == gpuData->numBlocks()) {
1980 return false;
commit-bot@chromium.org8ddc26b2014-03-31 17:55:12 +00001981 }
1982
robertphillipsfd61ed02014-10-28 07:21:44 -07001983 SkTDArray<GrHoistedLayer> atlasedNeedRendering, atlasedRecycled;
robertphillips1c4c5282014-09-18 12:03:15 -07001984
robertphillipse5524cd2015-02-20 12:30:26 -08001985 SkIRect iBounds;
1986 if (!mainCanvas->getClipDeviceBounds(&iBounds)) {
1987 return false;
1988 }
1989
1990 SkRect clipBounds = SkRect::Make(iBounds);
1991
1992 SkMatrix initialMatrix = mainCanvas->getTotalMatrix();
1993
robertphillipsfd61ed02014-10-28 07:21:44 -07001994 GrLayerHoister::FindLayersToAtlas(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08001995 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07001996 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08001997 &atlasedNeedRendering, &atlasedRecycled,
vbuzinovdded6962015-06-12 08:59:45 -07001998 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07001999
2000 GrLayerHoister::DrawLayersToAtlas(fContext, atlasedNeedRendering);
2001
2002 SkTDArray<GrHoistedLayer> needRendering, recycled;
2003
robertphillipse5524cd2015-02-20 12:30:26 -08002004 SkAutoCanvasMatrixPaint acmp(mainCanvas, matrix, paint, mainPicture->cullRect());
2005
robertphillipsfd61ed02014-10-28 07:21:44 -07002006 GrLayerHoister::FindLayersToHoist(fContext, mainPicture,
robertphillips30d78412014-11-24 09:49:17 -08002007 initialMatrix,
robertphillipsfd61ed02014-10-28 07:21:44 -07002008 clipBounds,
robertphillipsa63f32e2014-11-10 08:10:42 -08002009 &needRendering, &recycled,
vbuzinovdded6962015-06-12 08:59:45 -07002010 fRenderTarget->numColorSamples());
robertphillipsfd61ed02014-10-28 07:21:44 -07002011
2012 GrLayerHoister::DrawLayers(fContext, needRendering);
robertphillips@google.combeb1af22014-05-07 21:31:09 +00002013
robertphillips64bf7672014-08-21 13:07:35 -07002014 // Render the entire picture using new layers
robertphillipse99d4992014-12-03 07:33:57 -08002015 GrRecordReplaceDraw(mainPicture, mainCanvas, fContext->getLayerCache(),
halcanary96fcdcc2015-08-27 07:41:13 -07002016 initialMatrix, nullptr);
robertphillips64bf7672014-08-21 13:07:35 -07002017
robertphillipsfd61ed02014-10-28 07:21:44 -07002018 GrLayerHoister::UnlockLayers(fContext, needRendering);
2019 GrLayerHoister::UnlockLayers(fContext, recycled);
2020 GrLayerHoister::UnlockLayers(fContext, atlasedNeedRendering);
2021 GrLayerHoister::UnlockLayers(fContext, atlasedRecycled);
robertphillips64bf7672014-08-21 13:07:35 -07002022
2023 return true;
robertphillips63242d72014-12-04 08:31:02 -08002024#else
2025 return false;
2026#endif
robertphillips64bf7672014-08-21 13:07:35 -07002027}
2028
senorblancobe129b22014-08-08 07:14:35 -07002029SkImageFilter::Cache* SkGpuDevice::getImageFilterCache() {
senorblanco55b6d8b2014-07-30 11:26:46 -07002030 // We always return a transient cache, so it is freed after each
2031 // filter traversal.
senorblancobe129b22014-08-08 07:14:35 -07002032 return SkImageFilter::Cache::Create(kDefaultImageFilterCacheSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07002033}
reedf037e0b2014-10-30 11:34:15 -07002034
2035#endif