blob: 6ddae65a9c046b6b109cda112e95bc8963625721 [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
Brian Osman3b66ab62016-11-28 09:26:31 -050010#include "GrBitmapTextureMaker.h"
robertphillipsccb1b572015-05-27 11:02:55 -070011#include "GrBlurUtils.h"
kkinnunenabcfab42015-02-22 22:53:44 -080012#include "GrContext.h"
kkinnunenabcfab42015-02-22 22:53:44 -080013#include "GrGpu.h"
Brian Osman3b66ab62016-11-28 09:26:31 -050014#include "GrImageTextureMaker.h"
15#include "GrRenderTargetContextPriv.h"
bsalomon6663acf2016-05-10 09:14:17 -070016#include "GrStyle.h"
Robert Phillips0ae6faa2017-03-21 16:22:00 -040017#include "GrSurfaceProxyPriv.h"
Brian Osmane8e54582016-11-28 10:06:27 -050018#include "GrTextureAdjuster.h"
Robert Phillipse2f7d182016-12-15 09:23:05 -050019#include "GrTextureProxy.h"
egdanielbbcb38d2014-06-19 10:19:29 -070020#include "GrTracing.h"
robertphillips30d78412014-11-24 09:49:17 -080021#include "SkCanvasPriv.h"
robertphillips714712b2016-08-04 06:20:45 -070022#include "SkDraw.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000023#include "SkGlyphCache.h"
bsalomonf276ac52015-10-09 13:36:42 -070024#include "SkGr.h"
bsalomon1cf6f9b2015-12-08 10:53:43 -080025#include "SkImageCacherator.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000026#include "SkImageFilter.h"
senorblanco900c3672016-04-27 11:31:23 -070027#include "SkImageFilterCache.h"
Matt Sarettcb6266b2017-01-17 10:48:53 -050028#include "SkImageInfoPriv.h"
Brian Salomon6a639042016-12-14 11:08:17 -050029#include "SkImage_Base.h"
msarettc573a402016-08-02 08:05:56 -070030#include "SkLatticeIter.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"
Brian Salomon6a639042016-12-14 11:08:17 -050036#include "SkRasterClip.h"
Matt Sarett03dd6d52017-01-23 12:15:09 -050037#include "SkReadPixelsRec.h"
kkinnunenabcfab42015-02-22 22:53:44 -080038#include "SkRecord.h"
robertphillips970587b2016-07-14 14:12:55 -070039#include "SkSpecialImage.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000040#include "SkStroke.h"
reed@google.com76f10a32014-02-05 15:32:21 +000041#include "SkSurface.h"
kkinnunenabcfab42015-02-22 22:53:44 -080042#include "SkSurface_Gpu.h"
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +000043#include "SkTLazy.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000044#include "SkUtils.h"
commit-bot@chromium.org559a8832014-05-30 10:08:22 +000045#include "SkVertState.h"
Brian Salomon199fb872017-02-06 09:41:10 -050046#include "SkVertices.h"
Matt Sarett03dd6d52017-01-23 12:15:09 -050047#include "SkWritePixelsRec.h"
kkinnunenabcfab42015-02-22 22:53:44 -080048#include "effects/GrBicubicEffect.h"
kkinnunenabcfab42015-02-22 22:53:44 -080049#include "effects/GrSimpleTextureEffect.h"
50#include "effects/GrTextureDomain.h"
joshualitt8e84a1e2016-02-16 11:09:25 -080051#include "text/GrTextUtils.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000052
reedf037e0b2014-10-30 11:34:15 -070053#if SK_SUPPORT_GPU
54
joshualittce894002016-01-11 13:29:31 -080055#define ASSERT_SINGLE_OWNER \
56 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(fContext->debugSingleOwner());)
57
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000058#if 0
59 extern bool (*gShouldDrawProc)();
Mike Reeda1361362017-03-07 09:37:29 -050060 #define CHECK_SHOULD_DRAW() \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000061 do { \
62 if (gShouldDrawProc && !gShouldDrawProc()) return; \
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000063 } while (0)
64#else
Brian Salomon0166cfd2017-03-13 17:58:25 -040065#define CHECK_SHOULD_DRAW()
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000066#endif
67
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000068///////////////////////////////////////////////////////////////////////////////
69
bsalomon74f681d2015-06-23 14:38:48 -070070/** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation
71 should fail. */
72bool SkGpuDevice::CheckAlphaTypeAndGetFlags(
73 const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) {
74 *flags = 0;
75 if (info) {
76 switch (info->alphaType()) {
77 case kPremul_SkAlphaType:
78 break;
79 case kOpaque_SkAlphaType:
80 *flags |= SkGpuDevice::kIsOpaque_Flag;
81 break;
82 default: // If it is unpremul or unknown don't try to render
83 return false;
84 }
85 }
86 if (kClear_InitContents == init) {
87 *flags |= kNeedClear_Flag;
88 }
89 return true;
90}
91
Robert Phillips9fab7e92016-11-17 12:45:04 -050092sk_sp<SkGpuDevice> SkGpuDevice::Make(GrContext* context,
93 sk_sp<GrRenderTargetContext> renderTargetContext,
robertphillips15c42ca2016-08-04 08:45:02 -070094 int width, int height,
95 InitContents init) {
Brian Osman11052242016-10-27 14:47:55 -040096 if (!renderTargetContext || renderTargetContext->wasAbandoned()) {
robertphillipsca6eafc2016-05-17 09:57:46 -070097 return nullptr;
98 }
99 unsigned flags;
100 if (!CheckAlphaTypeAndGetFlags(nullptr, init, &flags)) {
101 return nullptr;
102 }
Robert Phillips9fab7e92016-11-17 12:45:04 -0500103 return sk_sp<SkGpuDevice>(new SkGpuDevice(context, std::move(renderTargetContext),
104 width, height, flags));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000105}
106
robertphillips24e91282016-04-29 06:46:36 -0700107sk_sp<SkGpuDevice> SkGpuDevice::Make(GrContext* context, SkBudgeted budgeted,
108 const SkImageInfo& info, int sampleCount,
robertphillips7e922762016-07-26 11:38:17 -0700109 GrSurfaceOrigin origin,
robertphillips24e91282016-04-29 06:46:36 -0700110 const SkSurfaceProps* props, InitContents init) {
bsalomon74f681d2015-06-23 14:38:48 -0700111 unsigned flags;
112 if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700113 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700114 }
115
Brian Osman11052242016-10-27 14:47:55 -0400116 sk_sp<GrRenderTargetContext> renderTargetContext(MakeRenderTargetContext(context, budgeted,
117 info, sampleCount,
118 origin, props));
119 if (!renderTargetContext) {
halcanary96fcdcc2015-08-27 07:41:13 -0700120 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700121 }
122
Robert Phillips9fab7e92016-11-17 12:45:04 -0500123 return sk_sp<SkGpuDevice>(new SkGpuDevice(context, std::move(renderTargetContext),
robertphillipsca6eafc2016-05-17 09:57:46 -0700124 info.width(), info.height(), flags));
bsalomon74f681d2015-06-23 14:38:48 -0700125}
126
Brian Osman11052242016-10-27 14:47:55 -0400127static SkImageInfo make_info(GrRenderTargetContext* context, int w, int h, bool opaque) {
reed589a39e2016-08-20 07:59:19 -0700128 SkColorType colorType;
129 if (!GrPixelConfigToColorType(context->config(), &colorType)) {
130 colorType = kUnknown_SkColorType;
131 }
132 return SkImageInfo::Make(w, h, colorType,
133 opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType,
Robert Phillips75a475c2017-01-13 09:18:59 -0500134 context->refColorSpace());
reed589a39e2016-08-20 07:59:19 -0700135}
136
Robert Phillips9fab7e92016-11-17 12:45:04 -0500137SkGpuDevice::SkGpuDevice(GrContext* context, sk_sp<GrRenderTargetContext> renderTargetContext,
138 int width, int height, unsigned flags)
Brian Osman11052242016-10-27 14:47:55 -0400139 : INHERITED(make_info(renderTargetContext.get(), width, height,
140 SkToBool(flags & kIsOpaque_Flag)), renderTargetContext->surfaceProps())
Robert Phillips9fab7e92016-11-17 12:45:04 -0500141 , fContext(SkRef(context))
Brian Osman11052242016-10-27 14:47:55 -0400142 , fRenderTargetContext(std::move(renderTargetContext))
reed589a39e2016-08-20 07:59:19 -0700143{
robertphillips1f3923e2016-07-21 07:17:54 -0700144 fSize.set(width, height);
bsalomon74f681d2015-06-23 14:38:48 -0700145 fOpaque = SkToBool(flags & kIsOpaque_Flag);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000146
bsalomone63ffef2016-02-05 07:17:34 -0800147 if (flags & kNeedClear_Flag) {
148 this->clearAll();
149 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000150}
151
Brian Osman11052242016-10-27 14:47:55 -0400152sk_sp<GrRenderTargetContext> SkGpuDevice::MakeRenderTargetContext(
153 GrContext* context,
154 SkBudgeted budgeted,
155 const SkImageInfo& origInfo,
156 int sampleCount,
157 GrSurfaceOrigin origin,
158 const SkSurfaceProps* surfaceProps) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000159 if (kUnknown_SkColorType == origInfo.colorType() ||
160 origInfo.width() < 0 || origInfo.height() < 0) {
halcanary96fcdcc2015-08-27 07:41:13 -0700161 return nullptr;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000162 }
163
bsalomonafe30052015-01-16 07:32:33 -0800164 if (!context) {
halcanary96fcdcc2015-08-27 07:41:13 -0700165 return nullptr;
bsalomonafe30052015-01-16 07:32:33 -0800166 }
167
Brian Osman0c2997b2017-01-11 16:58:42 -0500168 GrPixelConfig config = SkImageInfo2GrPixelConfig(origInfo, *context->caps());
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400169 // This method is used to create SkGpuDevice's for SkSurface_Gpus. In this case
170 // they need to be exact.
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400171 return context->makeDeferredRenderTargetContext(
172 SkBackingFit::kExact,
robertphillips6738c702016-07-27 12:13:51 -0700173 origInfo.width(), origInfo.height(),
Robert Phillips70b49fd2017-01-13 11:21:36 -0500174 config, origInfo.refColorSpace(), sampleCount,
robertphillips6738c702016-07-27 12:13:51 -0700175 origin, surfaceProps, budgeted);
kkinnunenabcfab42015-02-22 22:53:44 -0800176}
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000177
Mike Reeda1361362017-03-07 09:37:29 -0500178sk_sp<SkSpecialImage> SkGpuDevice::filterTexture(SkSpecialImage* srcImg,
robertphillips970587b2016-07-14 14:12:55 -0700179 int left, int top,
180 SkIPoint* offset,
181 const SkImageFilter* filter) {
182 SkASSERT(srcImg->isTextureBacked());
183 SkASSERT(filter);
184
Mike Reeda1361362017-03-07 09:37:29 -0500185 SkMatrix matrix = this->ctm();
robertphillips970587b2016-07-14 14:12:55 -0700186 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
Mike Reeda1361362017-03-07 09:37:29 -0500187 const SkIRect clipBounds = this->devClipBounds().makeOffset(-left, -top);
Hal Canary144caf52016-11-07 17:57:18 -0500188 sk_sp<SkImageFilterCache> cache(this->getImageFilterCache());
Brian Osman11052242016-10-27 14:47:55 -0400189 SkImageFilter::OutputProperties outputProperties(fRenderTargetContext->getColorSpace());
brianosman2a75e5d2016-09-22 07:15:37 -0700190 SkImageFilter::Context ctx(matrix, clipBounds, cache.get(), outputProperties);
robertphillips970587b2016-07-14 14:12:55 -0700191
192 return filter->filterImage(srcImg, ctx, offset);
193}
194
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000195///////////////////////////////////////////////////////////////////////////////
196
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000197bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
198 int x, int y) {
joshualittce894002016-01-11 13:29:31 -0800199 ASSERT_SINGLE_OWNER
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000200
Matt Sarettcb6266b2017-01-17 10:48:53 -0500201 if (!SkImageInfoValidConversion(dstInfo, this->imageInfo())) {
202 return false;
203 }
204
Matt Sarett03dd6d52017-01-23 12:15:09 -0500205 SkReadPixelsRec rec(dstInfo, dstPixels, dstRowBytes, x, y);
206 if (!rec.trim(this->width(), this->height())) {
207 return false;
208 }
209
210 return fRenderTargetContext->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000211}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000212
robertphillips1da3ecd2016-08-31 14:54:15 -0700213bool SkGpuDevice::onWritePixels(const SkImageInfo& srcInfo, const void* srcPixels,
214 size_t srcRowBytes, int x, int y) {
joshualittce894002016-01-11 13:29:31 -0800215 ASSERT_SINGLE_OWNER
robertphillips1da3ecd2016-08-31 14:54:15 -0700216
Matt Sarettcb6266b2017-01-17 10:48:53 -0500217 if (!SkImageInfoValidConversion(this->imageInfo(), srcInfo)) {
218 return false;
219 }
220
Matt Sarett03dd6d52017-01-23 12:15:09 -0500221 SkWritePixelsRec rec(srcInfo, srcPixels, srcRowBytes, x, y);
222 if (!rec.trim(this->width(), this->height())) {
223 return false;
224 }
225
226 return fRenderTargetContext->writePixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000227}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000228
reed41e010c2015-06-09 12:16:53 -0700229bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) {
joshualittce894002016-01-11 13:29:31 -0800230 ASSERT_SINGLE_OWNER
reed41e010c2015-06-09 12:16:53 -0700231 return false;
232}
233
Brian Osman11052242016-10-27 14:47:55 -0400234GrRenderTargetContext* SkGpuDevice::accessRenderTargetContext() {
robertphillips175dd9b2016-04-28 14:32:04 -0700235 ASSERT_SINGLE_OWNER
Brian Osman11052242016-10-27 14:47:55 -0400236 return fRenderTargetContext.get();
robertphillips175dd9b2016-04-28 14:32:04 -0700237}
238
reed8eddfb52014-12-04 07:50:14 -0800239void SkGpuDevice::clearAll() {
joshualittce894002016-01-11 13:29:31 -0800240 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500241 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "clearAll", fContext.get());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500242
reed8eddfb52014-12-04 07:50:14 -0800243 SkIRect rect = SkIRect::MakeWH(this->width(), this->height());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500244 fRenderTargetContext->clear(&rect, 0x0, true);
reed8eddfb52014-12-04 07:50:14 -0800245}
246
Brian Osman11052242016-10-27 14:47:55 -0400247void SkGpuDevice::replaceRenderTargetContext(bool shouldRetainContent) {
joshualittce894002016-01-11 13:29:31 -0800248 ASSERT_SINGLE_OWNER
kkinnunenabcfab42015-02-22 22:53:44 -0800249
Brian Osman693a5402016-10-27 15:13:22 -0400250 SkBudgeted budgeted = fRenderTargetContext->priv().isBudgeted();
kkinnunenabcfab42015-02-22 22:53:44 -0800251
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400252 // This entry point is used by SkSurface_Gpu::onCopyOnWrite so it must create a
253 // kExact-backed render target context.
Brian Osman693a5402016-10-27 15:13:22 -0400254 sk_sp<GrRenderTargetContext> newRTC(MakeRenderTargetContext(
Brian Osman11052242016-10-27 14:47:55 -0400255 this->context(),
256 budgeted,
257 this->imageInfo(),
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400258 fRenderTargetContext->numColorSamples(),
259 fRenderTargetContext->origin(),
Brian Osman11052242016-10-27 14:47:55 -0400260 &this->surfaceProps()));
Brian Osman693a5402016-10-27 15:13:22 -0400261 if (!newRTC) {
kkinnunenabcfab42015-02-22 22:53:44 -0800262 return;
263 }
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400264 SkASSERT(newRTC->asSurfaceProxy()->priv().isExact());
kkinnunenabcfab42015-02-22 22:53:44 -0800265
266 if (shouldRetainContent) {
Brian Osman11052242016-10-27 14:47:55 -0400267 if (fRenderTargetContext->wasAbandoned()) {
kkinnunenabcfab42015-02-22 22:53:44 -0800268 return;
269 }
Robert Phillipsf200a902017-01-30 13:27:37 -0500270 newRTC->copy(fRenderTargetContext->asSurfaceProxy());
kkinnunenabcfab42015-02-22 22:53:44 -0800271 }
272
Brian Osman693a5402016-10-27 15:13:22 -0400273 fRenderTargetContext = newRTC;
kkinnunenabcfab42015-02-22 22:53:44 -0800274}
275
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000276///////////////////////////////////////////////////////////////////////////////
277
Mike Reeda1361362017-03-07 09:37:29 -0500278void SkGpuDevice::drawPaint(const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800279 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -0500280 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -0500281 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPaint", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000282
283 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500284 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -0400285 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700286 return;
287 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000288
Brian Salomon0166cfd2017-03-13 17:58:25 -0400289 fRenderTargetContext->drawPaint(this->clip(), std::move(grPaint), this->ctm());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000290}
291
292// must be in SkCanvas::PointMode order
bsalomon6ade6dd2016-09-12 12:07:17 -0700293static const GrPrimitiveType gPointMode2PrimitiveType[] = {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000294 kPoints_GrPrimitiveType,
295 kLines_GrPrimitiveType,
296 kLineStrip_GrPrimitiveType
297};
298
Brian Salomonbd72f5a2016-12-06 16:52:24 -0500299static inline bool is_int(float x) { return x == (float) sk_float_round2int(x); }
300
ethannicholas330bb952015-07-17 06:44:02 -0700301// suppress antialiasing on axis-aligned integer-coordinate lines
Brian Salomonbd72f5a2016-12-06 16:52:24 -0500302static bool needs_antialiasing(SkCanvas::PointMode mode, size_t count, const SkPoint pts[],
303 const SkMatrix& matrix) {
ethannicholas330bb952015-07-17 06:44:02 -0700304 if (mode == SkCanvas::PointMode::kPoints_PointMode) {
305 return false;
306 }
307 if (count == 2) {
Brian Salomonbd72f5a2016-12-06 16:52:24 -0500308 // We do not antialias horizontal or vertical lines along pixel centers, even when the ends
309 // of the line do not fully cover the first and last pixel of the line, which is slightly
310 // wrong.
311 if (!matrix.isScaleTranslate()) {
312 return true;
313 }
ethannicholas330bb952015-07-17 06:44:02 -0700314 if (pts[0].fX == pts[1].fX) {
Brian Salomonbd72f5a2016-12-06 16:52:24 -0500315 SkScalar x = matrix.getScaleX() * pts[0].fX + matrix.getTranslateX();
316 return !is_int(x + 0.5f);
ethannicholas330bb952015-07-17 06:44:02 -0700317 }
318 if (pts[0].fY == pts[1].fY) {
Brian Salomonbd72f5a2016-12-06 16:52:24 -0500319 SkScalar y = matrix.getScaleY() * pts[0].fY + matrix.getTranslateY();
320 return !is_int(y + 0.5f);
ethannicholas330bb952015-07-17 06:44:02 -0700321 }
322 }
323 return true;
324}
325
Mike Reeda1361362017-03-07 09:37:29 -0500326void SkGpuDevice::drawPoints(SkCanvas::PointMode mode,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000327 size_t count, const SkPoint pts[], const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800328 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500329 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPoints", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500330 CHECK_SHOULD_DRAW();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000331
332 SkScalar width = paint.getStrokeWidth();
333 if (width < 0) {
334 return;
335 }
336
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000337 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) {
bsalomon6663acf2016-05-10 09:14:17 -0700338 GrStyle style(paint, SkPaint::kStroke_Style);
egdaniele61c4112014-06-12 10:24:21 -0700339 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500340 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
brianosman1638c0d2016-07-25 05:12:53 -0700341 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700342 return;
343 }
egdaniele61c4112014-06-12 10:24:21 -0700344 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700345 path.setIsVolatile(true);
egdaniele61c4112014-06-12 10:24:21 -0700346 path.moveTo(pts[0]);
347 path.lineTo(pts[1]);
Brian Salomon0166cfd2017-03-13 17:58:25 -0400348 fRenderTargetContext->drawPath(this->clip(), std::move(grPaint),
349 GrBoolToAA(paint.isAntiAlias()), this->ctm(), path, style);
egdaniele61c4112014-06-12 10:24:21 -0700350 return;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000351 }
352
bsalomon6ade6dd2016-09-12 12:07:17 -0700353 SkScalar scales[2];
Mike Reeda1361362017-03-07 09:37:29 -0500354 bool isHairline = (0 == width) || (1 == width && this->ctm().getMinMaxScales(scales) &&
bsalomon6ade6dd2016-09-12 12:07:17 -0700355 SkScalarNearlyEqual(scales[0], 1.f) &&
356 SkScalarNearlyEqual(scales[1], 1.f));
ethannicholas330bb952015-07-17 06:44:02 -0700357 // we only handle non-antialiased hairlines and paints without path effects or mask filters,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000358 // else we let the SkDraw call our drawPath()
bsalomon6ade6dd2016-09-12 12:07:17 -0700359 if (!isHairline || paint.getPathEffect() || paint.getMaskFilter() ||
Mike Reeda1361362017-03-07 09:37:29 -0500360 (paint.isAntiAlias() && needs_antialiasing(mode, count, pts, this->ctm())))
361 {
362 SkRasterClip rc(this->devClipBounds());
363 SkDraw draw;
364 draw.fDst = SkPixmap(SkImageInfo::MakeUnknown(this->width(), this->height()), nullptr, 0);
365 draw.fMatrix = &this->ctm();
366 draw.fRC = &rc;
Mike Reed99330ba2017-02-22 11:01:08 -0500367 draw.drawPoints(mode, count, pts, paint, this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000368 return;
369 }
370
bsalomon6ade6dd2016-09-12 12:07:17 -0700371 GrPrimitiveType primitiveType = gPointMode2PrimitiveType[mode];
372
Mike Reeda1361362017-03-07 09:37:29 -0500373 const SkMatrix* viewMatrix = &this->ctm();
bsalomon6ade6dd2016-09-12 12:07:17 -0700374#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
375 // This offsetting in device space matches the expectations of the Android framework for non-AA
376 // points and lines.
377 SkMatrix tempMatrix;
378 if (GrIsPrimTypeLines(primitiveType) || kPoints_GrPrimitiveType == primitiveType) {
379 tempMatrix = *viewMatrix;
380 static const SkScalar kOffset = 0.063f; // Just greater than 1/16.
381 tempMatrix.postTranslate(kOffset, kOffset);
382 viewMatrix = &tempMatrix;
383 }
384#endif
385
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000386 GrPaint grPaint;
Brian Osman11052242016-10-27 14:47:55 -0400387 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, *viewMatrix,
388 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700389 return;
390 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000391
Brian Salomon0166cfd2017-03-13 17:58:25 -0400392 fRenderTargetContext->drawVertices(this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -0500393 std::move(grPaint),
Brian Osman11052242016-10-27 14:47:55 -0400394 *viewMatrix,
395 primitiveType,
396 SkToS32(count),
397 (SkPoint*)pts,
398 nullptr,
399 nullptr,
400 nullptr,
401 0);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000402}
403
404///////////////////////////////////////////////////////////////////////////////
405
Mike Reeda1361362017-03-07 09:37:29 -0500406void SkGpuDevice::drawRect(const SkRect& rect, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800407 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500408 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawRect", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500409 CHECK_SHOULD_DRAW();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000410
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000411
bsalomona7d85ba2016-07-06 11:54:59 -0700412 // A couple reasons we might need to call drawPath.
413 if (paint.getMaskFilter() || paint.getPathEffect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000414 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700415 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000416 path.addRect(rect);
Hal Canary144caf52016-11-07 17:57:18 -0500417 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400418 this->clip(), path, paint, this->ctm(), nullptr,
Mike Reeda1361362017-03-07 09:37:29 -0500419 this->devClipBounds(), true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000420 return;
421 }
422
423 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500424 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -0400425 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700426 return;
427 }
Mike Klein744fb732014-06-23 15:13:26 -0400428
bsalomon6663acf2016-05-10 09:14:17 -0700429 GrStyle style(paint);
Brian Salomon0166cfd2017-03-13 17:58:25 -0400430 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint),
431 GrBoolToAA(paint.isAntiAlias()), this->ctm(), rect, &style);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000432}
433
434///////////////////////////////////////////////////////////////////////////////
435
Mike Reeda1361362017-03-07 09:37:29 -0500436void SkGpuDevice::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800437 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500438 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawRRect", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500439 CHECK_SHOULD_DRAW();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000440
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000441 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500442 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -0400443 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700444 return;
445 }
Mike Klein744fb732014-06-23 15:13:26 -0400446
Robert Phillipsa29a9562016-10-20 09:40:55 -0400447 SkMaskFilter* mf = paint.getMaskFilter();
Mike Reeda1361362017-03-07 09:37:29 -0500448 if (mf && mf->asFragmentProcessor(nullptr, nullptr, this->ctm())) {
Robert Phillipsa29a9562016-10-20 09:40:55 -0400449 mf = nullptr; // already handled in SkPaintToGrPaint
450 }
451
bsalomon6663acf2016-05-10 09:14:17 -0700452 GrStyle style(paint);
Robert Phillipsa29a9562016-10-20 09:40:55 -0400453 if (mf) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000454 // try to hit the fast path for drawing filtered round rects
455
456 SkRRect devRRect;
Mike Reeda1361362017-03-07 09:37:29 -0500457 if (rrect.transform(this->ctm(), &devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000458 if (devRRect.allCornersCircular()) {
459 SkRect maskRect;
Mike Reeda1361362017-03-07 09:37:29 -0500460 if (mf->canFilterMaskGPU(devRRect, this->devClipBounds(),
461 this->ctm(), &maskRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000462 SkIRect finalIRect;
463 maskRect.roundOut(&finalIRect);
Mike Reeda1361362017-03-07 09:37:29 -0500464
465 // we used to test finalIRect for quickReject, but that seems unlikely
466 // given that the original shape was not rejected...
467
Robert Phillips26c90e02017-03-14 14:39:29 -0400468 if (mf->directFilterRRectMaskGPU(this->context(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400469 std::move(grPaint), this->clip(), this->ctm(),
Hal Canary144caf52016-11-07 17:57:18 -0500470 style.strokeRec(), rrect, devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000471 return;
472 }
473 }
474
475 }
476 }
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000477 }
478
Robert Phillipsa29a9562016-10-20 09:40:55 -0400479 if (mf || style.pathEffect()) {
robertphillipsff55b492015-11-24 07:56:59 -0800480 // The only mask filter the native rrect drawing code could've handle was taken
481 // care of above.
482 // A path effect will presumably transform this rrect into something else.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000483 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700484 path.setIsVolatile(true);
robertphillips9aff85a2016-08-05 07:51:29 -0700485 path.addRRect(rrect);
Hal Canary144caf52016-11-07 17:57:18 -0500486 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400487 this->clip(), path, paint, this->ctm(), nullptr,
Mike Reeda1361362017-03-07 09:37:29 -0500488 this->devClipBounds(), true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000489 return;
490 }
Mike Klein744fb732014-06-23 15:13:26 -0400491
bsalomon6663acf2016-05-10 09:14:17 -0700492 SkASSERT(!style.pathEffect());
robertphillips514450c2015-11-24 05:36:02 -0800493
Brian Salomon0166cfd2017-03-13 17:58:25 -0400494 fRenderTargetContext->drawRRect(this->clip(), std::move(grPaint),
495 GrBoolToAA(paint.isAntiAlias()), this->ctm(), rrect, style);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000496}
497
robertphillipsd7706102016-02-25 09:28:08 -0800498
Mike Reeda1361362017-03-07 09:37:29 -0500499void SkGpuDevice::drawDRRect(const SkRRect& outer,
joshualitt5531d512014-12-17 15:50:11 -0800500 const SkRRect& inner, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800501 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500502 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawDRRect", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500503 CHECK_SHOULD_DRAW();
robertphillips0e7029e2015-11-30 05:45:06 -0800504
robertphillipsd7706102016-02-25 09:28:08 -0800505 if (outer.isEmpty()) {
506 return;
507 }
508
509 if (inner.isEmpty()) {
Mike Reeda1361362017-03-07 09:37:29 -0500510 return this->drawRRect(outer, paint);
robertphillipsd7706102016-02-25 09:28:08 -0800511 }
512
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000513 SkStrokeRec stroke(paint);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000514
robertphillips0e7029e2015-11-30 05:45:06 -0800515 if (stroke.isFillStyle() && !paint.getMaskFilter() && !paint.getPathEffect()) {
robertphillips00095892016-02-29 13:50:40 -0800516 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500517 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
brianosman1638c0d2016-07-25 05:12:53 -0700518 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700519 return;
520 }
robertphillips00095892016-02-29 13:50:40 -0800521
Brian Salomon0166cfd2017-03-13 17:58:25 -0400522 fRenderTargetContext->drawDRRect(this->clip(), std::move(grPaint),
523 GrBoolToAA(paint.isAntiAlias()), this->ctm(), outer,
524 inner);
robertphillips00095892016-02-29 13:50:40 -0800525 return;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000526 }
527
528 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700529 path.setIsVolatile(true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000530 path.addRRect(outer);
531 path.addRRect(inner);
532 path.setFillType(SkPath::kEvenOdd_FillType);
533
Brian Salomon0166cfd2017-03-13 17:58:25 -0400534 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(), this->clip(),
535 path, paint, this->ctm(), nullptr, this->devClipBounds(),
536 true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000537}
538
539
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000540/////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000541
Mike Reeda1361362017-03-07 09:37:29 -0500542void SkGpuDevice::drawRegion(const SkRegion& region, const SkPaint& paint) {
msarettcc319b92016-08-25 18:07:18 -0700543 if (paint.getMaskFilter()) {
544 SkPath path;
545 region.getBoundaryPath(&path);
Mike Reeda1361362017-03-07 09:37:29 -0500546 return this->drawPath(path, paint, nullptr, false);
msarettcc319b92016-08-25 18:07:18 -0700547 }
548
549 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500550 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -0400551 &grPaint)) {
msarettcc319b92016-08-25 18:07:18 -0700552 return;
553 }
554
Brian Salomon0166cfd2017-03-13 17:58:25 -0400555 fRenderTargetContext->drawRegion(this->clip(), std::move(grPaint),
556 GrBoolToAA(paint.isAntiAlias()), this->ctm(), region,
557 GrStyle(paint));
msarettcc319b92016-08-25 18:07:18 -0700558}
559
Mike Reeda1361362017-03-07 09:37:29 -0500560void SkGpuDevice::drawOval(const SkRect& oval, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800561 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500562 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawOval", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500563 CHECK_SHOULD_DRAW();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000564
robertphillips514450c2015-11-24 05:36:02 -0800565 // Presumably the path effect warps this to something other than an oval
566 if (paint.getPathEffect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000567 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700568 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000569 path.addOval(oval);
Mike Reeda1361362017-03-07 09:37:29 -0500570 this->drawPath(path, paint, nullptr, true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000571 return;
herb11a7f7f2015-11-24 12:41:00 -0800572 }
573
robertphillips514450c2015-11-24 05:36:02 -0800574 if (paint.getMaskFilter()) {
575 // The RRect path can handle special case blurring
576 SkRRect rr = SkRRect::MakeOval(oval);
Mike Reeda1361362017-03-07 09:37:29 -0500577 return this->drawRRect(rr, paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000578 }
579
580 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500581 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -0400582 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700583 return;
584 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000585
Brian Salomon0166cfd2017-03-13 17:58:25 -0400586 fRenderTargetContext->drawOval(this->clip(), std::move(grPaint),
587 GrBoolToAA(paint.isAntiAlias()), this->ctm(), oval,
588 GrStyle(paint));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000589}
590
Mike Reeda1361362017-03-07 09:37:29 -0500591void SkGpuDevice::drawArc(const SkRect& oval, SkScalar startAngle,
bsalomon4f3a0ca2016-08-22 13:14:26 -0700592 SkScalar sweepAngle, bool useCenter, const SkPaint& paint) {
593 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500594 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawArc", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500595 CHECK_SHOULD_DRAW();
bsalomon4f3a0ca2016-08-22 13:14:26 -0700596
597 if (paint.getMaskFilter()) {
Mike Reeda1361362017-03-07 09:37:29 -0500598 this->INHERITED::drawArc(oval, startAngle, sweepAngle, useCenter, paint);
bsalomon4f3a0ca2016-08-22 13:14:26 -0700599 return;
600 }
601 GrPaint grPaint;
Mike Reeda1361362017-03-07 09:37:29 -0500602 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), paint, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -0400603 &grPaint)) {
bsalomon4f3a0ca2016-08-22 13:14:26 -0700604 return;
605 }
606
Brian Salomon0166cfd2017-03-13 17:58:25 -0400607 fRenderTargetContext->drawArc(this->clip(), std::move(grPaint), GrBoolToAA(paint.isAntiAlias()),
Mike Reeda1361362017-03-07 09:37:29 -0500608 this->ctm(), oval, startAngle, sweepAngle, useCenter,
Brian Salomon82f44312017-01-11 13:42:54 -0500609 GrStyle(paint));
bsalomon4f3a0ca2016-08-22 13:14:26 -0700610}
611
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000612#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000613
614///////////////////////////////////////////////////////////////////////////////
robertphillips0851d2d2016-06-02 05:21:34 -0700615void SkGpuDevice::drawStrokedLine(const SkPoint points[2],
robertphillips0851d2d2016-06-02 05:21:34 -0700616 const SkPaint& origPaint) {
617 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500618 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawStrokedLine", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -0500619 CHECK_SHOULD_DRAW();
robertphillips0851d2d2016-06-02 05:21:34 -0700620
Brian Osman11052242016-10-27 14:47:55 -0400621 // Adding support for round capping would require a
622 // GrRenderTargetContext::fillRRectWithLocalMatrix entry point
robertphillips0851d2d2016-06-02 05:21:34 -0700623 SkASSERT(SkPaint::kRound_Cap != origPaint.getStrokeCap());
624 SkASSERT(SkPaint::kStroke_Style == origPaint.getStyle());
625 SkASSERT(!origPaint.getPathEffect());
626 SkASSERT(!origPaint.getMaskFilter());
627
628 const SkScalar halfWidth = 0.5f * origPaint.getStrokeWidth();
629 SkASSERT(halfWidth > 0);
630
631 SkVector v = points[1] - points[0];
632
633 SkScalar length = SkPoint::Normalize(&v);
634 if (!length) {
635 v.fX = 1.0f;
636 v.fY = 0.0f;
637 }
638
639 SkPaint newPaint(origPaint);
640 newPaint.setStyle(SkPaint::kFill_Style);
641
642 SkScalar xtraLength = 0.0f;
643 if (SkPaint::kButt_Cap != origPaint.getStrokeCap()) {
644 xtraLength = halfWidth;
645 }
646
647 SkPoint mid = points[0] + points[1];
648 mid.scale(0.5f);
649
650 SkRect rect = SkRect::MakeLTRB(mid.fX-halfWidth, mid.fY - 0.5f*length - xtraLength,
651 mid.fX+halfWidth, mid.fY + 0.5f*length + xtraLength);
652 SkMatrix m;
653 m.setSinCos(v.fX, -v.fY, mid.fX, mid.fY);
654
655 SkMatrix local = m;
656
Mike Reeda1361362017-03-07 09:37:29 -0500657 m.postConcat(this->ctm());
robertphillips0851d2d2016-06-02 05:21:34 -0700658
659 GrPaint grPaint;
Brian Osman11052242016-10-27 14:47:55 -0400660 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), newPaint, m, &grPaint)) {
robertphillips0851d2d2016-06-02 05:21:34 -0700661 return;
662 }
663
Brian Salomon82f44312017-01-11 13:42:54 -0500664 fRenderTargetContext->fillRectWithLocalMatrix(
Brian Salomon0166cfd2017-03-13 17:58:25 -0400665 this->clip(), std::move(grPaint), GrBoolToAA(newPaint.isAntiAlias()), m, rect, local);
robertphillips0851d2d2016-06-02 05:21:34 -0700666}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000667
Mike Reeda1361362017-03-07 09:37:29 -0500668void SkGpuDevice::drawPath(const SkPath& origSrcPath,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000669 const SkPaint& paint, const SkMatrix* prePathMatrix,
670 bool pathIsMutable) {
joshualittce894002016-01-11 13:29:31 -0800671 ASSERT_SINGLE_OWNER
robertphillipsff55b492015-11-24 07:56:59 -0800672 if (!origSrcPath.isInverseFillType() && !paint.getPathEffect() && !prePathMatrix) {
robertphillips0851d2d2016-06-02 05:21:34 -0700673 SkPoint points[2];
674 if (SkPaint::kStroke_Style == paint.getStyle() && paint.getStrokeWidth() > 0 &&
675 !paint.getMaskFilter() && SkPaint::kRound_Cap != paint.getStrokeCap() &&
Mike Reeda1361362017-03-07 09:37:29 -0500676 this->ctm().preservesRightAngles() && origSrcPath.isLine(points)) {
robertphillips0851d2d2016-06-02 05:21:34 -0700677 // Path-based stroking looks better for thin rects
Mike Reeda1361362017-03-07 09:37:29 -0500678 SkScalar strokeWidth = this->ctm().getMaxScale() * paint.getStrokeWidth();
robertphillipsf2204c92016-06-02 10:57:59 -0700679 if (strokeWidth >= 1.0f) {
Brian Salomon09d994e2016-12-21 11:14:46 -0500680 // Round capping support is currently disabled b.c. it would require a RRect
681 // GrDrawOp that takes a localMatrix.
Mike Reeda1361362017-03-07 09:37:29 -0500682 this->drawStrokedLine(points, paint);
robertphillips0851d2d2016-06-02 05:21:34 -0700683 return;
684 }
685 }
robertphillipsff55b492015-11-24 07:56:59 -0800686 bool isClosed;
687 SkRect rect;
688 if (origSrcPath.isRect(&rect, &isClosed) && isClosed) {
Mike Reeda1361362017-03-07 09:37:29 -0500689 this->drawRect(rect, paint);
robertphillipsff55b492015-11-24 07:56:59 -0800690 return;
691 }
692 if (origSrcPath.isOval(&rect)) {
Mike Reeda1361362017-03-07 09:37:29 -0500693 this->drawOval(rect, paint);
robertphillipsff55b492015-11-24 07:56:59 -0800694 return;
695 }
696 SkRRect rrect;
697 if (origSrcPath.isRRect(&rrect)) {
Mike Reeda1361362017-03-07 09:37:29 -0500698 this->drawRRect(rrect, paint);
robertphillipsff55b492015-11-24 07:56:59 -0800699 return;
700 }
701 }
702
Mike Reeda1361362017-03-07 09:37:29 -0500703 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -0500704 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPath", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000705
Brian Salomon0166cfd2017-03-13 17:58:25 -0400706 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(), this->clip(),
707 origSrcPath, paint, this->ctm(), prePathMatrix,
Mike Reeda1361362017-03-07 09:37:29 -0500708 this->devClipBounds(), pathIsMutable);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000709}
710
711static const int kBmpSmallTileSize = 1 << 10;
712
713static inline int get_tile_count(const SkIRect& srcRect, int tileSize) {
714 int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1;
715 int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1;
716 return tilesX * tilesY;
717}
718
reed85d91782015-09-10 14:33:38 -0700719static int determine_tile_size(const SkIRect& src, int maxTileSize) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000720 if (maxTileSize <= kBmpSmallTileSize) {
721 return maxTileSize;
722 }
723
724 size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize);
725 size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize);
726
727 maxTileTotalTileSize *= maxTileSize * maxTileSize;
728 smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize;
729
730 if (maxTileTotalTileSize > 2 * smallTotalTileSize) {
731 return kBmpSmallTileSize;
732 } else {
733 return maxTileSize;
734 }
735}
736
737// Given a bitmap, an optional src rect, and a context with a clip and matrix determine what
738// pixels from the bitmap are necessary.
robertphillipse5768742016-05-13 11:20:46 -0700739static void determine_clipped_src_rect(int width, int height,
joshualitt570d2f82015-02-25 13:19:48 -0800740 const GrClip& clip,
joshualitt5531d512014-12-17 15:50:11 -0800741 const SkMatrix& viewMatrix,
bsalomone553b642016-08-17 09:02:09 -0700742 const SkMatrix& srcToDstRect,
reed85d91782015-09-10 14:33:38 -0700743 const SkISize& imageSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000744 const SkRect* srcRectPtr,
745 SkIRect* clippedSrcIRect) {
robertphillipse5768742016-05-13 11:20:46 -0700746 clip.getConservativeBounds(width, height, clippedSrcIRect, nullptr);
bsalomone553b642016-08-17 09:02:09 -0700747 SkMatrix inv = SkMatrix::Concat(viewMatrix, srcToDstRect);
748 if (!inv.invert(&inv)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000749 clippedSrcIRect->setEmpty();
750 return;
751 }
752 SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect);
753 inv.mapRect(&clippedSrcRect);
bsalomon49f085d2014-09-05 13:34:00 -0700754 if (srcRectPtr) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000755 if (!clippedSrcRect.intersect(*srcRectPtr)) {
756 clippedSrcIRect->setEmpty();
757 return;
758 }
759 }
760 clippedSrcRect.roundOut(clippedSrcIRect);
reed85d91782015-09-10 14:33:38 -0700761 SkIRect bmpBounds = SkIRect::MakeSize(imageSize);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000762 if (!clippedSrcIRect->intersect(bmpBounds)) {
763 clippedSrcIRect->setEmpty();
764 }
765}
766
reed85d91782015-09-10 14:33:38 -0700767bool SkGpuDevice::shouldTileImageID(uint32_t imageID, const SkIRect& imageRect,
768 const SkMatrix& viewMatrix,
bsalomone553b642016-08-17 09:02:09 -0700769 const SkMatrix& srcToDstRect,
Brian Salomon514baff2016-11-17 15:17:07 -0500770 const GrSamplerParams& params,
reed85d91782015-09-10 14:33:38 -0700771 const SkRect* srcRectPtr,
772 int maxTileSize,
773 int* tileSize,
774 SkIRect* clippedSubset) const {
joshualittce894002016-01-11 13:29:31 -0800775 ASSERT_SINGLE_OWNER
reed85d91782015-09-10 14:33:38 -0700776 // if it's larger than the max tile size, then we have no choice but tiling.
777 if (imageRect.width() > maxTileSize || imageRect.height() > maxTileSize) {
Brian Osman11052242016-10-27 14:47:55 -0400778 determine_clipped_src_rect(fRenderTargetContext->width(), fRenderTargetContext->height(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400779 this->clip(), viewMatrix, srcToDstRect, imageRect.size(),
780 srcRectPtr, clippedSubset);
reed85d91782015-09-10 14:33:38 -0700781 *tileSize = determine_tile_size(*clippedSubset, maxTileSize);
782 return true;
783 }
784
bsalomon1a1d0b82015-10-16 07:49:42 -0700785 // If the image would only produce 4 tiles of the smaller size, don't bother tiling it.
reed85d91782015-09-10 14:33:38 -0700786 const size_t area = imageRect.width() * imageRect.height();
787 if (area < 4 * kBmpSmallTileSize * kBmpSmallTileSize) {
788 return false;
789 }
790
reed85d91782015-09-10 14:33:38 -0700791 // At this point we know we could do the draw by uploading the entire bitmap
792 // as a texture. However, if the texture would be large compared to the
793 // cache size and we don't require most of it for this draw then tile to
794 // reduce the amount of upload and cache spill.
795
796 // assumption here is that sw bitmap size is a good proxy for its size as
797 // a texture
798 size_t bmpSize = area * sizeof(SkPMColor); // assume 32bit pixels
799 size_t cacheSize;
800 fContext->getResourceCacheLimits(nullptr, &cacheSize);
801 if (bmpSize < cacheSize / 2) {
802 return false;
803 }
804
bsalomon1a1d0b82015-10-16 07:49:42 -0700805 // Figure out how much of the src we will need based on the src rect and clipping. Reject if
806 // tiling memory savings would be < 50%.
Brian Salomon0166cfd2017-03-13 17:58:25 -0400807 determine_clipped_src_rect(fRenderTargetContext->width(), fRenderTargetContext->height(),
808 this->clip(), viewMatrix, srcToDstRect, imageRect.size(), srcRectPtr,
Brian Osman11052242016-10-27 14:47:55 -0400809 clippedSubset);
reed85d91782015-09-10 14:33:38 -0700810 *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile.
811 size_t usedTileBytes = get_tile_count(*clippedSubset, kBmpSmallTileSize) *
Brian Osmand05cdc32017-02-06 13:24:47 -0500812 kBmpSmallTileSize * kBmpSmallTileSize *
813 sizeof(SkPMColor); // assume 32bit pixels;
reed85d91782015-09-10 14:33:38 -0700814
Brian Osmand05cdc32017-02-06 13:24:47 -0500815 return usedTileBytes * 2 < bmpSize;
reed85d91782015-09-10 14:33:38 -0700816}
817
reed85d91782015-09-10 14:33:38 -0700818bool SkGpuDevice::shouldTileImage(const SkImage* image, const SkRect* srcRectPtr,
819 SkCanvas::SrcRectConstraint constraint, SkFilterQuality quality,
bsalomone553b642016-08-17 09:02:09 -0700820 const SkMatrix& viewMatrix,
821 const SkMatrix& srcToDstRect) const {
joshualittce894002016-01-11 13:29:31 -0800822 ASSERT_SINGLE_OWNER
reed85d91782015-09-10 14:33:38 -0700823 // if image is explictly texture backed then just use the texture
Robert Phillips6de99042017-01-31 11:31:39 -0500824 if (image->isTextureBacked()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000825 return false;
826 }
827
Brian Salomon514baff2016-11-17 15:17:07 -0500828 GrSamplerParams params;
reed85d91782015-09-10 14:33:38 -0700829 bool doBicubic;
Brian Salomon514baff2016-11-17 15:17:07 -0500830 GrSamplerParams::FilterMode textureFilterMode =
bsalomone553b642016-08-17 09:02:09 -0700831 GrSkFilterQualityToGrFilterMode(quality, viewMatrix, srcToDstRect, &doBicubic);
reed85d91782015-09-10 14:33:38 -0700832
833 int tileFilterPad;
834 if (doBicubic) {
835 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon514baff2016-11-17 15:17:07 -0500836 } else if (GrSamplerParams::kNone_FilterMode == textureFilterMode) {
reed85d91782015-09-10 14:33:38 -0700837 tileFilterPad = 0;
838 } else {
839 tileFilterPad = 1;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000840 }
reed85d91782015-09-10 14:33:38 -0700841 params.setFilterMode(textureFilterMode);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000842
bsalomon8c07b7a2015-11-02 11:36:52 -0800843 int maxTileSize = fContext->caps()->maxTileSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000844
reed85d91782015-09-10 14:33:38 -0700845 // these are output, which we safely ignore, as we just want to know the predicate
846 int outTileSize;
847 SkIRect outClippedSrcRect;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000848
bsalomone553b642016-08-17 09:02:09 -0700849 return this->shouldTileImageID(image->unique(), image->bounds(), viewMatrix, srcToDstRect,
850 params, srcRectPtr, maxTileSize, &outTileSize,
851 &outClippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000852}
853
Mike Reeda1361362017-03-07 09:37:29 -0500854void SkGpuDevice::drawBitmap(const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000855 const SkMatrix& m,
856 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800857 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -0500858 CHECK_SHOULD_DRAW();
bsalomonb1b01992015-11-18 10:56:08 -0800859 SkMatrix viewMatrix;
Mike Reeda1361362017-03-07 09:37:29 -0500860 viewMatrix.setConcat(this->ctm(), m);
reedc7ec7c92016-07-25 08:29:10 -0700861
bsalomonb1b01992015-11-18 10:56:08 -0800862 int maxTileSize = fContext->caps()->maxTileSize();
863
864 // The tile code path doesn't currently support AA, so if the paint asked for aa and we could
865 // draw untiled, then we bypass checking for tiling purely for optimization reasons.
Brian Osman11052242016-10-27 14:47:55 -0400866 bool drawAA = !fRenderTargetContext->isUnifiedMultisampled() &&
bsalomonb1b01992015-11-18 10:56:08 -0800867 paint.isAntiAlias() &&
868 bitmap.width() <= maxTileSize &&
869 bitmap.height() <= maxTileSize;
870
871 bool skipTileCheck = drawAA || paint.getMaskFilter();
872
873 if (!skipTileCheck) {
874 SkRect srcRect = SkRect::MakeIWH(bitmap.width(), bitmap.height());
875 int tileSize;
876 SkIRect clippedSrcRect;
877
Brian Salomon514baff2016-11-17 15:17:07 -0500878 GrSamplerParams params;
bsalomonb1b01992015-11-18 10:56:08 -0800879 bool doBicubic;
Brian Salomon514baff2016-11-17 15:17:07 -0500880 GrSamplerParams::FilterMode textureFilterMode =
bsalomonb1b01992015-11-18 10:56:08 -0800881 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), viewMatrix, SkMatrix::I(),
882 &doBicubic);
883
884 int tileFilterPad;
885
886 if (doBicubic) {
887 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon514baff2016-11-17 15:17:07 -0500888 } else if (GrSamplerParams::kNone_FilterMode == textureFilterMode) {
bsalomonb1b01992015-11-18 10:56:08 -0800889 tileFilterPad = 0;
890 } else {
891 tileFilterPad = 1;
892 }
893 params.setFilterMode(textureFilterMode);
894
895 int maxTileSizeForFilter = fContext->caps()->maxTileSize() - 2 * tileFilterPad;
bsalomone553b642016-08-17 09:02:09 -0700896 if (this->shouldTileImageID(bitmap.getGenerationID(), bitmap.getSubset(), viewMatrix,
897 SkMatrix::I(), params, &srcRect, maxTileSizeForFilter,
898 &tileSize, &clippedSrcRect)) {
899 this->drawTiledBitmap(bitmap, viewMatrix, SkMatrix::I(), srcRect, clippedSrcRect,
900 params, paint, SkCanvas::kStrict_SrcRectConstraint, tileSize,
901 doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -0800902 return;
903 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000904 }
Hal Canary144caf52016-11-07 17:57:18 -0500905 GrBitmapTextureMaker maker(fContext.get(), bitmap);
bsalomonf1ecd212015-12-09 17:06:02 -0800906 this->drawTextureProducer(&maker, nullptr, nullptr, SkCanvas::kStrict_SrcRectConstraint,
Brian Salomon0166cfd2017-03-13 17:58:25 -0400907 viewMatrix, this->clip(), paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000908}
909
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000910// This method outsets 'iRect' by 'outset' all around and then clamps its extents to
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000911// 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner
912// of 'iRect' for all possible outsets/clamps.
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000913static inline void clamped_outset_with_offset(SkIRect* iRect,
914 int outset,
915 SkPoint* offset,
916 const SkIRect& clamp) {
917 iRect->outset(outset, outset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000918
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000919 int leftClampDelta = clamp.fLeft - iRect->fLeft;
920 if (leftClampDelta > 0) {
921 offset->fX -= outset - leftClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000922 iRect->fLeft = clamp.fLeft;
923 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000924 offset->fX -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000925 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000926
927 int topClampDelta = clamp.fTop - iRect->fTop;
928 if (topClampDelta > 0) {
929 offset->fY -= outset - topClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000930 iRect->fTop = clamp.fTop;
931 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000932 offset->fY -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000933 }
934
935 if (iRect->fRight > clamp.fRight) {
936 iRect->fRight = clamp.fRight;
937 }
938 if (iRect->fBottom > clamp.fBottom) {
939 iRect->fBottom = clamp.fBottom;
940 }
941}
942
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000943// Break 'bitmap' into several tiles to draw it since it has already
944// been determined to be too large to fit in VRAM
945void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800946 const SkMatrix& viewMatrix,
bsalomone553b642016-08-17 09:02:09 -0700947 const SkMatrix& dstMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000948 const SkRect& srcRect,
949 const SkIRect& clippedSrcIRect,
Brian Salomon514baff2016-11-17 15:17:07 -0500950 const GrSamplerParams& params,
bsalomonc55271f2015-11-09 11:55:57 -0800951 const SkPaint& origPaint,
reeda5517e22015-07-14 10:54:12 -0700952 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000953 int tileSize,
954 bool bicubic) {
joshualittce894002016-01-11 13:29:31 -0800955 ASSERT_SINGLE_OWNER
ericrk369e9372016-02-05 15:32:36 -0800956
ericrk983294f2016-04-18 09:14:00 -0700957 // This is the funnel for all paths that draw tiled bitmaps/images. Log histogram entries.
ericrk369e9372016-02-05 15:32:36 -0800958 SK_HISTOGRAM_BOOLEAN("DrawTiled", true);
ericrk983294f2016-04-18 09:14:00 -0700959 LogDrawScaleFactor(viewMatrix, origPaint.getFilterQuality());
ericrk369e9372016-02-05 15:32:36 -0800960
bsalomonc55271f2015-11-09 11:55:57 -0800961 const SkPaint* paint = &origPaint;
962 SkPaint tempPaint;
Brian Osman11052242016-10-27 14:47:55 -0400963 if (origPaint.isAntiAlias() && !fRenderTargetContext->isUnifiedMultisampled()) {
bsalomonc55271f2015-11-09 11:55:57 -0800964 // Drop antialiasing to avoid seams at tile boundaries.
965 tempPaint = origPaint;
966 tempPaint.setAntiAlias(false);
967 paint = &tempPaint;
968 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000969 SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect);
970
971 int nx = bitmap.width() / tileSize;
972 int ny = bitmap.height() / tileSize;
973 for (int x = 0; x <= nx; x++) {
974 for (int y = 0; y <= ny; y++) {
975 SkRect tileR;
976 tileR.set(SkIntToScalar(x * tileSize),
977 SkIntToScalar(y * tileSize),
978 SkIntToScalar((x + 1) * tileSize),
979 SkIntToScalar((y + 1) * tileSize));
980
981 if (!SkRect::Intersects(tileR, clippedSrcRect)) {
982 continue;
983 }
984
985 if (!tileR.intersect(srcRect)) {
986 continue;
987 }
988
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000989 SkIRect iTileR;
990 tileR.roundOut(&iTileR);
bsalomone553b642016-08-17 09:02:09 -0700991 SkVector offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft),
992 SkIntToScalar(iTileR.fTop));
Brian Osmana950a862017-02-06 16:48:57 -0500993 SkRect rectToDraw = tileR;
bsalomone553b642016-08-17 09:02:09 -0700994 dstMatrix.mapRect(&rectToDraw);
Brian Salomon514baff2016-11-17 15:17:07 -0500995 if (GrSamplerParams::kNone_FilterMode != params.filterMode() || bicubic) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000996 SkIRect iClampRect;
997
reeda5517e22015-07-14 10:54:12 -0700998 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000999 // In bleed mode we want to always expand the tile on all edges
1000 // but stay within the bitmap bounds
1001 iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height());
1002 } else {
1003 // In texture-domain/clamp mode we only want to expand the
1004 // tile on edges interior to "srcRect" (i.e., we want to
1005 // not bleed across the original clamped edges)
1006 srcRect.roundOut(&iClampRect);
1007 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001008 int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1;
1009 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001010 }
1011
bsalomone553b642016-08-17 09:02:09 -07001012 SkBitmap tmpB;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001013 if (bitmap.extractSubset(&tmpB, iTileR)) {
1014 // now offset it to make it "local" to our tmp bitmap
1015 tileR.offset(-offset.fX, -offset.fY);
bsalomonb1b01992015-11-18 10:56:08 -08001016 // de-optimized this determination
1017 bool needsTextureDomain = true;
bsalomone553b642016-08-17 09:02:09 -07001018 this->drawBitmapTile(tmpB,
1019 viewMatrix,
1020 rectToDraw,
1021 tileR,
Robert Phillipse14d3052017-02-15 13:18:21 -05001022 params,
bsalomone553b642016-08-17 09:02:09 -07001023 *paint,
1024 constraint,
1025 bicubic,
1026 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001027 }
1028 }
1029 }
1030}
1031
bsalomone553b642016-08-17 09:02:09 -07001032void SkGpuDevice::drawBitmapTile(const SkBitmap& bitmap,
1033 const SkMatrix& viewMatrix,
1034 const SkRect& dstRect,
1035 const SkRect& srcRect,
Brian Salomon514baff2016-11-17 15:17:07 -05001036 const GrSamplerParams& params,
bsalomone553b642016-08-17 09:02:09 -07001037 const SkPaint& paint,
1038 SkCanvas::SrcRectConstraint constraint,
1039 bool bicubic,
1040 bool needsTextureDomain) {
bsalomon9c586542015-11-02 12:33:21 -08001041 // We should have already handled bitmaps larger than the max texture size.
1042 SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() &&
1043 bitmap.height() <= fContext->caps()->maxTextureSize());
reedc7ec7c92016-07-25 08:29:10 -07001044 // We should be respecting the max tile size by the time we get here.
1045 SkASSERT(bitmap.width() <= fContext->caps()->maxTileSize() &&
1046 bitmap.height() <= fContext->caps()->maxTileSize());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001047
Robert Phillipse14d3052017-02-15 13:18:21 -05001048 SkASSERT(SkShader::kClamp_TileMode == params.getTileModeX() &&
1049 SkShader::kClamp_TileMode == params.getTileModeY());
1050
Robert Phillips78075802017-03-23 11:11:59 -04001051 sk_sp<GrTextureProxy> proxy = GrRefCachedBitmapTextureProxy(fContext.get(), bitmap,
1052 params, nullptr);
1053 if (!proxy) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001054 return;
1055 }
brianosman500bb3e2016-07-22 10:33:07 -07001056 sk_sp<GrColorSpaceXform> colorSpaceXform =
Brian Osman11052242016-10-27 14:47:55 -04001057 GrColorSpaceXform::Make(bitmap.colorSpace(), fRenderTargetContext->getColorSpace());
bsalomone553b642016-08-17 09:02:09 -07001058
bsalomone553b642016-08-17 09:02:09 -07001059 // Compute a matrix that maps the rect we will draw to the src rect.
Robert Phillipse14d3052017-02-15 13:18:21 -05001060 const SkMatrix texMatrix = SkMatrix::MakeRectToRect(dstRect, srcRect,
1061 SkMatrix::kFill_ScaleToFit);
joshualitt5f10b5c2015-07-09 10:24:35 -07001062
1063 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
1064 // the rest from the SkPaint.
bungeman06ca8ec2016-06-09 08:01:03 -07001065 sk_sp<GrFragmentProcessor> fp;
joshualitt5f10b5c2015-07-09 10:24:35 -07001066
reeda5517e22015-07-14 10:54:12 -07001067 if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001068 // Use a constrained texture domain to avoid color bleeding
bsalomone553b642016-08-17 09:02:09 -07001069 SkRect domain;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001070 if (srcRect.width() > SK_Scalar1) {
Robert Phillipse98234f2017-01-09 14:23:59 -05001071 domain.fLeft = srcRect.fLeft + 0.5f;
1072 domain.fRight = srcRect.fRight - 0.5f;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001073 } else {
Robert Phillipse98234f2017-01-09 14:23:59 -05001074 domain.fLeft = domain.fRight = srcRect.centerX();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001075 }
1076 if (srcRect.height() > SK_Scalar1) {
Robert Phillipse98234f2017-01-09 14:23:59 -05001077 domain.fTop = srcRect.fTop + 0.5f;
1078 domain.fBottom = srcRect.fBottom - 0.5f;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001079 } else {
Robert Phillipse98234f2017-01-09 14:23:59 -05001080 domain.fTop = domain.fBottom = srcRect.centerY();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001081 }
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001082 if (bicubic) {
Robert Phillips78075802017-03-23 11:11:59 -04001083 fp = GrBicubicEffect::Make(this->context()->resourceProvider(), std::move(proxy),
1084 std::move(colorSpaceXform), texMatrix, domain);
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001085 } else {
Robert Phillips78075802017-03-23 11:11:59 -04001086 fp = GrTextureDomainEffect::Make(this->context()->resourceProvider(), std::move(proxy),
1087 std::move(colorSpaceXform), texMatrix,
bsalomone553b642016-08-17 09:02:09 -07001088 domain, GrTextureDomain::kClamp_Mode,
brianosman54f30c12016-07-18 10:53:52 -07001089 params.filterMode());
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001090 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001091 } else if (bicubic) {
Brian Salomon514baff2016-11-17 15:17:07 -05001092 SkASSERT(GrSamplerParams::kNone_FilterMode == params.filterMode());
commit-bot@chromium.orgbc91fd72013-12-10 12:53:39 +00001093 SkShader::TileMode tileModes[2] = { params.getTileModeX(), params.getTileModeY() };
Robert Phillips78075802017-03-23 11:11:59 -04001094 fp = GrBicubicEffect::Make(this->context()->resourceProvider(), std::move(proxy),
1095 std::move(colorSpaceXform), texMatrix, tileModes);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001096 } else {
Robert Phillips78075802017-03-23 11:11:59 -04001097 fp = GrSimpleTextureEffect::Make(this->context()->resourceProvider(), std::move(proxy),
1098 std::move(colorSpaceXform), texMatrix, params);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001099 }
1100
joshualitt33a5fce2015-11-18 13:28:51 -08001101 GrPaint grPaint;
Brian Osman11052242016-10-27 14:47:55 -04001102 if (!SkPaintToGrPaintWithTexture(this->context(), fRenderTargetContext.get(), paint, viewMatrix,
brianosman8fe485b2016-07-25 12:31:51 -07001103 std::move(fp), kAlpha_8_SkColorType == bitmap.colorType(),
1104 &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001105 return;
1106 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001107
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001108 // Coverage-based AA would cause seams between tiles.
1109 GrAA aa = GrBoolToAA(paint.isAntiAlias() &&
1110 fRenderTargetContext->isStencilBufferMultisampled());
Brian Salomon0166cfd2017-03-13 17:58:25 -04001111 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), aa, viewMatrix, dstRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001112}
1113
Mike Reeda1361362017-03-07 09:37:29 -05001114void SkGpuDevice::drawSprite(const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001115 int left, int top, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001116 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001117 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -05001118 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawSprite", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001119
robertphillips970587b2016-07-14 14:12:55 -07001120 if (fContext->abandoned()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001121 return;
1122 }
1123
Robert Phillipse14d3052017-02-15 13:18:21 -05001124 sk_sp<SkSpecialImage> srcImg = this->makeSpecial(bitmap);
1125 if (!srcImg) {
1126 return;
joshualitt5f5a8d72015-02-25 14:09:45 -08001127 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001128
Mike Reeda1361362017-03-07 09:37:29 -05001129 this->drawSpecial(srcImg.get(), left, top, paint);
robertphillips970587b2016-07-14 14:12:55 -07001130}
1131
1132
Mike Reeda1361362017-03-07 09:37:29 -05001133void SkGpuDevice::drawSpecial(SkSpecialImage* special1,
robertphillips970587b2016-07-14 14:12:55 -07001134 int left, int top,
1135 const SkPaint& paint) {
robertphillips1b5f9682016-07-15 08:01:12 -07001136 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001137 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -05001138 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawSpecial", fContext.get());
robertphillips970587b2016-07-14 14:12:55 -07001139
1140 SkIPoint offset = { 0, 0 };
1141
1142 sk_sp<SkSpecialImage> result;
1143 if (paint.getImageFilter()) {
Mike Reeda1361362017-03-07 09:37:29 -05001144 result = this->filterTexture(special1, left, top,
robertphillips970587b2016-07-14 14:12:55 -07001145 &offset,
1146 paint.getImageFilter());
1147 if (!result) {
1148 return;
1149 }
1150 } else {
1151 result = sk_ref_sp(special1);
1152 }
1153
1154 SkASSERT(result->isTextureBacked());
Robert Phillips2c6d2bf2017-02-21 10:19:29 -05001155 sk_sp<GrTextureProxy> proxy = result->asTextureProxyRef(this->context());
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001156 if (!proxy) {
Robert Phillips833dcf42016-11-18 08:44:13 -05001157 return;
1158 }
robertphillips970587b2016-07-14 14:12:55 -07001159
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001160 const GrPixelConfig config = proxy->config();
1161
robertphillips970587b2016-07-14 14:12:55 -07001162 SkPaint tmpUnfiltered(paint);
1163 tmpUnfiltered.setImageFilter(nullptr);
1164
brianosman77320db2016-09-07 08:09:10 -07001165 sk_sp<GrColorSpaceXform> colorSpaceXform =
Brian Osman11052242016-10-27 14:47:55 -04001166 GrColorSpaceXform::Make(result->getColorSpace(), fRenderTargetContext->getColorSpace());
Robert Phillips2c6d2bf2017-02-21 10:19:29 -05001167
Robert Phillips296b1cc2017-03-15 10:42:12 -04001168 sk_sp<GrFragmentProcessor> fp(GrSimpleTextureEffect::Make(this->context()->resourceProvider(),
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001169 std::move(proxy),
brianosman77320db2016-09-07 08:09:10 -07001170 std::move(colorSpaceXform),
brianosman54f30c12016-07-18 10:53:52 -07001171 SkMatrix::I()));
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001172 if (GrPixelConfigIsAlphaOnly(config)) {
Brian Salomon22af73f2017-01-26 11:25:12 -05001173 fp = GrFragmentProcessor::MakeInputPremulAndMulByOutput(std::move(fp));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001174 } else {
bungeman06ca8ec2016-06-09 08:01:03 -07001175 fp = GrFragmentProcessor::MulOutputByInputAlpha(std::move(fp));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001176 }
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001177
1178 GrPaint grPaint;
Brian Osman11052242016-10-27 14:47:55 -04001179 if (!SkPaintToGrPaintReplaceShader(this->context(), fRenderTargetContext.get(), tmpUnfiltered,
brianosman8fe485b2016-07-25 12:31:51 -07001180 std::move(fp), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001181 return;
1182 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001183
robertphillips970587b2016-07-14 14:12:55 -07001184 const SkIRect& subset = result->subset();
1185
Brian Salomon82f44312017-01-11 13:42:54 -05001186 fRenderTargetContext->fillRectToRect(
Brian Salomon0166cfd2017-03-13 17:58:25 -04001187 this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -05001188 std::move(grPaint),
1189 GrBoolToAA(paint.isAntiAlias()),
1190 SkMatrix::I(),
Brian Salomon0166cfd2017-03-13 17:58:25 -04001191 SkRect::Make(SkIRect::MakeXYWH(left + offset.fX, top + offset.fY, subset.width(),
1192 subset.height())),
Robert Phillips67c18d62017-01-20 12:44:06 -05001193 SkRect::Make(subset));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001194}
1195
Mike Reeda1361362017-03-07 09:37:29 -05001196void SkGpuDevice::drawBitmapRect(const SkBitmap& bitmap,
bsalomonb1b01992015-11-18 10:56:08 -08001197 const SkRect* src, const SkRect& origDst,
reed562fe472015-07-28 07:35:14 -07001198 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
joshualittce894002016-01-11 13:29:31 -08001199 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001200 CHECK_SHOULD_DRAW();
reedc7ec7c92016-07-25 08:29:10 -07001201
bsalomonb1b01992015-11-18 10:56:08 -08001202 // The src rect is inferred to be the bmp bounds if not provided. Otherwise, the src rect must
1203 // be clipped to the bmp bounds. To determine tiling parameters we need the filter mode which
1204 // in turn requires knowing the src-to-dst mapping. If the src was clipped to the bmp bounds
1205 // then we use the src-to-dst mapping to compute a new clipped dst rect.
1206 const SkRect* dst = &origDst;
1207 const SkRect bmpBounds = SkRect::MakeIWH(bitmap.width(), bitmap.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001208 // Compute matrix from the two rectangles
bsalomonb1b01992015-11-18 10:56:08 -08001209 if (!src) {
1210 src = &bmpBounds;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001211 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001212
bsalomonb1b01992015-11-18 10:56:08 -08001213 SkMatrix srcToDstMatrix;
1214 if (!srcToDstMatrix.setRectToRect(*src, *dst, SkMatrix::kFill_ScaleToFit)) {
1215 return;
1216 }
1217 SkRect tmpSrc, tmpDst;
1218 if (src != &bmpBounds) {
1219 if (!bmpBounds.contains(*src)) {
1220 tmpSrc = *src;
1221 if (!tmpSrc.intersect(bmpBounds)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001222 return; // nothing to draw
1223 }
bsalomonb1b01992015-11-18 10:56:08 -08001224 src = &tmpSrc;
1225 srcToDstMatrix.mapRect(&tmpDst, *src);
1226 dst = &tmpDst;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001227 }
1228 }
1229
bsalomonb1b01992015-11-18 10:56:08 -08001230 int maxTileSize = fContext->caps()->maxTileSize();
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001231
bsalomonb1b01992015-11-18 10:56:08 -08001232 // The tile code path doesn't currently support AA, so if the paint asked for aa and we could
1233 // draw untiled, then we bypass checking for tiling purely for optimization reasons.
Brian Osman11052242016-10-27 14:47:55 -04001234 bool drawAA = !fRenderTargetContext->isUnifiedMultisampled() &&
bsalomonb1b01992015-11-18 10:56:08 -08001235 paint.isAntiAlias() &&
1236 bitmap.width() <= maxTileSize &&
1237 bitmap.height() <= maxTileSize;
1238
1239 bool skipTileCheck = drawAA || paint.getMaskFilter();
1240
1241 if (!skipTileCheck) {
1242 int tileSize;
1243 SkIRect clippedSrcRect;
1244
Brian Salomon514baff2016-11-17 15:17:07 -05001245 GrSamplerParams params;
bsalomonb1b01992015-11-18 10:56:08 -08001246 bool doBicubic;
Brian Salomon514baff2016-11-17 15:17:07 -05001247 GrSamplerParams::FilterMode textureFilterMode =
Mike Reeda1361362017-03-07 09:37:29 -05001248 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), this->ctm(), srcToDstMatrix,
bsalomonb1b01992015-11-18 10:56:08 -08001249 &doBicubic);
1250
1251 int tileFilterPad;
1252
1253 if (doBicubic) {
1254 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon514baff2016-11-17 15:17:07 -05001255 } else if (GrSamplerParams::kNone_FilterMode == textureFilterMode) {
bsalomonb1b01992015-11-18 10:56:08 -08001256 tileFilterPad = 0;
1257 } else {
1258 tileFilterPad = 1;
1259 }
1260 params.setFilterMode(textureFilterMode);
1261
1262 int maxTileSizeForFilter = fContext->caps()->maxTileSize() - 2 * tileFilterPad;
Mike Reeda1361362017-03-07 09:37:29 -05001263 if (this->shouldTileImageID(bitmap.getGenerationID(), bitmap.getSubset(), this->ctm(),
bsalomone553b642016-08-17 09:02:09 -07001264 srcToDstMatrix, params, src, maxTileSizeForFilter, &tileSize,
1265 &clippedSrcRect)) {
Mike Reeda1361362017-03-07 09:37:29 -05001266 this->drawTiledBitmap(bitmap, this->ctm(), srcToDstMatrix, *src, clippedSrcRect,
bsalomone553b642016-08-17 09:02:09 -07001267 params, paint, constraint, tileSize, doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -08001268 return;
1269 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001270 }
Hal Canary144caf52016-11-07 17:57:18 -05001271 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Brian Salomon0166cfd2017-03-13 17:58:25 -04001272 this->drawTextureProducer(&maker, src, dst, constraint, this->ctm(), this->clip(), paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001273}
1274
robertphillips6451a0c2016-07-18 08:31:31 -07001275sk_sp<SkSpecialImage> SkGpuDevice::makeSpecial(const SkBitmap& bitmap) {
Robert Phillipse14d3052017-02-15 13:18:21 -05001276 // TODO: this makes a tight copy of 'bitmap' but it doesn't have to be (given SkSpecialImage's
1277 // semantics). Since this is cached we would have to bake the fit into the cache key though.
Robert Phillips26c90e02017-03-14 14:39:29 -04001278 sk_sp<GrTextureProxy> proxy = GrMakeCachedBitmapProxy(fContext->resourceProvider(), bitmap);
Robert Phillipse14d3052017-02-15 13:18:21 -05001279 if (!proxy) {
robertphillips6451a0c2016-07-18 08:31:31 -07001280 return nullptr;
1281 }
1282
Robert Phillipse14d3052017-02-15 13:18:21 -05001283 const SkIRect rect = SkIRect::MakeWH(proxy->width(), proxy->height());
robertphillips6451a0c2016-07-18 08:31:31 -07001284
Robert Phillipse14d3052017-02-15 13:18:21 -05001285 // GrMakeCachedBitmapProxy creates a tight copy of 'bitmap' so we don't have to subset
1286 // the special image
1287 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1288 rect,
1289 bitmap.getGenerationID(),
1290 std::move(proxy),
1291 bitmap.refColorSpace(),
1292 &this->surfaceProps());
robertphillips6451a0c2016-07-18 08:31:31 -07001293}
1294
reede51c3562016-07-19 14:33:20 -07001295sk_sp<SkSpecialImage> SkGpuDevice::makeSpecial(const SkImage* image) {
robertphillips6451a0c2016-07-18 08:31:31 -07001296 SkPixmap pm;
1297 if (image->isTextureBacked()) {
Robert Phillips6de99042017-01-31 11:31:39 -05001298 sk_sp<GrTextureProxy> proxy = as_IB(image)->asTextureProxyRef();
robertphillips6451a0c2016-07-18 08:31:31 -07001299
Robert Phillips6de99042017-01-31 11:31:39 -05001300 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1301 SkIRect::MakeWH(image->width(), image->height()),
1302 image->uniqueID(),
1303 std::move(proxy),
1304 as_IB(image)->onImageInfo().refColorSpace(),
1305 &this->surfaceProps());
robertphillips6451a0c2016-07-18 08:31:31 -07001306 } else if (image->peekPixels(&pm)) {
1307 SkBitmap bm;
1308
1309 bm.installPixels(pm);
1310 return this->makeSpecial(bm);
1311 } else {
1312 return nullptr;
1313 }
1314}
1315
1316sk_sp<SkSpecialImage> SkGpuDevice::snapSpecial() {
Robert Phillips63c67462017-02-15 14:19:01 -05001317 sk_sp<GrTextureProxy> proxy(this->accessRenderTargetContext()->asTextureProxyRef());
1318 if (!proxy) {
robertphillips04d62182016-07-15 12:21:33 -07001319 // When the device doesn't have a texture, we create a temporary texture.
1320 // TODO: we should actually only copy the portion of the source needed to apply the image
1321 // filter
Robert Phillips63c67462017-02-15 14:19:01 -05001322 proxy = GrSurfaceProxy::Copy(fContext.get(),
1323 this->accessRenderTargetContext()->asSurfaceProxy(),
1324 SkBudgeted::kYes);
1325 if (!proxy) {
robertphillips04d62182016-07-15 12:21:33 -07001326 return nullptr;
1327 }
robertphillips1b5f9682016-07-15 08:01:12 -07001328 }
1329
1330 const SkImageInfo ii = this->imageInfo();
1331 const SkIRect srcRect = SkIRect::MakeWH(ii.width(), ii.height());
1332
Robert Phillipse2f7d182016-12-15 09:23:05 -05001333 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1334 srcRect,
1335 kNeedNewImageUniqueID_SpecialImage,
Robert Phillips63c67462017-02-15 14:19:01 -05001336 std::move(proxy),
Robert Phillips70b49fd2017-01-13 11:21:36 -05001337 ii.refColorSpace(),
Robert Phillipse2f7d182016-12-15 09:23:05 -05001338 &this->surfaceProps());
robertphillips1b5f9682016-07-15 08:01:12 -07001339}
1340
Mike Reeda1361362017-03-07 09:37:29 -05001341void SkGpuDevice::drawDevice(SkBaseDevice* device,
robertphillips1b5f9682016-07-15 08:01:12 -07001342 int left, int top, const SkPaint& paint) {
reedcf5c8462016-07-20 12:28:40 -07001343 SkASSERT(!paint.getImageFilter());
1344
joshualittce894002016-01-11 13:29:31 -08001345 ASSERT_SINGLE_OWNER
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001346 // clear of the source device must occur before CHECK_SHOULD_DRAW
Hal Canary144caf52016-11-07 17:57:18 -05001347 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawDevice", fContext.get());
kkinnunen2e4414e2015-02-19 07:20:40 -08001348
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001349 // drawDevice is defined to be in device coords.
Mike Reeda1361362017-03-07 09:37:29 -05001350 CHECK_SHOULD_DRAW();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001351
robertphillips1b5f9682016-07-15 08:01:12 -07001352 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
robertphillips6451a0c2016-07-18 08:31:31 -07001353 sk_sp<SkSpecialImage> srcImg(dev->snapSpecial());
robertphillips1b5f9682016-07-15 08:01:12 -07001354 if (!srcImg) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001355 return;
1356 }
1357
Mike Reeda1361362017-03-07 09:37:29 -05001358 this->drawSpecial(srcImg.get(), left, top, paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001359}
1360
Mike Reeda1361362017-03-07 09:37:29 -05001361void SkGpuDevice::drawImage(const SkImage* image, SkScalar x, SkScalar y,
reeda85d4d02015-05-06 12:56:48 -07001362 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001363 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001364 SkMatrix viewMatrix = this->ctm();
bsalomon1cf6f9b2015-12-08 10:53:43 -08001365 viewMatrix.preTranslate(x, y);
reed2d5b7142016-08-17 11:12:33 -07001366 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001367
1368 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Mike Reeda1361362017-03-07 09:37:29 -05001369 CHECK_SHOULD_DRAW();
Robert Phillips3798c862017-03-27 11:08:16 -04001370 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
1371 image->alphaType(), image->bounds(),
1372 pinnedUniqueID, as_IB(image)->onImageInfo().colorSpace());
bsalomonf1ecd212015-12-09 17:06:02 -08001373 this->drawTextureProducer(&adjuster, nullptr, nullptr, SkCanvas::kFast_SrcRectConstraint,
Brian Salomon0166cfd2017-03-13 17:58:25 -04001374 viewMatrix, this->clip(), paint);
bsalomonc55271f2015-11-09 11:55:57 -08001375 return;
reed85d91782015-09-10 14:33:38 -07001376 } else {
bsalomon1cf6f9b2015-12-08 10:53:43 -08001377 SkBitmap bm;
reed85d91782015-09-10 14:33:38 -07001378 if (this->shouldTileImage(image, nullptr, SkCanvas::kFast_SrcRectConstraint,
Mike Reeda1361362017-03-07 09:37:29 -05001379 paint.getFilterQuality(), this->ctm(), SkMatrix::I())) {
reed85d91782015-09-10 14:33:38 -07001380 // only support tiling as bitmap at the moment, so force raster-version
Brian Osman61624f02016-12-09 14:51:59 -05001381 if (!as_IB(image)->getROPixels(&bm, fRenderTargetContext->getColorSpace())) {
reed85d91782015-09-10 14:33:38 -07001382 return;
1383 }
Mike Reeda1361362017-03-07 09:37:29 -05001384 this->drawBitmap(bm, SkMatrix::MakeTrans(x, y), paint);
bsalomon1cf6f9b2015-12-08 10:53:43 -08001385 } else if (SkImageCacherator* cacher = as_IB(image)->peekCacherator()) {
Mike Reeda1361362017-03-07 09:37:29 -05001386 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -05001387 GrImageTextureMaker maker(fContext.get(), cacher, image, SkImage::kAllow_CachingHint);
bsalomonf1ecd212015-12-09 17:06:02 -08001388 this->drawTextureProducer(&maker, nullptr, nullptr, SkCanvas::kFast_SrcRectConstraint,
Brian Salomon0166cfd2017-03-13 17:58:25 -04001389 viewMatrix, this->clip(), paint);
Brian Osman61624f02016-12-09 14:51:59 -05001390 } else if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->getColorSpace())) {
Mike Reeda1361362017-03-07 09:37:29 -05001391 this->drawBitmap(bm, SkMatrix::MakeTrans(x, y), paint);
reed85d91782015-09-10 14:33:38 -07001392 }
reeda85d4d02015-05-06 12:56:48 -07001393 }
1394}
1395
Mike Reeda1361362017-03-07 09:37:29 -05001396void SkGpuDevice::drawImageRect(const SkImage* image, const SkRect* src,
reeda5517e22015-07-14 10:54:12 -07001397 const SkRect& dst, const SkPaint& paint,
1398 SkCanvas::SrcRectConstraint constraint) {
joshualittce894002016-01-11 13:29:31 -08001399 ASSERT_SINGLE_OWNER
reed2d5b7142016-08-17 11:12:33 -07001400 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001401 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Mike Reeda1361362017-03-07 09:37:29 -05001402 CHECK_SHOULD_DRAW();
Robert Phillips3798c862017-03-27 11:08:16 -04001403 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
1404 image->alphaType(), image->bounds(), pinnedUniqueID,
reed2d5b7142016-08-17 11:12:33 -07001405 as_IB(image)->onImageInfo().colorSpace());
Brian Salomon0166cfd2017-03-13 17:58:25 -04001406 this->drawTextureProducer(&adjuster, src, &dst, constraint, this->ctm(), this->clip(),
1407 paint);
bsalomonc55271f2015-11-09 11:55:57 -08001408 return;
1409 }
1410 SkBitmap bm;
bsalomone553b642016-08-17 09:02:09 -07001411 SkMatrix srcToDstRect;
1412 srcToDstRect.setRectToRect((src ? *src : SkRect::MakeIWH(image->width(), image->height())),
1413 dst, SkMatrix::kFill_ScaleToFit);
Mike Reeda1361362017-03-07 09:37:29 -05001414 if (this->shouldTileImage(image, src, constraint, paint.getFilterQuality(), this->ctm(),
bsalomone553b642016-08-17 09:02:09 -07001415 srcToDstRect)) {
bsalomonc55271f2015-11-09 11:55:57 -08001416 // only support tiling as bitmap at the moment, so force raster-version
Brian Osman61624f02016-12-09 14:51:59 -05001417 if (!as_IB(image)->getROPixels(&bm, fRenderTargetContext->getColorSpace())) {
bsalomonc55271f2015-11-09 11:55:57 -08001418 return;
1419 }
Mike Reeda1361362017-03-07 09:37:29 -05001420 this->drawBitmapRect(bm, src, dst, paint, constraint);
bsalomon1cf6f9b2015-12-08 10:53:43 -08001421 } else if (SkImageCacherator* cacher = as_IB(image)->peekCacherator()) {
Mike Reeda1361362017-03-07 09:37:29 -05001422 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -05001423 GrImageTextureMaker maker(fContext.get(), cacher, image, SkImage::kAllow_CachingHint);
Brian Salomon0166cfd2017-03-13 17:58:25 -04001424 this->drawTextureProducer(&maker, src, &dst, constraint, this->ctm(), this->clip(), paint);
Brian Osman61624f02016-12-09 14:51:59 -05001425 } else if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->getColorSpace())) {
Mike Reeda1361362017-03-07 09:37:29 -05001426 this->drawBitmapRect(bm, src, dst, paint, constraint);
reeda85d4d02015-05-06 12:56:48 -07001427 }
bsalomon1cf6f9b2015-12-08 10:53:43 -08001428}
1429
Mike Reeda1361362017-03-07 09:37:29 -05001430void SkGpuDevice::drawProducerNine(GrTextureProducer* producer,
bsalomon2bbd0c62015-12-09 12:50:56 -08001431 const SkIRect& center, const SkRect& dst, const SkPaint& paint) {
Hal Canary144caf52016-11-07 17:57:18 -05001432 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawProducerNine", fContext.get());
joshualitt33a5fce2015-11-18 13:28:51 -08001433
Mike Reeda1361362017-03-07 09:37:29 -05001434 CHECK_SHOULD_DRAW();
joshualitt33a5fce2015-11-18 13:28:51 -08001435
joshualittedb36442015-11-19 14:29:30 -08001436 bool useFallback = paint.getMaskFilter() || paint.isAntiAlias() ||
Brian Osman11052242016-10-27 14:47:55 -04001437 fRenderTargetContext->isUnifiedMultisampled();
joshualitt33a5fce2015-11-18 13:28:51 -08001438 bool doBicubic;
Brian Salomon514baff2016-11-17 15:17:07 -05001439 GrSamplerParams::FilterMode textureFilterMode =
Mike Reeda1361362017-03-07 09:37:29 -05001440 GrSkFilterQualityToGrFilterMode(paint.getFilterQuality(), this->ctm(), SkMatrix::I(),
bsalomon2bbd0c62015-12-09 12:50:56 -08001441 &doBicubic);
Brian Salomon514baff2016-11-17 15:17:07 -05001442 if (useFallback || doBicubic || GrSamplerParams::kNone_FilterMode != textureFilterMode) {
msarettc573a402016-08-02 08:05:56 -07001443 SkLatticeIter iter(producer->width(), producer->height(), center, dst);
joshualitt33a5fce2015-11-18 13:28:51 -08001444
1445 SkRect srcR, dstR;
1446 while (iter.next(&srcR, &dstR)) {
erikchen9a1ed5d2016-02-10 16:32:34 -08001447 this->drawTextureProducer(producer, &srcR, &dstR, SkCanvas::kStrict_SrcRectConstraint,
Brian Salomon0166cfd2017-03-13 17:58:25 -04001448 this->ctm(), this->clip(), paint);
joshualitt33a5fce2015-11-18 13:28:51 -08001449 }
1450 return;
1451 }
1452
Brian Salomon514baff2016-11-17 15:17:07 -05001453 static const GrSamplerParams::FilterMode kMode = GrSamplerParams::kNone_FilterMode;
bungeman06ca8ec2016-06-09 08:01:03 -07001454 sk_sp<GrFragmentProcessor> fp(
bsalomon2bbd0c62015-12-09 12:50:56 -08001455 producer->createFragmentProcessor(SkMatrix::I(),
1456 SkRect::MakeIWH(producer->width(), producer->height()),
1457 GrTextureProducer::kNo_FilterConstraint, true,
Brian Osman61624f02016-12-09 14:51:59 -05001458 &kMode, fRenderTargetContext->getColorSpace()));
joshualitt33a5fce2015-11-18 13:28:51 -08001459 GrPaint grPaint;
Brian Osman11052242016-10-27 14:47:55 -04001460 if (!SkPaintToGrPaintWithTexture(this->context(), fRenderTargetContext.get(), paint,
Mike Reeda1361362017-03-07 09:37:29 -05001461 this->ctm(), std::move(fp), producer->isAlphaOnly(),
Brian Osman11052242016-10-27 14:47:55 -04001462 &grPaint)) {
joshualitt33a5fce2015-11-18 13:28:51 -08001463 return;
1464 }
1465
msarett10e3d9b2016-08-18 15:46:03 -07001466 std::unique_ptr<SkLatticeIter> iter(
1467 new SkLatticeIter(producer->width(), producer->height(), center, dst));
Brian Salomon0166cfd2017-03-13 17:58:25 -04001468 fRenderTargetContext->drawImageLattice(this->clip(), std::move(grPaint), this->ctm(),
Brian Salomon82f44312017-01-11 13:42:54 -05001469 producer->width(), producer->height(), std::move(iter),
1470 dst);
bsalomon2bbd0c62015-12-09 12:50:56 -08001471}
1472
Mike Reeda1361362017-03-07 09:37:29 -05001473void SkGpuDevice::drawImageNine(const SkImage* image,
bsalomon2bbd0c62015-12-09 12:50:56 -08001474 const SkIRect& center, const SkRect& dst, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001475 ASSERT_SINGLE_OWNER
reed2d5b7142016-08-17 11:12:33 -07001476 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001477 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Mike Reeda1361362017-03-07 09:37:29 -05001478 CHECK_SHOULD_DRAW();
Robert Phillips3798c862017-03-27 11:08:16 -04001479 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
1480 image->alphaType(), image->bounds(),
1481 pinnedUniqueID, as_IB(image)->onImageInfo().colorSpace());
Mike Reeda1361362017-03-07 09:37:29 -05001482 this->drawProducerNine(&adjuster, center, dst, paint);
bsalomon2bbd0c62015-12-09 12:50:56 -08001483 } else {
1484 SkBitmap bm;
1485 if (SkImageCacherator* cacher = as_IB(image)->peekCacherator()) {
Hal Canary144caf52016-11-07 17:57:18 -05001486 GrImageTextureMaker maker(fContext.get(), cacher, image, SkImage::kAllow_CachingHint);
Mike Reeda1361362017-03-07 09:37:29 -05001487 this->drawProducerNine(&maker, center, dst, paint);
Brian Osman61624f02016-12-09 14:51:59 -05001488 } else if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->getColorSpace())) {
Mike Reeda1361362017-03-07 09:37:29 -05001489 this->drawBitmapNine(bm, center, dst, paint);
bsalomon2bbd0c62015-12-09 12:50:56 -08001490 }
1491 }
1492}
1493
Mike Reeda1361362017-03-07 09:37:29 -05001494void SkGpuDevice::drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
bsalomon2bbd0c62015-12-09 12:50:56 -08001495 const SkRect& dst, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001496 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001497 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Mike Reeda1361362017-03-07 09:37:29 -05001498 this->drawProducerNine(&maker, center, dst, paint);
joshualitt33a5fce2015-11-18 13:28:51 -08001499}
1500
Mike Reeda1361362017-03-07 09:37:29 -05001501void SkGpuDevice::drawProducerLattice(GrTextureProducer* producer,
msarett10e3d9b2016-08-18 15:46:03 -07001502 const SkCanvas::Lattice& lattice, const SkRect& dst,
1503 const SkPaint& paint) {
Hal Canary144caf52016-11-07 17:57:18 -05001504 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawProducerLattice", fContext.get());
msarett10e3d9b2016-08-18 15:46:03 -07001505
Mike Reeda1361362017-03-07 09:37:29 -05001506 CHECK_SHOULD_DRAW();
msarett10e3d9b2016-08-18 15:46:03 -07001507
Brian Salomon514baff2016-11-17 15:17:07 -05001508 static const GrSamplerParams::FilterMode kMode = GrSamplerParams::kNone_FilterMode;
msarett10e3d9b2016-08-18 15:46:03 -07001509 sk_sp<GrFragmentProcessor> fp(
1510 producer->createFragmentProcessor(SkMatrix::I(),
1511 SkRect::MakeIWH(producer->width(), producer->height()),
1512 GrTextureProducer::kNo_FilterConstraint, true,
Brian Osman61624f02016-12-09 14:51:59 -05001513 &kMode, fRenderTargetContext->getColorSpace()));
msarett10e3d9b2016-08-18 15:46:03 -07001514 GrPaint grPaint;
Brian Osman11052242016-10-27 14:47:55 -04001515 if (!SkPaintToGrPaintWithTexture(this->context(), fRenderTargetContext.get(), paint,
Mike Reeda1361362017-03-07 09:37:29 -05001516 this->ctm(), std::move(fp), producer->isAlphaOnly(),
Brian Osman11052242016-10-27 14:47:55 -04001517 &grPaint)) {
msarett10e3d9b2016-08-18 15:46:03 -07001518 return;
1519 }
1520
1521 std::unique_ptr<SkLatticeIter> iter(
msarett71df2d72016-09-30 12:41:42 -07001522 new SkLatticeIter(lattice, dst));
Brian Salomon0166cfd2017-03-13 17:58:25 -04001523 fRenderTargetContext->drawImageLattice(this->clip(), std::move(grPaint), this->ctm(),
Brian Salomon82f44312017-01-11 13:42:54 -05001524 producer->width(), producer->height(), std::move(iter),
1525 dst);
msarett10e3d9b2016-08-18 15:46:03 -07001526}
1527
Mike Reeda1361362017-03-07 09:37:29 -05001528void SkGpuDevice::drawImageLattice(const SkImage* image,
msarett10e3d9b2016-08-18 15:46:03 -07001529 const SkCanvas::Lattice& lattice, const SkRect& dst,
1530 const SkPaint& paint) {
1531 ASSERT_SINGLE_OWNER
1532 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001533 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Mike Reeda1361362017-03-07 09:37:29 -05001534 CHECK_SHOULD_DRAW();
Robert Phillips3798c862017-03-27 11:08:16 -04001535 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
1536 image->alphaType(), image->bounds(),
1537 pinnedUniqueID, as_IB(image)->onImageInfo().colorSpace());
Mike Reeda1361362017-03-07 09:37:29 -05001538 this->drawProducerLattice(&adjuster, lattice, dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001539 } else {
1540 SkBitmap bm;
1541 if (SkImageCacherator* cacher = as_IB(image)->peekCacherator()) {
Hal Canary144caf52016-11-07 17:57:18 -05001542 GrImageTextureMaker maker(fContext.get(), cacher, image, SkImage::kAllow_CachingHint);
Mike Reeda1361362017-03-07 09:37:29 -05001543 this->drawProducerLattice(&maker, lattice, dst, paint);
Brian Osman61624f02016-12-09 14:51:59 -05001544 } else if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->getColorSpace())) {
Mike Reeda1361362017-03-07 09:37:29 -05001545 this->drawBitmapLattice(bm, lattice, dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001546 }
1547 }
1548}
1549
Mike Reeda1361362017-03-07 09:37:29 -05001550void SkGpuDevice::drawBitmapLattice(const SkBitmap& bitmap,
msarett10e3d9b2016-08-18 15:46:03 -07001551 const SkCanvas::Lattice& lattice, const SkRect& dst,
1552 const SkPaint& paint) {
1553 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001554 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Mike Reeda1361362017-03-07 09:37:29 -05001555 this->drawProducerLattice(&maker, lattice, dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001556}
1557
Robert Phillips26c90e02017-03-14 14:39:29 -04001558static bool init_vertices_paint(GrContext* context, GrRenderTargetContext* rtc,
1559 const SkPaint& skPaint,
1560 const SkMatrix& matrix, SkBlendMode bmode,
1561 bool hasTexs, bool hasColors, GrPaint* grPaint) {
Brian Salomon199fb872017-02-06 09:41:10 -05001562 if (hasTexs && skPaint.getShader()) {
1563 if (hasColors) {
1564 // When there are texs and colors the shader and colors are combined using bmode.
1565 return SkPaintToGrPaintWithXfermode(context, rtc, skPaint, matrix, bmode, false,
1566 grPaint);
1567 } else {
1568 // We have a shader, but no colors to blend it against.
1569 return SkPaintToGrPaint(context, rtc, skPaint, matrix, grPaint);
1570 }
1571 } else {
1572 if (hasColors) {
1573 // We have colors, but either have no shader or no texture coords (which implies that
1574 // we should ignore the shader).
1575 return SkPaintToGrPaintWithPrimitiveColor(context, rtc, skPaint, grPaint);
1576 } else {
1577 // No colors and no shaders. Just draw with the paint color.
1578 return (!SkPaintToGrPaintNoShader(context, rtc, skPaint, grPaint));
1579 }
1580 }
1581}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001582
Mike Reed887cdf12017-04-03 11:11:09 -04001583void SkGpuDevice::wireframeVertices(SkVertices::VertexMode vmode, int vertexCount,
Mike Reed2f6b5a42017-03-19 15:04:17 -04001584 const SkPoint vertices[], SkBlendMode bmode,
1585 const uint16_t indices[], int indexCount,
1586 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001587 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001588 CHECK_SHOULD_DRAW();
Mike Reed2f6b5a42017-03-19 15:04:17 -04001589 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "wireframeVertices", fContext.get());
mtklein533eb782014-08-27 10:39:42 -07001590
Mike Reed2f6b5a42017-03-19 15:04:17 -04001591 SkPaint copy(paint);
1592 copy.setStyle(SkPaint::kStroke_Style);
1593 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001594
Mike Reed2f6b5a42017-03-19 15:04:17 -04001595 GrPaint grPaint;
1596 // we ignore the shader since we have no texture coordinates.
1597 if (!SkPaintToGrPaintNoShader(this->context(), fRenderTargetContext.get(), copy, &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001598 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001599 }
1600
Mike Reed2f6b5a42017-03-19 15:04:17 -04001601 int triangleCount = 0;
1602 int n = (nullptr == indices) ? vertexCount : indexCount;
1603 switch (vmode) {
Mike Reed887cdf12017-04-03 11:11:09 -04001604 case SkVertices::kTriangles_VertexMode:
Mike Reed2f6b5a42017-03-19 15:04:17 -04001605 triangleCount = n / 3;
1606 break;
Mike Reed887cdf12017-04-03 11:11:09 -04001607 case SkVertices::kTriangleStrip_VertexMode:
1608 case SkVertices::kTriangleFan_VertexMode:
Mike Reed2f6b5a42017-03-19 15:04:17 -04001609 triangleCount = n - 2;
1610 break;
1611 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001612
Mike Reed2f6b5a42017-03-19 15:04:17 -04001613 VertState state(vertexCount, indices, indexCount);
1614 VertState::Proc vertProc = state.chooseProc(vmode);
1615
1616 //number of indices for lines per triangle with kLines
1617 indexCount = triangleCount * 6;
1618
1619 std::unique_ptr<uint16_t[]> lineIndices(new uint16_t[indexCount]);
1620 int i = 0;
1621 while (vertProc(&state)) {
1622 lineIndices[i] = state.f0;
1623 lineIndices[i + 1] = state.f1;
1624 lineIndices[i + 2] = state.f1;
1625 lineIndices[i + 3] = state.f2;
1626 lineIndices[i + 4] = state.f2;
1627 lineIndices[i + 5] = state.f0;
1628 i += 6;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001629 }
Brian Salomon0166cfd2017-03-13 17:58:25 -04001630 fRenderTargetContext->drawVertices(this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -05001631 std::move(grPaint),
Mike Reeda1361362017-03-07 09:37:29 -05001632 this->ctm(),
Mike Reed2f6b5a42017-03-19 15:04:17 -04001633 kLines_GrPrimitiveType,
Brian Osman11052242016-10-27 14:47:55 -04001634 vertexCount,
1635 vertices,
Mike Reed2f6b5a42017-03-19 15:04:17 -04001636 nullptr,
1637 nullptr,
1638 lineIndices.get(),
1639 indexCount);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001640}
1641
Mike Reed2f6b5a42017-03-19 15:04:17 -04001642void SkGpuDevice::drawVertices(const SkVertices* vertices, SkBlendMode mode,
Mike Reede88a1cb2017-03-17 09:50:46 -04001643 const SkPaint& paint) {
Brian Salomon199fb872017-02-06 09:41:10 -05001644 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001645 CHECK_SHOULD_DRAW();
Mike Reed2f6b5a42017-03-19 15:04:17 -04001646 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawVertices", fContext.get());
Brian Salomon199fb872017-02-06 09:41:10 -05001647
1648 SkASSERT(vertices);
1649 GrPaint grPaint;
Mike Reed5fa66452017-03-16 09:06:34 -04001650 bool hasColors = vertices->hasColors();
1651 bool hasTexs = vertices->hasTexCoords();
Brian Salomon199fb872017-02-06 09:41:10 -05001652 if (!hasTexs && !hasColors) {
1653 // The dreaded wireframe mode. Fallback to drawVertices and go so slooooooow.
Mike Reed2f6b5a42017-03-19 15:04:17 -04001654 this->wireframeVertices(vertices->mode(), vertices->vertexCount(), vertices->positions(),
1655 mode, vertices->indices(), vertices->indexCount(), paint);
Brian Salomon199fb872017-02-06 09:41:10 -05001656 }
Robert Phillips26c90e02017-03-14 14:39:29 -04001657 if (!init_vertices_paint(fContext.get(), fRenderTargetContext.get(), paint, this->ctm(),
1658 mode, hasTexs, hasColors, &grPaint)) {
Brian Salomon199fb872017-02-06 09:41:10 -05001659 return;
1660 }
Brian Salomon0166cfd2017-03-13 17:58:25 -04001661 fRenderTargetContext->drawVertices(this->clip(), std::move(grPaint), this->ctm(),
Mike Reede88a1cb2017-03-17 09:50:46 -04001662 sk_ref_sp(const_cast<SkVertices*>(vertices)));
Brian Salomon199fb872017-02-06 09:41:10 -05001663}
1664
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001665///////////////////////////////////////////////////////////////////////////////
1666
Mike Reeda1361362017-03-07 09:37:29 -05001667void SkGpuDevice::drawAtlas(const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001668 const SkRect texRect[], const SkColor colors[], int count,
Mike Reedfaba3712016-11-03 14:45:31 -04001669 SkBlendMode mode, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001670 ASSERT_SINGLE_OWNER
reedca109532015-06-25 16:25:25 -07001671 if (paint.isAntiAlias()) {
Mike Reeda1361362017-03-07 09:37:29 -05001672 this->INHERITED::drawAtlas(atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001673 return;
1674 }
1675
Mike Reeda1361362017-03-07 09:37:29 -05001676 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -05001677 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawText", fContext.get());
herb11a7f7f2015-11-24 12:41:00 -08001678
reedca109532015-06-25 16:25:25 -07001679 SkPaint p(paint);
reed5671c5b2016-03-09 14:47:34 -08001680 p.setShader(atlas->makeShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode));
reedca109532015-06-25 16:25:25 -07001681
jvanverth31ff7622015-08-07 10:09:28 -07001682 GrPaint grPaint;
robertphillips29ccdf82015-07-24 10:20:45 -07001683 if (colors) {
Brian Osman11052242016-10-27 14:47:55 -04001684 if (!SkPaintToGrPaintWithXfermode(this->context(), fRenderTargetContext.get(), p,
Mike Reeda1361362017-03-07 09:37:29 -05001685 this->ctm(), (SkBlendMode)mode, true, &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001686 return;
1687 }
1688 } else {
Mike Reeda1361362017-03-07 09:37:29 -05001689 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext.get(), p, this->ctm(),
Brian Osman11052242016-10-27 14:47:55 -04001690 &grPaint)) {
jvanverth31ff7622015-08-07 10:09:28 -07001691 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001692 }
1693 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001694
1695 SkDEBUGCODE(this->validate();)
Brian Salomon0166cfd2017-03-13 17:58:25 -04001696 fRenderTargetContext->drawAtlas(
1697 this->clip(), std::move(grPaint), this->ctm(), count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001698}
1699
1700///////////////////////////////////////////////////////////////////////////////
1701
Mike Reeda1361362017-03-07 09:37:29 -05001702void SkGpuDevice::drawText(const void* text,
joshualitt5531d512014-12-17 15:50:11 -08001703 size_t byteLength, SkScalar x, SkScalar y,
1704 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001705 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001706 CHECK_SHOULD_DRAW();
Hal Canary144caf52016-11-07 17:57:18 -05001707 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawText", fContext.get());
jvanverth8c27a182014-10-14 08:45:50 -07001708 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001709
Brian Salomon0166cfd2017-03-13 17:58:25 -04001710 fRenderTargetContext->drawText(this->clip(), paint, this->ctm(), (const char*)text, byteLength,
1711 x, y, this->devClipBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001712}
1713
Mike Reeda1361362017-03-07 09:37:29 -05001714void SkGpuDevice::drawPosText(const void* text, size_t byteLength,
fmalita05c4a432014-09-29 06:29:53 -07001715 const SkScalar pos[], int scalarsPerPos,
1716 const SkPoint& offset, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001717 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001718 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPosText", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -05001719 CHECK_SHOULD_DRAW();
jvanverth8c27a182014-10-14 08:45:50 -07001720 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001721
Brian Salomon0166cfd2017-03-13 17:58:25 -04001722 fRenderTargetContext->drawPosText(this->clip(), paint, this->ctm(), (const char*)text,
1723 byteLength, pos, scalarsPerPos, offset,
Mike Reeda1361362017-03-07 09:37:29 -05001724 this->devClipBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001725}
1726
Mike Reeda1361362017-03-07 09:37:29 -05001727void SkGpuDevice::drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
joshualitt9c328182015-03-23 08:13:04 -07001728 const SkPaint& paint, SkDrawFilter* drawFilter) {
joshualittce894002016-01-11 13:29:31 -08001729 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001730 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawTextBlob", fContext.get());
Mike Reeda1361362017-03-07 09:37:29 -05001731 CHECK_SHOULD_DRAW();
joshualitt9c328182015-03-23 08:13:04 -07001732
1733 SkDEBUGCODE(this->validate();)
1734
Brian Salomon0166cfd2017-03-13 17:58:25 -04001735 fRenderTargetContext->drawTextBlob(this->clip(), paint, this->ctm(), blob, x, y, drawFilter,
1736 this->devClipBounds());
joshualitt9c328182015-03-23 08:13:04 -07001737}
1738
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001739///////////////////////////////////////////////////////////////////////////////
1740
reedb2db8982014-11-13 12:41:02 -08001741bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const {
joshualitt8e84a1e2016-02-16 11:09:25 -08001742 return GrTextUtils::ShouldDisableLCD(paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001743}
1744
1745void SkGpuDevice::flush() {
joshualittce894002016-01-11 13:29:31 -08001746 ASSERT_SINGLE_OWNER
joshualittbc907352016-01-13 06:45:40 -08001747
Brian Osman11052242016-10-27 14:47:55 -04001748 fRenderTargetContext->prepareForExternalIO();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001749}
1750
1751///////////////////////////////////////////////////////////////////////////////
1752
reed76033be2015-03-14 10:54:31 -07001753SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
joshualittce894002016-01-11 13:29:31 -08001754 ASSERT_SINGLE_OWNER
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001755
robertphillipsca6eafc2016-05-17 09:57:46 -07001756 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001757
robertphillipsca6eafc2016-05-17 09:57:46 -07001758 // layers are never drawn in repeat modes, so we can request an approx
hcm4396fa52014-10-27 21:43:30 -07001759 // match and ignore any padding.
robertphillipsca6eafc2016-05-17 09:57:46 -07001760 SkBackingFit fit = kNever_TileUsage == cinfo.fTileUsage ? SkBackingFit::kApprox
1761 : SkBackingFit::kExact;
bsalomonafe30052015-01-16 07:32:33 -08001762
Robert Phillipsdd3b3f42017-04-24 10:57:28 -04001763 sk_sp<GrRenderTargetContext> rtc(fContext->makeDeferredRenderTargetContext(
Brian Osman11052242016-10-27 14:47:55 -04001764 fit,
1765 cinfo.fInfo.width(), cinfo.fInfo.height(),
Robert Phillipsdd3b3f42017-04-24 10:57:28 -04001766 fRenderTargetContext->config(),
1767 fRenderTargetContext->refColorSpace(),
1768 fRenderTargetContext->desc().fSampleCnt,
1769 kBottomLeft_GrSurfaceOrigin,
Brian Osman11052242016-10-27 14:47:55 -04001770 &props));
1771 if (!rtc) {
Mike Kleine54c75f2016-10-13 14:18:09 -04001772 return nullptr;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001773 }
robertphillipsca6eafc2016-05-17 09:57:46 -07001774
1775 // Skia's convention is to only clear a device if it is non-opaque.
1776 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
1777
Robert Phillips9fab7e92016-11-17 12:45:04 -05001778 return SkGpuDevice::Make(fContext.get(), std::move(rtc),
1779 cinfo.fInfo.width(), cinfo.fInfo.height(), init).release();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001780}
1781
reede8f30622016-03-23 18:59:25 -07001782sk_sp<SkSurface> SkGpuDevice::makeSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
joshualittce894002016-01-11 13:29:31 -08001783 ASSERT_SINGLE_OWNER
bsalomonafe30052015-01-16 07:32:33 -08001784 // TODO: Change the signature of newSurface to take a budgeted parameter.
bsalomon5ec26ae2016-02-25 08:33:02 -08001785 static const SkBudgeted kBudgeted = SkBudgeted::kNo;
Hal Canary144caf52016-11-07 17:57:18 -05001786 return SkSurface::MakeRenderTarget(fContext.get(), kBudgeted, info,
Brian Osman11052242016-10-27 14:47:55 -04001787 fRenderTargetContext->desc().fSampleCnt,
1788 fRenderTargetContext->origin(), &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001789}
1790
senorblanco900c3672016-04-27 11:31:23 -07001791SkImageFilterCache* SkGpuDevice::getImageFilterCache() {
joshualittce894002016-01-11 13:29:31 -08001792 ASSERT_SINGLE_OWNER
senorblanco55b6d8b2014-07-30 11:26:46 -07001793 // We always return a transient cache, so it is freed after each
1794 // filter traversal.
brianosman04a44d02016-09-21 09:46:57 -07001795 return SkImageFilterCache::Create(SkImageFilterCache::kDefaultTransientSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07001796}
reedf037e0b2014-10-30 11:34:15 -07001797
1798#endif