blob: ffe237f803cfbff51e6ca4c36c7056280212f460 [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"
Hal Canaryc640d0d2018-06-13 09:59:02 -04009
Brian Salomon2a943df2018-05-04 13:43:19 -040010#include "../private/SkShadowFlags.h"
Brian Osman3b66ab62016-11-28 09:26:31 -050011#include "GrBitmapTextureMaker.h"
robertphillipsccb1b572015-05-27 11:02:55 -070012#include "GrBlurUtils.h"
Brian Osman1cb41712017-10-19 12:54:52 -040013#include "GrColorSpaceXform.h"
kkinnunenabcfab42015-02-22 22:53:44 -080014#include "GrContext.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050015#include "GrContextPriv.h"
kkinnunenabcfab42015-02-22 22:53:44 -080016#include "GrGpu.h"
Brian Osman3b66ab62016-11-28 09:26:31 -050017#include "GrImageTextureMaker.h"
18#include "GrRenderTargetContextPriv.h"
bsalomon6663acf2016-05-10 09:14:17 -070019#include "GrStyle.h"
Robert Phillips0ae6faa2017-03-21 16:22:00 -040020#include "GrSurfaceProxyPriv.h"
Brian Osmane8e54582016-11-28 10:06:27 -050021#include "GrTextureAdjuster.h"
Robert Phillipse2f7d182016-12-15 09:23:05 -050022#include "GrTextureProxy.h"
egdanielbbcb38d2014-06-19 10:19:29 -070023#include "GrTracing.h"
robertphillips30d78412014-11-24 09:49:17 -080024#include "SkCanvasPriv.h"
robertphillips714712b2016-08-04 06:20:45 -070025#include "SkDraw.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000026#include "SkGlyphCache.h"
bsalomonf276ac52015-10-09 13:36:42 -070027#include "SkGr.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000028#include "SkImageFilter.h"
senorblanco900c3672016-04-27 11:31:23 -070029#include "SkImageFilterCache.h"
Matt Sarettcb6266b2017-01-17 10:48:53 -050030#include "SkImageInfoPriv.h"
Brian Salomon6a639042016-12-14 11:08:17 -050031#include "SkImage_Base.h"
msarettc573a402016-08-02 08:05:56 -070032#include "SkLatticeIter.h"
Brian Salomon2a943df2018-05-04 13:43:19 -040033#include "SkMakeUnique.h"
Mike Reed80747ef2018-01-23 15:29:32 -050034#include "SkMaskFilterBase.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000035#include "SkPathEffect.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000036#include "SkPicture.h"
robertphillipsdb539902014-07-01 08:47:04 -070037#include "SkPictureData.h"
Mike Reed242135a2018-02-22 13:41:39 -050038#include "SkRRectPriv.h"
Brian Salomon6a639042016-12-14 11:08:17 -050039#include "SkRasterClip.h"
Matt Sarett03dd6d52017-01-23 12:15:09 -050040#include "SkReadPixelsRec.h"
kkinnunenabcfab42015-02-22 22:53:44 -080041#include "SkRecord.h"
robertphillips970587b2016-07-14 14:12:55 -070042#include "SkSpecialImage.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000043#include "SkStroke.h"
reed@google.com76f10a32014-02-05 15:32:21 +000044#include "SkSurface.h"
kkinnunenabcfab42015-02-22 22:53:44 -080045#include "SkSurface_Gpu.h"
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +000046#include "SkTLazy.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040047#include "SkTo.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000048#include "SkUtils.h"
commit-bot@chromium.org559a8832014-05-30 10:08:22 +000049#include "SkVertState.h"
Brian Salomon199fb872017-02-06 09:41:10 -050050#include "SkVertices.h"
Matt Sarett03dd6d52017-01-23 12:15:09 -050051#include "SkWritePixelsRec.h"
kkinnunenabcfab42015-02-22 22:53:44 -080052#include "effects/GrBicubicEffect.h"
kkinnunenabcfab42015-02-22 22:53:44 -080053#include "effects/GrSimpleTextureEffect.h"
54#include "effects/GrTextureDomain.h"
joshualitt8e84a1e2016-02-16 11:09:25 -080055#include "text/GrTextUtils.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000056
joshualittce894002016-01-11 13:29:31 -080057#define ASSERT_SINGLE_OWNER \
Robert Phillips0c4b7b12018-03-06 08:20:37 -050058SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(fContext->contextPriv().debugSingleOwner());)
joshualittce894002016-01-11 13:29:31 -080059
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000060
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000061///////////////////////////////////////////////////////////////////////////////
62
bsalomon74f681d2015-06-23 14:38:48 -070063/** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation
64 should fail. */
65bool SkGpuDevice::CheckAlphaTypeAndGetFlags(
66 const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) {
67 *flags = 0;
68 if (info) {
69 switch (info->alphaType()) {
70 case kPremul_SkAlphaType:
71 break;
72 case kOpaque_SkAlphaType:
73 *flags |= SkGpuDevice::kIsOpaque_Flag;
74 break;
75 default: // If it is unpremul or unknown don't try to render
76 return false;
77 }
78 }
79 if (kClear_InitContents == init) {
80 *flags |= kNeedClear_Flag;
81 }
82 return true;
83}
84
Robert Phillips9fab7e92016-11-17 12:45:04 -050085sk_sp<SkGpuDevice> SkGpuDevice::Make(GrContext* context,
86 sk_sp<GrRenderTargetContext> renderTargetContext,
robertphillips15c42ca2016-08-04 08:45:02 -070087 int width, int height,
88 InitContents init) {
Brian Osman11052242016-10-27 14:47:55 -040089 if (!renderTargetContext || renderTargetContext->wasAbandoned()) {
robertphillipsca6eafc2016-05-17 09:57:46 -070090 return nullptr;
91 }
92 unsigned flags;
93 if (!CheckAlphaTypeAndGetFlags(nullptr, init, &flags)) {
94 return nullptr;
95 }
Robert Phillips9fab7e92016-11-17 12:45:04 -050096 return sk_sp<SkGpuDevice>(new SkGpuDevice(context, std::move(renderTargetContext),
97 width, height, flags));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000098}
99
robertphillips24e91282016-04-29 06:46:36 -0700100sk_sp<SkGpuDevice> SkGpuDevice::Make(GrContext* context, SkBudgeted budgeted,
101 const SkImageInfo& info, int sampleCount,
Greg Daniele252f082017-10-23 16:05:23 -0400102 GrSurfaceOrigin origin, const SkSurfaceProps* props,
103 GrMipMapped mipMapped, InitContents init) {
bsalomon74f681d2015-06-23 14:38:48 -0700104 unsigned flags;
105 if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700106 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700107 }
108
Brian Osman11052242016-10-27 14:47:55 -0400109 sk_sp<GrRenderTargetContext> renderTargetContext(MakeRenderTargetContext(context, budgeted,
110 info, sampleCount,
Greg Daniele252f082017-10-23 16:05:23 -0400111 origin, props,
112 mipMapped));
Brian Osman11052242016-10-27 14:47:55 -0400113 if (!renderTargetContext) {
halcanary96fcdcc2015-08-27 07:41:13 -0700114 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700115 }
116
Robert Phillips9fab7e92016-11-17 12:45:04 -0500117 return sk_sp<SkGpuDevice>(new SkGpuDevice(context, std::move(renderTargetContext),
robertphillipsca6eafc2016-05-17 09:57:46 -0700118 info.width(), info.height(), flags));
bsalomon74f681d2015-06-23 14:38:48 -0700119}
120
Brian Osman11052242016-10-27 14:47:55 -0400121static SkImageInfo make_info(GrRenderTargetContext* context, int w, int h, bool opaque) {
reed589a39e2016-08-20 07:59:19 -0700122 SkColorType colorType;
Brian Salomonf3569f02017-10-24 12:52:33 -0400123 if (!GrPixelConfigToColorType(context->colorSpaceInfo().config(), &colorType)) {
reed589a39e2016-08-20 07:59:19 -0700124 colorType = kUnknown_SkColorType;
125 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400126 return SkImageInfo::Make(w, h, colorType, opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType,
127 context->colorSpaceInfo().refColorSpace());
reed589a39e2016-08-20 07:59:19 -0700128}
129
Robert Phillips9fab7e92016-11-17 12:45:04 -0500130SkGpuDevice::SkGpuDevice(GrContext* context, sk_sp<GrRenderTargetContext> renderTargetContext,
131 int width, int height, unsigned flags)
Brian Osman11052242016-10-27 14:47:55 -0400132 : INHERITED(make_info(renderTargetContext.get(), width, height,
133 SkToBool(flags & kIsOpaque_Flag)), renderTargetContext->surfaceProps())
Robert Phillips9fab7e92016-11-17 12:45:04 -0500134 , fContext(SkRef(context))
Brian Osman11052242016-10-27 14:47:55 -0400135 , fRenderTargetContext(std::move(renderTargetContext))
reed589a39e2016-08-20 07:59:19 -0700136{
robertphillips1f3923e2016-07-21 07:17:54 -0700137 fSize.set(width, height);
bsalomon74f681d2015-06-23 14:38:48 -0700138 fOpaque = SkToBool(flags & kIsOpaque_Flag);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000139
bsalomone63ffef2016-02-05 07:17:34 -0800140 if (flags & kNeedClear_Flag) {
141 this->clearAll();
142 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000143}
144
Brian Osman11052242016-10-27 14:47:55 -0400145sk_sp<GrRenderTargetContext> SkGpuDevice::MakeRenderTargetContext(
146 GrContext* context,
147 SkBudgeted budgeted,
148 const SkImageInfo& origInfo,
149 int sampleCount,
150 GrSurfaceOrigin origin,
Greg Daniele252f082017-10-23 16:05:23 -0400151 const SkSurfaceProps* surfaceProps,
152 GrMipMapped mipMapped) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000153 if (kUnknown_SkColorType == origInfo.colorType() ||
154 origInfo.width() < 0 || origInfo.height() < 0) {
halcanary96fcdcc2015-08-27 07:41:13 -0700155 return nullptr;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000156 }
157
bsalomonafe30052015-01-16 07:32:33 -0800158 if (!context) {
halcanary96fcdcc2015-08-27 07:41:13 -0700159 return nullptr;
bsalomonafe30052015-01-16 07:32:33 -0800160 }
161
Brian Osman2b23c4b2018-06-01 12:25:08 -0400162 GrPixelConfig config = SkImageInfo2GrPixelConfig(origInfo);
Greg Daniel0a7aa142018-02-21 13:02:32 -0500163 if (kUnknown_GrPixelConfig == config) {
164 return nullptr;
165 }
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400166 // This method is used to create SkGpuDevice's for SkSurface_Gpus. In this case
167 // they need to be exact.
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500168 return context->contextPriv().makeDeferredRenderTargetContext(
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400169 SkBackingFit::kExact,
robertphillips6738c702016-07-27 12:13:51 -0700170 origInfo.width(), origInfo.height(),
Robert Phillips70b49fd2017-01-13 11:21:36 -0500171 config, origInfo.refColorSpace(), sampleCount,
Greg Daniel45d63032017-10-30 13:41:26 -0400172 mipMapped, origin, surfaceProps, budgeted);
kkinnunenabcfab42015-02-22 22:53:44 -0800173}
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000174
Mike Reeda1361362017-03-07 09:37:29 -0500175sk_sp<SkSpecialImage> SkGpuDevice::filterTexture(SkSpecialImage* srcImg,
robertphillips970587b2016-07-14 14:12:55 -0700176 int left, int top,
177 SkIPoint* offset,
178 const SkImageFilter* filter) {
179 SkASSERT(srcImg->isTextureBacked());
180 SkASSERT(filter);
181
Mike Reeda1361362017-03-07 09:37:29 -0500182 SkMatrix matrix = this->ctm();
robertphillips970587b2016-07-14 14:12:55 -0700183 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
Mike Reeda1361362017-03-07 09:37:29 -0500184 const SkIRect clipBounds = this->devClipBounds().makeOffset(-left, -top);
Hal Canary144caf52016-11-07 17:57:18 -0500185 sk_sp<SkImageFilterCache> cache(this->getImageFilterCache());
Brian Osmana50205f2018-07-06 13:57:01 -0400186 SkColorType colorType;
187 if (!GrPixelConfigToColorType(fRenderTargetContext->colorSpaceInfo().config(), &colorType)) {
188 colorType = kN32_SkColorType;
189 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400190 SkImageFilter::OutputProperties outputProperties(
Brian Osmana50205f2018-07-06 13:57:01 -0400191 colorType, fRenderTargetContext->colorSpaceInfo().colorSpace());
brianosman2a75e5d2016-09-22 07:15:37 -0700192 SkImageFilter::Context ctx(matrix, clipBounds, cache.get(), outputProperties);
robertphillips970587b2016-07-14 14:12:55 -0700193
194 return filter->filterImage(srcImg, ctx, offset);
195}
196
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000197///////////////////////////////////////////////////////////////////////////////
198
Mike Reed353196f2017-07-21 11:01:18 -0400199bool SkGpuDevice::onReadPixels(const SkPixmap& pm, int x, int y) {
joshualittce894002016-01-11 13:29:31 -0800200 ASSERT_SINGLE_OWNER
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000201
Mike Reed353196f2017-07-21 11:01:18 -0400202 if (!SkImageInfoValidConversion(pm.info(), this->imageInfo())) {
Matt Sarettcb6266b2017-01-17 10:48:53 -0500203 return false;
204 }
205
Mike Reed353196f2017-07-21 11:01:18 -0400206 SkReadPixelsRec rec(pm, x, y);
Matt Sarett03dd6d52017-01-23 12:15:09 -0500207 if (!rec.trim(this->width(), this->height())) {
208 return false;
209 }
210
211 return fRenderTargetContext->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000212}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000213
Mike Reed353196f2017-07-21 11:01:18 -0400214bool SkGpuDevice::onWritePixels(const SkPixmap& pm, int x, int y) {
joshualittce894002016-01-11 13:29:31 -0800215 ASSERT_SINGLE_OWNER
robertphillips1da3ecd2016-08-31 14:54:15 -0700216
Mike Reed353196f2017-07-21 11:01:18 -0400217 if (!SkImageInfoValidConversion(this->imageInfo(), pm.info())) {
Matt Sarettcb6266b2017-01-17 10:48:53 -0500218 return false;
219 }
220
Mike Reed353196f2017-07-21 11:01:18 -0400221 SkWritePixelsRec rec(pm, x, y);
Matt Sarett03dd6d52017-01-23 12:15:09 -0500222 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());
Chris Dalton344e9032017-12-11 15:42:09 -0700244 fRenderTargetContext->clear(&rect, 0x0, GrRenderTargetContext::CanClearFullscreen::kYes);
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(),
Greg Daniele252f082017-10-23 16:05:23 -0400260 &this->surfaceProps(),
261 fRenderTargetContext->mipMapped()));
Brian Osman693a5402016-10-27 15:13:22 -0400262 if (!newRTC) {
kkinnunenabcfab42015-02-22 22:53:44 -0800263 return;
264 }
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400265 SkASSERT(newRTC->asSurfaceProxy()->priv().isExact());
kkinnunenabcfab42015-02-22 22:53:44 -0800266
267 if (shouldRetainContent) {
Brian Osman11052242016-10-27 14:47:55 -0400268 if (fRenderTargetContext->wasAbandoned()) {
kkinnunenabcfab42015-02-22 22:53:44 -0800269 return;
270 }
Robert Phillipsf200a902017-01-30 13:27:37 -0500271 newRTC->copy(fRenderTargetContext->asSurfaceProxy());
kkinnunenabcfab42015-02-22 22:53:44 -0800272 }
273
Brian Osman693a5402016-10-27 15:13:22 -0400274 fRenderTargetContext = newRTC;
kkinnunenabcfab42015-02-22 22:53:44 -0800275}
276
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000277///////////////////////////////////////////////////////////////////////////////
278
Mike Reeda1361362017-03-07 09:37:29 -0500279void SkGpuDevice::drawPaint(const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800280 ASSERT_SINGLE_OWNER
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;
Brian Salomonf3569f02017-10-24 12:52:33 -0400284 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
285 this->ctm(), &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
Brian Salomon1459ebd2017-12-19 16:12:44 -0500292static inline GrPrimitiveType point_mode_to_primitive_type(SkCanvas::PointMode mode) {
293 switch (mode) {
294 case SkCanvas::kPoints_PointMode:
295 return GrPrimitiveType::kPoints;
296 case SkCanvas::kLines_PointMode:
297 return GrPrimitiveType::kLines;
298 case SkCanvas::kPolygon_PointMode:
299 return GrPrimitiveType::kLineStrip;
300 }
301 SK_ABORT("Unexpected mode");
302 return GrPrimitiveType::kPoints;
303}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000304
Mike Reeda1361362017-03-07 09:37:29 -0500305void SkGpuDevice::drawPoints(SkCanvas::PointMode mode,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000306 size_t count, const SkPoint pts[], const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800307 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500308 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPoints", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000309 SkScalar width = paint.getStrokeWidth();
310 if (width < 0) {
311 return;
312 }
313
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000314 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) {
bsalomon6663acf2016-05-10 09:14:17 -0700315 GrStyle style(paint, SkPaint::kStroke_Style);
egdaniele61c4112014-06-12 10:24:21 -0700316 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400317 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
318 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700319 return;
320 }
egdaniele61c4112014-06-12 10:24:21 -0700321 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700322 path.setIsVolatile(true);
egdaniele61c4112014-06-12 10:24:21 -0700323 path.moveTo(pts[0]);
324 path.lineTo(pts[1]);
Chris Dalton3b51df12017-11-27 14:33:06 -0700325 fRenderTargetContext->drawPath(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
326 this->ctm(), path, style);
egdaniele61c4112014-06-12 10:24:21 -0700327 return;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000328 }
329
bsalomon6ade6dd2016-09-12 12:07:17 -0700330 SkScalar scales[2];
Mike Reeda1361362017-03-07 09:37:29 -0500331 bool isHairline = (0 == width) || (1 == width && this->ctm().getMinMaxScales(scales) &&
bsalomon6ade6dd2016-09-12 12:07:17 -0700332 SkScalarNearlyEqual(scales[0], 1.f) &&
333 SkScalarNearlyEqual(scales[1], 1.f));
ethannicholas330bb952015-07-17 06:44:02 -0700334 // we only handle non-antialiased hairlines and paints without path effects or mask filters,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000335 // else we let the SkDraw call our drawPath()
Ethan Nicholas2d78bcd2017-06-08 10:11:53 -0400336 if (!isHairline || paint.getPathEffect() || paint.getMaskFilter() || paint.isAntiAlias()) {
Mike Reeda1361362017-03-07 09:37:29 -0500337 SkRasterClip rc(this->devClipBounds());
338 SkDraw draw;
339 draw.fDst = SkPixmap(SkImageInfo::MakeUnknown(this->width(), this->height()), nullptr, 0);
340 draw.fMatrix = &this->ctm();
341 draw.fRC = &rc;
Mike Reed99330ba2017-02-22 11:01:08 -0500342 draw.drawPoints(mode, count, pts, paint, this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000343 return;
344 }
345
Brian Salomon1459ebd2017-12-19 16:12:44 -0500346 GrPrimitiveType primitiveType = point_mode_to_primitive_type(mode);
bsalomon6ade6dd2016-09-12 12:07:17 -0700347
Mike Reeda1361362017-03-07 09:37:29 -0500348 const SkMatrix* viewMatrix = &this->ctm();
bsalomon6ade6dd2016-09-12 12:07:17 -0700349#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
350 // This offsetting in device space matches the expectations of the Android framework for non-AA
351 // points and lines.
352 SkMatrix tempMatrix;
Chris Dalton3809bab2017-06-13 10:55:06 -0600353 if (GrIsPrimTypeLines(primitiveType) || GrPrimitiveType::kPoints == primitiveType) {
bsalomon6ade6dd2016-09-12 12:07:17 -0700354 tempMatrix = *viewMatrix;
355 static const SkScalar kOffset = 0.063f; // Just greater than 1/16.
356 tempMatrix.postTranslate(kOffset, kOffset);
357 viewMatrix = &tempMatrix;
358 }
359#endif
360
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000361 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400362 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
363 *viewMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700364 return;
365 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000366
Brian Osmanae0c50c2017-05-25 16:56:34 -0400367 static constexpr SkVertices::VertexMode kIgnoredMode = SkVertices::kTriangles_VertexMode;
368 sk_sp<SkVertices> vertices = SkVertices::MakeCopy(kIgnoredMode, SkToS32(count), pts, nullptr,
369 nullptr);
370
371 fRenderTargetContext->drawVertices(this->clip(), std::move(grPaint), *viewMatrix,
Ruiqi Maoc05aa7d2018-07-03 21:18:07 +0000372 std::move(vertices), &primitiveType);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000373}
374
375///////////////////////////////////////////////////////////////////////////////
376
Mike Reeda1361362017-03-07 09:37:29 -0500377void SkGpuDevice::drawRect(const SkRect& rect, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800378 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500379 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawRect", fContext.get());
bsalomona7d85ba2016-07-06 11:54:59 -0700380 // A couple reasons we might need to call drawPath.
381 if (paint.getMaskFilter() || paint.getPathEffect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000382 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700383 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000384 path.addRect(rect);
Hal Canary144caf52016-11-07 17:57:18 -0500385 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400386 this->clip(), path, paint, this->ctm(), nullptr,
Mike Reeda1361362017-03-07 09:37:29 -0500387 this->devClipBounds(), true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000388 return;
389 }
390
391 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400392 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
393 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700394 return;
395 }
Mike Klein744fb732014-06-23 15:13:26 -0400396
bsalomon6663acf2016-05-10 09:14:17 -0700397 GrStyle style(paint);
Chris Dalton3b51df12017-11-27 14:33:06 -0700398 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
399 this->ctm(), rect, &style);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000400}
401
402///////////////////////////////////////////////////////////////////////////////
403
Mike Reeda1361362017-03-07 09:37:29 -0500404void SkGpuDevice::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800405 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500406 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawRRect", fContext.get());
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000407 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400408 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
409 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700410 return;
411 }
Mike Klein744fb732014-06-23 15:13:26 -0400412
Mike Reed80747ef2018-01-23 15:29:32 -0500413 SkMaskFilterBase* mf = as_MFB(paint.getMaskFilter());
Mike Reedbfadcf02018-01-20 22:24:21 +0000414 if (mf) {
415 if (mf->hasFragmentProcessor()) {
416 mf = nullptr; // already handled in SkPaintToGrPaint
417 }
Robert Phillipsa29a9562016-10-20 09:40:55 -0400418 }
419
bsalomon6663acf2016-05-10 09:14:17 -0700420 GrStyle style(paint);
Robert Phillipsa29a9562016-10-20 09:40:55 -0400421 if (mf) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000422 // try to hit the fast path for drawing filtered round rects
423
424 SkRRect devRRect;
Mike Reeda1361362017-03-07 09:37:29 -0500425 if (rrect.transform(this->ctm(), &devRRect)) {
Mike Reed242135a2018-02-22 13:41:39 -0500426 if (SkRRectPriv::AllCornersCircular(devRRect)) {
Brian Osmane191ce62017-09-14 15:43:50 -0400427 if (mf->canFilterMaskGPU(devRRect, this->devClipBounds(), this->ctm(), nullptr)) {
Robert Phillips26c90e02017-03-14 14:39:29 -0400428 if (mf->directFilterRRectMaskGPU(this->context(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400429 std::move(grPaint), this->clip(), this->ctm(),
Hal Canary144caf52016-11-07 17:57:18 -0500430 style.strokeRec(), rrect, devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000431 return;
432 }
433 }
434
435 }
436 }
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000437 }
438
Robert Phillipsa29a9562016-10-20 09:40:55 -0400439 if (mf || style.pathEffect()) {
robertphillipsff55b492015-11-24 07:56:59 -0800440 // The only mask filter the native rrect drawing code could've handle was taken
441 // care of above.
442 // A path effect will presumably transform this rrect into something else.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000443 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700444 path.setIsVolatile(true);
robertphillips9aff85a2016-08-05 07:51:29 -0700445 path.addRRect(rrect);
Hal Canary144caf52016-11-07 17:57:18 -0500446 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400447 this->clip(), path, paint, this->ctm(), nullptr,
Mike Reeda1361362017-03-07 09:37:29 -0500448 this->devClipBounds(), true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000449 return;
450 }
Mike Klein744fb732014-06-23 15:13:26 -0400451
bsalomon6663acf2016-05-10 09:14:17 -0700452 SkASSERT(!style.pathEffect());
robertphillips514450c2015-11-24 05:36:02 -0800453
Chris Dalton3b51df12017-11-27 14:33:06 -0700454 fRenderTargetContext->drawRRect(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
455 this->ctm(), rrect, style);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000456}
457
robertphillipsd7706102016-02-25 09:28:08 -0800458
Mike Reeda1361362017-03-07 09:37:29 -0500459void SkGpuDevice::drawDRRect(const SkRRect& outer,
joshualitt5531d512014-12-17 15:50:11 -0800460 const SkRRect& inner, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800461 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500462 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawDRRect", fContext.get());
robertphillipsd7706102016-02-25 09:28:08 -0800463 if (outer.isEmpty()) {
464 return;
465 }
466
467 if (inner.isEmpty()) {
Mike Reeda1361362017-03-07 09:37:29 -0500468 return this->drawRRect(outer, paint);
robertphillipsd7706102016-02-25 09:28:08 -0800469 }
470
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000471 SkStrokeRec stroke(paint);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000472
robertphillips0e7029e2015-11-30 05:45:06 -0800473 if (stroke.isFillStyle() && !paint.getMaskFilter() && !paint.getPathEffect()) {
robertphillips00095892016-02-29 13:50:40 -0800474 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400475 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
476 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700477 return;
478 }
robertphillips00095892016-02-29 13:50:40 -0800479
Brian Salomon0166cfd2017-03-13 17:58:25 -0400480 fRenderTargetContext->drawDRRect(this->clip(), std::move(grPaint),
Chris Dalton3b51df12017-11-27 14:33:06 -0700481 GrAA(paint.isAntiAlias()), this->ctm(), outer, inner);
robertphillips00095892016-02-29 13:50:40 -0800482 return;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000483 }
484
485 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700486 path.setIsVolatile(true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000487 path.addRRect(outer);
488 path.addRRect(inner);
489 path.setFillType(SkPath::kEvenOdd_FillType);
490
Brian Salomon0166cfd2017-03-13 17:58:25 -0400491 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(), this->clip(),
492 path, paint, this->ctm(), nullptr, this->devClipBounds(),
493 true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000494}
495
496
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000497/////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000498
Mike Reeda1361362017-03-07 09:37:29 -0500499void SkGpuDevice::drawRegion(const SkRegion& region, const SkPaint& paint) {
msarettcc319b92016-08-25 18:07:18 -0700500 if (paint.getMaskFilter()) {
501 SkPath path;
502 region.getBoundaryPath(&path);
Mike Reeda1361362017-03-07 09:37:29 -0500503 return this->drawPath(path, paint, nullptr, false);
msarettcc319b92016-08-25 18:07:18 -0700504 }
505
506 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400507 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
508 this->ctm(), &grPaint)) {
msarettcc319b92016-08-25 18:07:18 -0700509 return;
510 }
511
Chris Dalton3b51df12017-11-27 14:33:06 -0700512 fRenderTargetContext->drawRegion(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
513 this->ctm(), region, GrStyle(paint));
msarettcc319b92016-08-25 18:07:18 -0700514}
515
Mike Reeda1361362017-03-07 09:37:29 -0500516void SkGpuDevice::drawOval(const SkRect& oval, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800517 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500518 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawOval", fContext.get());
herb11a7f7f2015-11-24 12:41:00 -0800519
robertphillips514450c2015-11-24 05:36:02 -0800520 if (paint.getMaskFilter()) {
521 // The RRect path can handle special case blurring
522 SkRRect rr = SkRRect::MakeOval(oval);
Mike Reeda1361362017-03-07 09:37:29 -0500523 return this->drawRRect(rr, paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000524 }
525
526 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400527 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
528 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700529 return;
530 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000531
Chris Dalton3b51df12017-11-27 14:33:06 -0700532 fRenderTargetContext->drawOval(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
533 this->ctm(), oval, GrStyle(paint));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000534}
535
Mike Reeda1361362017-03-07 09:37:29 -0500536void SkGpuDevice::drawArc(const SkRect& oval, SkScalar startAngle,
bsalomon4f3a0ca2016-08-22 13:14:26 -0700537 SkScalar sweepAngle, bool useCenter, const SkPaint& paint) {
538 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500539 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawArc", fContext.get());
bsalomon4f3a0ca2016-08-22 13:14:26 -0700540 if (paint.getMaskFilter()) {
Mike Reeda1361362017-03-07 09:37:29 -0500541 this->INHERITED::drawArc(oval, startAngle, sweepAngle, useCenter, paint);
bsalomon4f3a0ca2016-08-22 13:14:26 -0700542 return;
543 }
544 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400545 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
546 this->ctm(), &grPaint)) {
bsalomon4f3a0ca2016-08-22 13:14:26 -0700547 return;
548 }
549
Chris Dalton3b51df12017-11-27 14:33:06 -0700550 fRenderTargetContext->drawArc(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
Mike Reeda1361362017-03-07 09:37:29 -0500551 this->ctm(), oval, startAngle, sweepAngle, useCenter,
Brian Salomon82f44312017-01-11 13:42:54 -0500552 GrStyle(paint));
bsalomon4f3a0ca2016-08-22 13:14:26 -0700553}
554
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000555#include "SkMaskFilter.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000556
557///////////////////////////////////////////////////////////////////////////////
robertphillips0851d2d2016-06-02 05:21:34 -0700558void SkGpuDevice::drawStrokedLine(const SkPoint points[2],
robertphillips0851d2d2016-06-02 05:21:34 -0700559 const SkPaint& origPaint) {
560 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500561 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawStrokedLine", fContext.get());
Brian Osman11052242016-10-27 14:47:55 -0400562 // Adding support for round capping would require a
563 // GrRenderTargetContext::fillRRectWithLocalMatrix entry point
robertphillips0851d2d2016-06-02 05:21:34 -0700564 SkASSERT(SkPaint::kRound_Cap != origPaint.getStrokeCap());
565 SkASSERT(SkPaint::kStroke_Style == origPaint.getStyle());
566 SkASSERT(!origPaint.getPathEffect());
567 SkASSERT(!origPaint.getMaskFilter());
568
569 const SkScalar halfWidth = 0.5f * origPaint.getStrokeWidth();
570 SkASSERT(halfWidth > 0);
571
572 SkVector v = points[1] - points[0];
573
574 SkScalar length = SkPoint::Normalize(&v);
575 if (!length) {
576 v.fX = 1.0f;
577 v.fY = 0.0f;
578 }
579
580 SkPaint newPaint(origPaint);
581 newPaint.setStyle(SkPaint::kFill_Style);
582
583 SkScalar xtraLength = 0.0f;
584 if (SkPaint::kButt_Cap != origPaint.getStrokeCap()) {
585 xtraLength = halfWidth;
586 }
587
588 SkPoint mid = points[0] + points[1];
589 mid.scale(0.5f);
590
591 SkRect rect = SkRect::MakeLTRB(mid.fX-halfWidth, mid.fY - 0.5f*length - xtraLength,
592 mid.fX+halfWidth, mid.fY + 0.5f*length + xtraLength);
593 SkMatrix m;
594 m.setSinCos(v.fX, -v.fY, mid.fX, mid.fY);
595
596 SkMatrix local = m;
597
Mike Reeda1361362017-03-07 09:37:29 -0500598 m.postConcat(this->ctm());
robertphillips0851d2d2016-06-02 05:21:34 -0700599
600 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400601 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), newPaint, m,
602 &grPaint)) {
robertphillips0851d2d2016-06-02 05:21:34 -0700603 return;
604 }
605
Brian Salomon82f44312017-01-11 13:42:54 -0500606 fRenderTargetContext->fillRectWithLocalMatrix(
Chris Dalton3b51df12017-11-27 14:33:06 -0700607 this->clip(), std::move(grPaint), GrAA(newPaint.isAntiAlias()), m, rect, local);
robertphillips0851d2d2016-06-02 05:21:34 -0700608}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000609
Mike Reeda1361362017-03-07 09:37:29 -0500610void SkGpuDevice::drawPath(const SkPath& origSrcPath,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000611 const SkPaint& paint, const SkMatrix* prePathMatrix,
612 bool pathIsMutable) {
joshualittce894002016-01-11 13:29:31 -0800613 ASSERT_SINGLE_OWNER
robertphillipsff55b492015-11-24 07:56:59 -0800614 if (!origSrcPath.isInverseFillType() && !paint.getPathEffect() && !prePathMatrix) {
robertphillips0851d2d2016-06-02 05:21:34 -0700615 SkPoint points[2];
616 if (SkPaint::kStroke_Style == paint.getStyle() && paint.getStrokeWidth() > 0 &&
617 !paint.getMaskFilter() && SkPaint::kRound_Cap != paint.getStrokeCap() &&
Mike Reeda1361362017-03-07 09:37:29 -0500618 this->ctm().preservesRightAngles() && origSrcPath.isLine(points)) {
robertphillips0851d2d2016-06-02 05:21:34 -0700619 // Path-based stroking looks better for thin rects
Mike Reeda1361362017-03-07 09:37:29 -0500620 SkScalar strokeWidth = this->ctm().getMaxScale() * paint.getStrokeWidth();
robertphillipsf2204c92016-06-02 10:57:59 -0700621 if (strokeWidth >= 1.0f) {
Brian Salomon09d994e2016-12-21 11:14:46 -0500622 // Round capping support is currently disabled b.c. it would require a RRect
623 // GrDrawOp that takes a localMatrix.
Mike Reeda1361362017-03-07 09:37:29 -0500624 this->drawStrokedLine(points, paint);
robertphillips0851d2d2016-06-02 05:21:34 -0700625 return;
626 }
627 }
robertphillipsff55b492015-11-24 07:56:59 -0800628 }
629
Hal Canary144caf52016-11-07 17:57:18 -0500630 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPath", fContext.get());
Brian Salomona3cf3652018-01-03 15:11:00 -0500631 if (!prePathMatrix && !paint.getMaskFilter()) {
632 GrPaint grPaint;
633 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
634 this->ctm(), &grPaint)) {
635 return;
636 }
637 fRenderTargetContext->drawPath(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
638 this->ctm(), origSrcPath, GrStyle(paint));
639 return;
640 }
Brian Salomon0166cfd2017-03-13 17:58:25 -0400641 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(), this->clip(),
642 origSrcPath, paint, this->ctm(), prePathMatrix,
Mike Reeda1361362017-03-07 09:37:29 -0500643 this->devClipBounds(), pathIsMutable);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000644}
645
646static const int kBmpSmallTileSize = 1 << 10;
647
648static inline int get_tile_count(const SkIRect& srcRect, int tileSize) {
649 int tilesX = (srcRect.fRight / tileSize) - (srcRect.fLeft / tileSize) + 1;
650 int tilesY = (srcRect.fBottom / tileSize) - (srcRect.fTop / tileSize) + 1;
651 return tilesX * tilesY;
652}
653
reed85d91782015-09-10 14:33:38 -0700654static int determine_tile_size(const SkIRect& src, int maxTileSize) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000655 if (maxTileSize <= kBmpSmallTileSize) {
656 return maxTileSize;
657 }
658
659 size_t maxTileTotalTileSize = get_tile_count(src, maxTileSize);
660 size_t smallTotalTileSize = get_tile_count(src, kBmpSmallTileSize);
661
662 maxTileTotalTileSize *= maxTileSize * maxTileSize;
663 smallTotalTileSize *= kBmpSmallTileSize * kBmpSmallTileSize;
664
665 if (maxTileTotalTileSize > 2 * smallTotalTileSize) {
666 return kBmpSmallTileSize;
667 } else {
668 return maxTileSize;
669 }
670}
671
672// Given a bitmap, an optional src rect, and a context with a clip and matrix determine what
673// pixels from the bitmap are necessary.
robertphillipse5768742016-05-13 11:20:46 -0700674static void determine_clipped_src_rect(int width, int height,
joshualitt570d2f82015-02-25 13:19:48 -0800675 const GrClip& clip,
joshualitt5531d512014-12-17 15:50:11 -0800676 const SkMatrix& viewMatrix,
bsalomone553b642016-08-17 09:02:09 -0700677 const SkMatrix& srcToDstRect,
reed85d91782015-09-10 14:33:38 -0700678 const SkISize& imageSize,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000679 const SkRect* srcRectPtr,
680 SkIRect* clippedSrcIRect) {
robertphillipse5768742016-05-13 11:20:46 -0700681 clip.getConservativeBounds(width, height, clippedSrcIRect, nullptr);
bsalomone553b642016-08-17 09:02:09 -0700682 SkMatrix inv = SkMatrix::Concat(viewMatrix, srcToDstRect);
683 if (!inv.invert(&inv)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000684 clippedSrcIRect->setEmpty();
685 return;
686 }
687 SkRect clippedSrcRect = SkRect::Make(*clippedSrcIRect);
688 inv.mapRect(&clippedSrcRect);
bsalomon49f085d2014-09-05 13:34:00 -0700689 if (srcRectPtr) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000690 if (!clippedSrcRect.intersect(*srcRectPtr)) {
691 clippedSrcIRect->setEmpty();
692 return;
693 }
694 }
695 clippedSrcRect.roundOut(clippedSrcIRect);
reed85d91782015-09-10 14:33:38 -0700696 SkIRect bmpBounds = SkIRect::MakeSize(imageSize);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000697 if (!clippedSrcIRect->intersect(bmpBounds)) {
698 clippedSrcIRect->setEmpty();
699 }
700}
701
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400702bool SkGpuDevice::shouldTileImageID(uint32_t imageID,
703 const SkIRect& imageRect,
reed85d91782015-09-10 14:33:38 -0700704 const SkMatrix& viewMatrix,
bsalomone553b642016-08-17 09:02:09 -0700705 const SkMatrix& srcToDstRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400706 const GrSamplerState& params,
reed85d91782015-09-10 14:33:38 -0700707 const SkRect* srcRectPtr,
708 int maxTileSize,
709 int* tileSize,
710 SkIRect* clippedSubset) const {
joshualittce894002016-01-11 13:29:31 -0800711 ASSERT_SINGLE_OWNER
reed85d91782015-09-10 14:33:38 -0700712 // if it's larger than the max tile size, then we have no choice but tiling.
713 if (imageRect.width() > maxTileSize || imageRect.height() > maxTileSize) {
Brian Osman11052242016-10-27 14:47:55 -0400714 determine_clipped_src_rect(fRenderTargetContext->width(), fRenderTargetContext->height(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400715 this->clip(), viewMatrix, srcToDstRect, imageRect.size(),
716 srcRectPtr, clippedSubset);
reed85d91782015-09-10 14:33:38 -0700717 *tileSize = determine_tile_size(*clippedSubset, maxTileSize);
718 return true;
719 }
720
bsalomon1a1d0b82015-10-16 07:49:42 -0700721 // If the image would only produce 4 tiles of the smaller size, don't bother tiling it.
reed85d91782015-09-10 14:33:38 -0700722 const size_t area = imageRect.width() * imageRect.height();
723 if (area < 4 * kBmpSmallTileSize * kBmpSmallTileSize) {
724 return false;
725 }
726
reed85d91782015-09-10 14:33:38 -0700727 // At this point we know we could do the draw by uploading the entire bitmap
728 // as a texture. However, if the texture would be large compared to the
729 // cache size and we don't require most of it for this draw then tile to
730 // reduce the amount of upload and cache spill.
731
732 // assumption here is that sw bitmap size is a good proxy for its size as
733 // a texture
734 size_t bmpSize = area * sizeof(SkPMColor); // assume 32bit pixels
735 size_t cacheSize;
736 fContext->getResourceCacheLimits(nullptr, &cacheSize);
737 if (bmpSize < cacheSize / 2) {
738 return false;
739 }
740
bsalomon1a1d0b82015-10-16 07:49:42 -0700741 // Figure out how much of the src we will need based on the src rect and clipping. Reject if
742 // tiling memory savings would be < 50%.
Brian Salomon0166cfd2017-03-13 17:58:25 -0400743 determine_clipped_src_rect(fRenderTargetContext->width(), fRenderTargetContext->height(),
744 this->clip(), viewMatrix, srcToDstRect, imageRect.size(), srcRectPtr,
Brian Osman11052242016-10-27 14:47:55 -0400745 clippedSubset);
reed85d91782015-09-10 14:33:38 -0700746 *tileSize = kBmpSmallTileSize; // already know whole bitmap fits in one max sized tile.
747 size_t usedTileBytes = get_tile_count(*clippedSubset, kBmpSmallTileSize) *
Brian Osmand05cdc32017-02-06 13:24:47 -0500748 kBmpSmallTileSize * kBmpSmallTileSize *
749 sizeof(SkPMColor); // assume 32bit pixels;
reed85d91782015-09-10 14:33:38 -0700750
Brian Osmand05cdc32017-02-06 13:24:47 -0500751 return usedTileBytes * 2 < bmpSize;
reed85d91782015-09-10 14:33:38 -0700752}
753
reed85d91782015-09-10 14:33:38 -0700754bool SkGpuDevice::shouldTileImage(const SkImage* image, const SkRect* srcRectPtr,
755 SkCanvas::SrcRectConstraint constraint, SkFilterQuality quality,
bsalomone553b642016-08-17 09:02:09 -0700756 const SkMatrix& viewMatrix,
757 const SkMatrix& srcToDstRect) const {
joshualittce894002016-01-11 13:29:31 -0800758 ASSERT_SINGLE_OWNER
Brian Salomon34169692017-08-28 15:32:01 -0400759 // If image is explicitly texture backed then we shouldn't get here.
760 SkASSERT(!image->isTextureBacked());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000761
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400762 GrSamplerState samplerState;
reed85d91782015-09-10 14:33:38 -0700763 bool doBicubic;
Brian Osmandb78cba2018-02-15 10:09:48 -0500764 GrSamplerState::Filter textureFilterMode = GrSkFilterQualityToGrFilterMode(
765 quality, viewMatrix, srcToDstRect, fContext->contextPriv().sharpenMipmappedTextures(),
766 &doBicubic);
reed85d91782015-09-10 14:33:38 -0700767
768 int tileFilterPad;
769 if (doBicubic) {
770 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400771 } else if (GrSamplerState::Filter::kNearest == textureFilterMode) {
reed85d91782015-09-10 14:33:38 -0700772 tileFilterPad = 0;
773 } else {
774 tileFilterPad = 1;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000775 }
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400776 samplerState.setFilterMode(textureFilterMode);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000777
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400778 int maxTileSize = this->caps()->maxTileSize() - 2 * tileFilterPad;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000779
reed85d91782015-09-10 14:33:38 -0700780 // these are output, which we safely ignore, as we just want to know the predicate
781 int outTileSize;
782 SkIRect outClippedSrcRect;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000783
bsalomone553b642016-08-17 09:02:09 -0700784 return this->shouldTileImageID(image->unique(), image->bounds(), viewMatrix, srcToDstRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400785 samplerState, srcRectPtr, maxTileSize, &outTileSize,
bsalomone553b642016-08-17 09:02:09 -0700786 &outClippedSrcRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000787}
788
Mike Reeda1361362017-03-07 09:37:29 -0500789void SkGpuDevice::drawBitmap(const SkBitmap& bitmap,
Hal Canaryb9642382017-06-27 09:58:56 -0400790 SkScalar x,
791 SkScalar y,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000792 const SkPaint& paint) {
Hal Canaryb9642382017-06-27 09:58:56 -0400793 SkMatrix m = SkMatrix::MakeTrans(x, y);
joshualittce894002016-01-11 13:29:31 -0800794 ASSERT_SINGLE_OWNER
bsalomonb1b01992015-11-18 10:56:08 -0800795 SkMatrix viewMatrix;
Mike Reeda1361362017-03-07 09:37:29 -0500796 viewMatrix.setConcat(this->ctm(), m);
reedc7ec7c92016-07-25 08:29:10 -0700797
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400798 int maxTileSize = this->caps()->maxTileSize();
bsalomonb1b01992015-11-18 10:56:08 -0800799
800 // The tile code path doesn't currently support AA, so if the paint asked for aa and we could
801 // draw untiled, then we bypass checking for tiling purely for optimization reasons.
Brian Salomon7c8460e2017-05-12 11:36:10 -0400802 bool drawAA = GrFSAAType::kUnifiedMSAA != fRenderTargetContext->fsaaType() &&
803 paint.isAntiAlias() && bitmap.width() <= maxTileSize &&
bsalomonb1b01992015-11-18 10:56:08 -0800804 bitmap.height() <= maxTileSize;
805
806 bool skipTileCheck = drawAA || paint.getMaskFilter();
807
808 if (!skipTileCheck) {
809 SkRect srcRect = SkRect::MakeIWH(bitmap.width(), bitmap.height());
810 int tileSize;
811 SkIRect clippedSrcRect;
812
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400813 GrSamplerState samplerState;
bsalomonb1b01992015-11-18 10:56:08 -0800814 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400815 GrSamplerState::Filter textureFilterMode = GrSkFilterQualityToGrFilterMode(
Brian Osmandb78cba2018-02-15 10:09:48 -0500816 paint.getFilterQuality(), viewMatrix, SkMatrix::I(),
817 fContext->contextPriv().sharpenMipmappedTextures(), &doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -0800818
819 int tileFilterPad;
820
821 if (doBicubic) {
822 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400823 } else if (GrSamplerState::Filter::kNearest == textureFilterMode) {
bsalomonb1b01992015-11-18 10:56:08 -0800824 tileFilterPad = 0;
825 } else {
826 tileFilterPad = 1;
827 }
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400828 samplerState.setFilterMode(textureFilterMode);
bsalomonb1b01992015-11-18 10:56:08 -0800829
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400830 int maxTileSizeForFilter = this->caps()->maxTileSize() - 2 * tileFilterPad;
bsalomone553b642016-08-17 09:02:09 -0700831 if (this->shouldTileImageID(bitmap.getGenerationID(), bitmap.getSubset(), viewMatrix,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400832 SkMatrix::I(), samplerState, &srcRect, maxTileSizeForFilter,
bsalomone553b642016-08-17 09:02:09 -0700833 &tileSize, &clippedSrcRect)) {
834 this->drawTiledBitmap(bitmap, viewMatrix, SkMatrix::I(), srcRect, clippedSrcRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400835 samplerState, paint, SkCanvas::kStrict_SrcRectConstraint,
836 tileSize, doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -0800837 return;
838 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000839 }
Hal Canary144caf52016-11-07 17:57:18 -0500840 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Brian Salomon0cdfc322018-05-14 16:17:43 -0400841 this->drawTextureMaker(&maker, bitmap.width(), bitmap.height(), nullptr, nullptr,
842 SkCanvas::kStrict_SrcRectConstraint, viewMatrix, paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000843}
844
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000845// This method outsets 'iRect' by 'outset' all around and then clamps its extents to
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000846// 'clamp'. 'offset' is adjusted to remain positioned over the top-left corner
847// of 'iRect' for all possible outsets/clamps.
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000848static inline void clamped_outset_with_offset(SkIRect* iRect,
849 int outset,
850 SkPoint* offset,
851 const SkIRect& clamp) {
852 iRect->outset(outset, outset);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000853
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000854 int leftClampDelta = clamp.fLeft - iRect->fLeft;
855 if (leftClampDelta > 0) {
856 offset->fX -= outset - leftClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000857 iRect->fLeft = clamp.fLeft;
858 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000859 offset->fX -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000860 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000861
862 int topClampDelta = clamp.fTop - iRect->fTop;
863 if (topClampDelta > 0) {
864 offset->fY -= outset - topClampDelta;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000865 iRect->fTop = clamp.fTop;
866 } else {
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000867 offset->fY -= outset;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000868 }
869
870 if (iRect->fRight > clamp.fRight) {
871 iRect->fRight = clamp.fRight;
872 }
873 if (iRect->fBottom > clamp.fBottom) {
874 iRect->fBottom = clamp.fBottom;
875 }
876}
877
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000878// Break 'bitmap' into several tiles to draw it since it has already
879// been determined to be too large to fit in VRAM
880void SkGpuDevice::drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800881 const SkMatrix& viewMatrix,
bsalomone553b642016-08-17 09:02:09 -0700882 const SkMatrix& dstMatrix,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000883 const SkRect& srcRect,
884 const SkIRect& clippedSrcIRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400885 const GrSamplerState& params,
bsalomonc55271f2015-11-09 11:55:57 -0800886 const SkPaint& origPaint,
reeda5517e22015-07-14 10:54:12 -0700887 SkCanvas::SrcRectConstraint constraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000888 int tileSize,
889 bool bicubic) {
joshualittce894002016-01-11 13:29:31 -0800890 ASSERT_SINGLE_OWNER
ericrk369e9372016-02-05 15:32:36 -0800891
ericrk983294f2016-04-18 09:14:00 -0700892 // This is the funnel for all paths that draw tiled bitmaps/images. Log histogram entries.
ericrk369e9372016-02-05 15:32:36 -0800893 SK_HISTOGRAM_BOOLEAN("DrawTiled", true);
ericrk983294f2016-04-18 09:14:00 -0700894 LogDrawScaleFactor(viewMatrix, origPaint.getFilterQuality());
ericrk369e9372016-02-05 15:32:36 -0800895
bsalomonc55271f2015-11-09 11:55:57 -0800896 const SkPaint* paint = &origPaint;
897 SkPaint tempPaint;
Brian Salomon7c8460e2017-05-12 11:36:10 -0400898 if (origPaint.isAntiAlias() && GrFSAAType::kUnifiedMSAA != fRenderTargetContext->fsaaType()) {
bsalomonc55271f2015-11-09 11:55:57 -0800899 // Drop antialiasing to avoid seams at tile boundaries.
900 tempPaint = origPaint;
901 tempPaint.setAntiAlias(false);
902 paint = &tempPaint;
903 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000904 SkRect clippedSrcRect = SkRect::Make(clippedSrcIRect);
905
906 int nx = bitmap.width() / tileSize;
907 int ny = bitmap.height() / tileSize;
908 for (int x = 0; x <= nx; x++) {
909 for (int y = 0; y <= ny; y++) {
910 SkRect tileR;
911 tileR.set(SkIntToScalar(x * tileSize),
912 SkIntToScalar(y * tileSize),
913 SkIntToScalar((x + 1) * tileSize),
914 SkIntToScalar((y + 1) * tileSize));
915
916 if (!SkRect::Intersects(tileR, clippedSrcRect)) {
917 continue;
918 }
919
920 if (!tileR.intersect(srcRect)) {
921 continue;
922 }
923
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000924 SkIRect iTileR;
925 tileR.roundOut(&iTileR);
bsalomone553b642016-08-17 09:02:09 -0700926 SkVector offset = SkPoint::Make(SkIntToScalar(iTileR.fLeft),
927 SkIntToScalar(iTileR.fTop));
Brian Osmana950a862017-02-06 16:48:57 -0500928 SkRect rectToDraw = tileR;
bsalomone553b642016-08-17 09:02:09 -0700929 dstMatrix.mapRect(&rectToDraw);
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400930 if (GrSamplerState::Filter::kNearest != params.filter() || bicubic) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000931 SkIRect iClampRect;
932
reeda5517e22015-07-14 10:54:12 -0700933 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000934 // In bleed mode we want to always expand the tile on all edges
935 // but stay within the bitmap bounds
936 iClampRect = SkIRect::MakeWH(bitmap.width(), bitmap.height());
937 } else {
938 // In texture-domain/clamp mode we only want to expand the
939 // tile on edges interior to "srcRect" (i.e., we want to
940 // not bleed across the original clamped edges)
941 srcRect.roundOut(&iClampRect);
942 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000943 int outset = bicubic ? GrBicubicEffect::kFilterTexelPad : 1;
944 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000945 }
946
bsalomone553b642016-08-17 09:02:09 -0700947 SkBitmap tmpB;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000948 if (bitmap.extractSubset(&tmpB, iTileR)) {
949 // now offset it to make it "local" to our tmp bitmap
950 tileR.offset(-offset.fX, -offset.fY);
bsalomonb1b01992015-11-18 10:56:08 -0800951 // de-optimized this determination
952 bool needsTextureDomain = true;
bsalomone553b642016-08-17 09:02:09 -0700953 this->drawBitmapTile(tmpB,
954 viewMatrix,
955 rectToDraw,
956 tileR,
Robert Phillipse14d3052017-02-15 13:18:21 -0500957 params,
bsalomone553b642016-08-17 09:02:09 -0700958 *paint,
959 constraint,
960 bicubic,
961 needsTextureDomain);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000962 }
963 }
964 }
965}
966
bsalomone553b642016-08-17 09:02:09 -0700967void SkGpuDevice::drawBitmapTile(const SkBitmap& bitmap,
968 const SkMatrix& viewMatrix,
969 const SkRect& dstRect,
970 const SkRect& srcRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400971 const GrSamplerState& samplerState,
bsalomone553b642016-08-17 09:02:09 -0700972 const SkPaint& paint,
973 SkCanvas::SrcRectConstraint constraint,
974 bool bicubic,
975 bool needsTextureDomain) {
bsalomon9c586542015-11-02 12:33:21 -0800976 // We should have already handled bitmaps larger than the max texture size.
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400977 SkASSERT(bitmap.width() <= this->caps()->maxTextureSize() &&
978 bitmap.height() <= this->caps()->maxTextureSize());
reedc7ec7c92016-07-25 08:29:10 -0700979 // We should be respecting the max tile size by the time we get here.
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400980 SkASSERT(bitmap.width() <= this->caps()->maxTileSize() &&
981 bitmap.height() <= this->caps()->maxTileSize());
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400982 SkASSERT(!samplerState.isRepeated());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000983
Brian Salomon2a943df2018-05-04 13:43:19 -0400984 SkScalar scales[2] = {1.f, 1.f};
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400985 sk_sp<GrTextureProxy> proxy =
Brian Salomon2a943df2018-05-04 13:43:19 -0400986 GrRefCachedBitmapTextureProxy(fContext.get(), bitmap, samplerState, scales);
Robert Phillips78075802017-03-23 11:11:59 -0400987 if (!proxy) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000988 return;
989 }
bsalomone553b642016-08-17 09:02:09 -0700990
bsalomone553b642016-08-17 09:02:09 -0700991 // Compute a matrix that maps the rect we will draw to the src rect.
Brian Salomon2a943df2018-05-04 13:43:19 -0400992 SkMatrix texMatrix = SkMatrix::MakeRectToRect(dstRect, srcRect, SkMatrix::kFill_ScaleToFit);
993 texMatrix.postScale(scales[0], scales[1]);
joshualitt5f10b5c2015-07-09 10:24:35 -0700994
995 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
996 // the rest from the SkPaint.
Brian Salomonaff329b2017-08-11 09:40:37 -0400997 std::unique_ptr<GrFragmentProcessor> fp;
joshualitt5f10b5c2015-07-09 10:24:35 -0700998
reeda5517e22015-07-14 10:54:12 -0700999 if (needsTextureDomain && (SkCanvas::kStrict_SrcRectConstraint == constraint)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001000 // Use a constrained texture domain to avoid color bleeding
bsalomone553b642016-08-17 09:02:09 -07001001 SkRect domain;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001002 if (srcRect.width() > SK_Scalar1) {
Robert Phillipse98234f2017-01-09 14:23:59 -05001003 domain.fLeft = srcRect.fLeft + 0.5f;
1004 domain.fRight = srcRect.fRight - 0.5f;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001005 } else {
Robert Phillipse98234f2017-01-09 14:23:59 -05001006 domain.fLeft = domain.fRight = srcRect.centerX();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001007 }
1008 if (srcRect.height() > SK_Scalar1) {
Robert Phillipse98234f2017-01-09 14:23:59 -05001009 domain.fTop = srcRect.fTop + 0.5f;
1010 domain.fBottom = srcRect.fBottom - 0.5f;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001011 } else {
Robert Phillipse98234f2017-01-09 14:23:59 -05001012 domain.fTop = domain.fBottom = srcRect.centerY();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001013 }
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001014 if (bicubic) {
Brian Osman5e341672017-10-18 10:23:18 -04001015 fp = GrBicubicEffect::Make(std::move(proxy), texMatrix, domain);
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001016 } else {
Brian Osman2240be92017-10-18 13:15:13 -04001017 fp = GrTextureDomainEffect::Make(std::move(proxy), texMatrix, domain,
Brian Osman5e341672017-10-18 10:23:18 -04001018 GrTextureDomain::kClamp_Mode, samplerState.filter());
commit-bot@chromium.org7d7f3142013-12-16 15:18:11 +00001019 }
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +00001020 } else if (bicubic) {
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001021 SkASSERT(GrSamplerState::Filter::kNearest == samplerState.filter());
1022 GrSamplerState::WrapMode wrapMode[2] = {samplerState.wrapModeX(), samplerState.wrapModeY()};
Brian Osman5e341672017-10-18 10:23:18 -04001023 fp = GrBicubicEffect::Make(std::move(proxy), texMatrix, wrapMode);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001024 } else {
Brian Osman2240be92017-10-18 13:15:13 -04001025 fp = GrSimpleTextureEffect::Make(std::move(proxy), texMatrix, samplerState);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001026 }
1027
Brian Osman653f34d2018-06-14 11:44:02 -04001028 fp = GrColorSpaceXformEffect::Make(std::move(fp), bitmap.colorSpace(),
Brian Salomonf3569f02017-10-24 12:52:33 -04001029 fRenderTargetContext->colorSpaceInfo().colorSpace());
joshualitt33a5fce2015-11-18 13:28:51 -08001030 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -04001031 if (!SkPaintToGrPaintWithTexture(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
1032 viewMatrix, std::move(fp),
1033 kAlpha_8_SkColorType == bitmap.colorType(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001034 return;
1035 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001036
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001037 // Coverage-based AA would cause seams between tiles.
Chris Dalton3b51df12017-11-27 14:33:06 -07001038 GrAA aa = GrAA(paint.isAntiAlias() &&
1039 GrFSAAType::kNone != fRenderTargetContext->fsaaType());
Brian Salomon0166cfd2017-03-13 17:58:25 -04001040 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), aa, viewMatrix, dstRect);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001041}
1042
Mike Reeda1361362017-03-07 09:37:29 -05001043void SkGpuDevice::drawSprite(const SkBitmap& bitmap,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001044 int left, int top, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001045 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001046 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawSprite", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001047
Khushalc421ca12018-06-26 14:38:34 -07001048 if (fContext->abandoned()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001049 return;
1050 }
1051
Robert Phillipse14d3052017-02-15 13:18:21 -05001052 sk_sp<SkSpecialImage> srcImg = this->makeSpecial(bitmap);
1053 if (!srcImg) {
1054 return;
joshualitt5f5a8d72015-02-25 14:09:45 -08001055 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001056
Florin Malita53f77bd2017-04-28 13:48:37 -04001057 this->drawSpecial(srcImg.get(), left, top, paint, nullptr, SkMatrix::I());
robertphillips970587b2016-07-14 14:12:55 -07001058}
1059
1060
Florin Malita53f77bd2017-04-28 13:48:37 -04001061void SkGpuDevice::drawSpecial(SkSpecialImage* special1, int left, int top, const SkPaint& paint,
Robert Phillips213ce182018-04-25 09:13:28 -04001062 SkImage* clipImage, const SkMatrix& clipMatrix) {
robertphillips1b5f9682016-07-15 08:01:12 -07001063 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001064 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawSpecial", fContext.get());
robertphillips970587b2016-07-14 14:12:55 -07001065
Florin Malita53f77bd2017-04-28 13:48:37 -04001066 // TODO: clipImage support.
1067
robertphillips970587b2016-07-14 14:12:55 -07001068 SkIPoint offset = { 0, 0 };
1069
1070 sk_sp<SkSpecialImage> result;
1071 if (paint.getImageFilter()) {
Robert Phillips213ce182018-04-25 09:13:28 -04001072 result = this->filterTexture(special1, left, top, &offset, paint.getImageFilter());
robertphillips970587b2016-07-14 14:12:55 -07001073 if (!result) {
1074 return;
1075 }
1076 } else {
1077 result = sk_ref_sp(special1);
1078 }
1079
1080 SkASSERT(result->isTextureBacked());
Robert Phillips2c6d2bf2017-02-21 10:19:29 -05001081 sk_sp<GrTextureProxy> proxy = result->asTextureProxyRef(this->context());
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001082 if (!proxy) {
Robert Phillips833dcf42016-11-18 08:44:13 -05001083 return;
1084 }
robertphillips970587b2016-07-14 14:12:55 -07001085
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001086 const GrPixelConfig config = proxy->config();
1087
robertphillips970587b2016-07-14 14:12:55 -07001088 SkPaint tmpUnfiltered(paint);
Mike Reed2179b782018-02-07 11:59:57 -05001089 if (tmpUnfiltered.getMaskFilter()) {
1090 SkMatrix ctm = this->ctm();
1091 ctm.postTranslate(-SkIntToScalar(left + offset.fX), -SkIntToScalar(top + offset.fY));
Florin Malitac6c5ead2018-04-11 15:33:40 -04001092 tmpUnfiltered.setMaskFilter(tmpUnfiltered.getMaskFilter()->makeWithMatrix(ctm));
Mike Reed2179b782018-02-07 11:59:57 -05001093 }
1094
robertphillips970587b2016-07-14 14:12:55 -07001095 tmpUnfiltered.setImageFilter(nullptr);
1096
Brian Osman2240be92017-10-18 13:15:13 -04001097 auto fp = GrSimpleTextureEffect::Make(std::move(proxy), SkMatrix::I());
Brian Osman653f34d2018-06-14 11:44:02 -04001098 fp = GrColorSpaceXformEffect::Make(std::move(fp), result->getColorSpace(),
Brian Salomonf3569f02017-10-24 12:52:33 -04001099 fRenderTargetContext->colorSpaceInfo().colorSpace());
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001100 if (GrPixelConfigIsAlphaOnly(config)) {
Brian Salomon22af73f2017-01-26 11:25:12 -05001101 fp = GrFragmentProcessor::MakeInputPremulAndMulByOutput(std::move(fp));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001102 } else {
Mike Reed28eaed22018-02-01 11:24:53 -05001103 fp = GrFragmentProcessor::MulChildByInputAlpha(std::move(fp));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001104 }
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001105
1106 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -04001107 if (!SkPaintToGrPaintReplaceShader(this->context(), fRenderTargetContext->colorSpaceInfo(),
1108 tmpUnfiltered, std::move(fp), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001109 return;
1110 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001111
robertphillips970587b2016-07-14 14:12:55 -07001112 const SkIRect& subset = result->subset();
1113
Brian Salomon82f44312017-01-11 13:42:54 -05001114 fRenderTargetContext->fillRectToRect(
Brian Salomon0166cfd2017-03-13 17:58:25 -04001115 this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -05001116 std::move(grPaint),
Mike Reed2179b782018-02-07 11:59:57 -05001117 GrAA(tmpUnfiltered.isAntiAlias()),
Brian Salomon82f44312017-01-11 13:42:54 -05001118 SkMatrix::I(),
Brian Salomon0166cfd2017-03-13 17:58:25 -04001119 SkRect::Make(SkIRect::MakeXYWH(left + offset.fX, top + offset.fY, subset.width(),
1120 subset.height())),
Robert Phillips67c18d62017-01-20 12:44:06 -05001121 SkRect::Make(subset));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001122}
1123
Mike Reeda1361362017-03-07 09:37:29 -05001124void SkGpuDevice::drawBitmapRect(const SkBitmap& bitmap,
bsalomonb1b01992015-11-18 10:56:08 -08001125 const SkRect* src, const SkRect& origDst,
reed562fe472015-07-28 07:35:14 -07001126 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
joshualittce894002016-01-11 13:29:31 -08001127 ASSERT_SINGLE_OWNER
bsalomonb1b01992015-11-18 10:56:08 -08001128 // The src rect is inferred to be the bmp bounds if not provided. Otherwise, the src rect must
1129 // be clipped to the bmp bounds. To determine tiling parameters we need the filter mode which
1130 // in turn requires knowing the src-to-dst mapping. If the src was clipped to the bmp bounds
1131 // then we use the src-to-dst mapping to compute a new clipped dst rect.
1132 const SkRect* dst = &origDst;
1133 const SkRect bmpBounds = SkRect::MakeIWH(bitmap.width(), bitmap.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001134 // Compute matrix from the two rectangles
bsalomonb1b01992015-11-18 10:56:08 -08001135 if (!src) {
1136 src = &bmpBounds;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001137 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001138
bsalomonb1b01992015-11-18 10:56:08 -08001139 SkMatrix srcToDstMatrix;
1140 if (!srcToDstMatrix.setRectToRect(*src, *dst, SkMatrix::kFill_ScaleToFit)) {
1141 return;
1142 }
1143 SkRect tmpSrc, tmpDst;
1144 if (src != &bmpBounds) {
1145 if (!bmpBounds.contains(*src)) {
1146 tmpSrc = *src;
1147 if (!tmpSrc.intersect(bmpBounds)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001148 return; // nothing to draw
1149 }
bsalomonb1b01992015-11-18 10:56:08 -08001150 src = &tmpSrc;
1151 srcToDstMatrix.mapRect(&tmpDst, *src);
1152 dst = &tmpDst;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001153 }
1154 }
1155
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001156 int maxTileSize = this->caps()->maxTileSize();
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001157
bsalomonb1b01992015-11-18 10:56:08 -08001158 // The tile code path doesn't currently support AA, so if the paint asked for aa and we could
1159 // draw untiled, then we bypass checking for tiling purely for optimization reasons.
Brian Salomon7c8460e2017-05-12 11:36:10 -04001160 bool useCoverageAA = GrFSAAType::kUnifiedMSAA != fRenderTargetContext->fsaaType() &&
1161 paint.isAntiAlias() && bitmap.width() <= maxTileSize &&
1162 bitmap.height() <= maxTileSize;
bsalomonb1b01992015-11-18 10:56:08 -08001163
Brian Salomon7c8460e2017-05-12 11:36:10 -04001164 bool skipTileCheck = useCoverageAA || paint.getMaskFilter();
bsalomonb1b01992015-11-18 10:56:08 -08001165
1166 if (!skipTileCheck) {
1167 int tileSize;
1168 SkIRect clippedSrcRect;
1169
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001170 GrSamplerState sampleState;
bsalomonb1b01992015-11-18 10:56:08 -08001171 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001172 GrSamplerState::Filter textureFilterMode = GrSkFilterQualityToGrFilterMode(
Brian Osmandb78cba2018-02-15 10:09:48 -05001173 paint.getFilterQuality(), this->ctm(), srcToDstMatrix,
1174 fContext->contextPriv().sharpenMipmappedTextures(), &doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -08001175
1176 int tileFilterPad;
1177
1178 if (doBicubic) {
1179 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001180 } else if (GrSamplerState::Filter::kNearest == textureFilterMode) {
bsalomonb1b01992015-11-18 10:56:08 -08001181 tileFilterPad = 0;
1182 } else {
1183 tileFilterPad = 1;
1184 }
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001185 sampleState.setFilterMode(textureFilterMode);
bsalomonb1b01992015-11-18 10:56:08 -08001186
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001187 int maxTileSizeForFilter = this->caps()->maxTileSize() - 2 * tileFilterPad;
Mike Reeda1361362017-03-07 09:37:29 -05001188 if (this->shouldTileImageID(bitmap.getGenerationID(), bitmap.getSubset(), this->ctm(),
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001189 srcToDstMatrix, sampleState, src, maxTileSizeForFilter,
1190 &tileSize, &clippedSrcRect)) {
Mike Reeda1361362017-03-07 09:37:29 -05001191 this->drawTiledBitmap(bitmap, this->ctm(), srcToDstMatrix, *src, clippedSrcRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001192 sampleState, paint, constraint, tileSize, doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -08001193 return;
1194 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001195 }
Hal Canary144caf52016-11-07 17:57:18 -05001196 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Brian Salomon0cdfc322018-05-14 16:17:43 -04001197 this->drawTextureMaker(&maker, bitmap.width(), bitmap.height(), src, dst, constraint,
1198 this->ctm(), paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001199}
1200
robertphillips6451a0c2016-07-18 08:31:31 -07001201sk_sp<SkSpecialImage> SkGpuDevice::makeSpecial(const SkBitmap& bitmap) {
Robert Phillipse14d3052017-02-15 13:18:21 -05001202 // TODO: this makes a tight copy of 'bitmap' but it doesn't have to be (given SkSpecialImage's
1203 // semantics). Since this is cached we would have to bake the fit into the cache key though.
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001204 sk_sp<GrTextureProxy> proxy = GrMakeCachedBitmapProxy(fContext->contextPriv().proxyProvider(),
1205 bitmap);
Robert Phillipse14d3052017-02-15 13:18:21 -05001206 if (!proxy) {
robertphillips6451a0c2016-07-18 08:31:31 -07001207 return nullptr;
1208 }
1209
Robert Phillipse14d3052017-02-15 13:18:21 -05001210 const SkIRect rect = SkIRect::MakeWH(proxy->width(), proxy->height());
robertphillips6451a0c2016-07-18 08:31:31 -07001211
Robert Phillipse14d3052017-02-15 13:18:21 -05001212 // GrMakeCachedBitmapProxy creates a tight copy of 'bitmap' so we don't have to subset
1213 // the special image
1214 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1215 rect,
1216 bitmap.getGenerationID(),
1217 std::move(proxy),
1218 bitmap.refColorSpace(),
1219 &this->surfaceProps());
robertphillips6451a0c2016-07-18 08:31:31 -07001220}
1221
reede51c3562016-07-19 14:33:20 -07001222sk_sp<SkSpecialImage> SkGpuDevice::makeSpecial(const SkImage* image) {
robertphillips6451a0c2016-07-18 08:31:31 -07001223 SkPixmap pm;
1224 if (image->isTextureBacked()) {
Robert Phillips6de99042017-01-31 11:31:39 -05001225 sk_sp<GrTextureProxy> proxy = as_IB(image)->asTextureProxyRef();
robertphillips6451a0c2016-07-18 08:31:31 -07001226
Robert Phillips6de99042017-01-31 11:31:39 -05001227 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1228 SkIRect::MakeWH(image->width(), image->height()),
1229 image->uniqueID(),
1230 std::move(proxy),
1231 as_IB(image)->onImageInfo().refColorSpace(),
1232 &this->surfaceProps());
robertphillips6451a0c2016-07-18 08:31:31 -07001233 } else if (image->peekPixels(&pm)) {
1234 SkBitmap bm;
1235
1236 bm.installPixels(pm);
1237 return this->makeSpecial(bm);
1238 } else {
1239 return nullptr;
1240 }
1241}
1242
1243sk_sp<SkSpecialImage> SkGpuDevice::snapSpecial() {
Robert Phillips63c67462017-02-15 14:19:01 -05001244 sk_sp<GrTextureProxy> proxy(this->accessRenderTargetContext()->asTextureProxyRef());
1245 if (!proxy) {
robertphillips04d62182016-07-15 12:21:33 -07001246 // When the device doesn't have a texture, we create a temporary texture.
1247 // TODO: we should actually only copy the portion of the source needed to apply the image
1248 // filter
Robert Phillips63c67462017-02-15 14:19:01 -05001249 proxy = GrSurfaceProxy::Copy(fContext.get(),
1250 this->accessRenderTargetContext()->asSurfaceProxy(),
Greg Daniel65c7f662017-10-30 13:39:09 -04001251 GrMipMapped::kNo,
Robert Phillips63c67462017-02-15 14:19:01 -05001252 SkBudgeted::kYes);
1253 if (!proxy) {
robertphillips04d62182016-07-15 12:21:33 -07001254 return nullptr;
1255 }
robertphillips1b5f9682016-07-15 08:01:12 -07001256 }
1257
1258 const SkImageInfo ii = this->imageInfo();
1259 const SkIRect srcRect = SkIRect::MakeWH(ii.width(), ii.height());
1260
Robert Phillipse2f7d182016-12-15 09:23:05 -05001261 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1262 srcRect,
1263 kNeedNewImageUniqueID_SpecialImage,
Robert Phillips63c67462017-02-15 14:19:01 -05001264 std::move(proxy),
Robert Phillips70b49fd2017-01-13 11:21:36 -05001265 ii.refColorSpace(),
Robert Phillipse2f7d182016-12-15 09:23:05 -05001266 &this->surfaceProps());
robertphillips1b5f9682016-07-15 08:01:12 -07001267}
1268
Mike Reeda1361362017-03-07 09:37:29 -05001269void SkGpuDevice::drawDevice(SkBaseDevice* device,
Mike Reed2179b782018-02-07 11:59:57 -05001270 int left, int top, const SkPaint& paint) {
1271 SkASSERT(!paint.getImageFilter());
reedcf5c8462016-07-20 12:28:40 -07001272
joshualittce894002016-01-11 13:29:31 -08001273 ASSERT_SINGLE_OWNER
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001274 // clear of the source device must occur before CHECK_SHOULD_DRAW
Hal Canary144caf52016-11-07 17:57:18 -05001275 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawDevice", fContext.get());
kkinnunen2e4414e2015-02-19 07:20:40 -08001276
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001277 // drawDevice is defined to be in device coords.
robertphillips1b5f9682016-07-15 08:01:12 -07001278 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
robertphillips6451a0c2016-07-18 08:31:31 -07001279 sk_sp<SkSpecialImage> srcImg(dev->snapSpecial());
robertphillips1b5f9682016-07-15 08:01:12 -07001280 if (!srcImg) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001281 return;
1282 }
1283
Mike Reed2179b782018-02-07 11:59:57 -05001284 this->drawSpecial(srcImg.get(), left, top, paint, nullptr, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001285}
1286
Brian Salomon34169692017-08-28 15:32:01 -04001287void SkGpuDevice::drawImage(const SkImage* image, SkScalar x, SkScalar y, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001288 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001289 SkMatrix viewMatrix = this->ctm();
bsalomon1cf6f9b2015-12-08 10:53:43 -08001290 viewMatrix.preTranslate(x, y);
reed2d5b7142016-08-17 11:12:33 -07001291 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001292 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon34169692017-08-28 15:32:01 -04001293 this->drawPinnedTextureProxy(std::move(proxy), pinnedUniqueID, as_IB(image)->colorSpace(),
1294 image->alphaType(), nullptr, nullptr,
1295 SkCanvas::kFast_SrcRectConstraint, viewMatrix, paint);
bsalomonc55271f2015-11-09 11:55:57 -08001296 return;
Brian Salomon34169692017-08-28 15:32:01 -04001297 }
1298 SkBitmap bm;
1299 if (this->shouldTileImage(image, nullptr, SkCanvas::kFast_SrcRectConstraint,
1300 paint.getFilterQuality(), viewMatrix, SkMatrix::I())) {
1301 // only support tiling as bitmap at the moment, so force raster-version
Brian Salomonf3569f02017-10-24 12:52:33 -04001302 if (!as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Brian Salomon34169692017-08-28 15:32:01 -04001303 return;
reed85d91782015-09-10 14:33:38 -07001304 }
Brian Salomon34169692017-08-28 15:32:01 -04001305 this->drawBitmap(bm, x, y, paint);
1306 return;
1307 }
1308 if (image->isLazyGenerated()) {
1309 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
1310 this->drawTextureMaker(&maker, image->width(), image->height(), nullptr, nullptr,
1311 SkCanvas::kFast_SrcRectConstraint, viewMatrix, paint);
1312 return;
1313 }
Brian Salomonf3569f02017-10-24 12:52:33 -04001314 if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Brian Salomon34169692017-08-28 15:32:01 -04001315 GrBitmapTextureMaker maker(fContext.get(), bm);
1316 this->drawTextureMaker(&maker, image->width(), image->height(), nullptr, nullptr,
1317 SkCanvas::kFast_SrcRectConstraint, viewMatrix, paint);
reeda85d4d02015-05-06 12:56:48 -07001318 }
1319}
1320
Brian Salomon34169692017-08-28 15:32:01 -04001321void SkGpuDevice::drawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
1322 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
joshualittce894002016-01-11 13:29:31 -08001323 ASSERT_SINGLE_OWNER
reed2d5b7142016-08-17 11:12:33 -07001324 uint32_t pinnedUniqueID;
Brian Salomon34169692017-08-28 15:32:01 -04001325 if (!src || src->contains(image->bounds())) {
1326 constraint = SkCanvas::kFast_SrcRectConstraint;
1327 }
Robert Phillips3798c862017-03-27 11:08:16 -04001328 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon34169692017-08-28 15:32:01 -04001329 this->drawPinnedTextureProxy(std::move(proxy), pinnedUniqueID, as_IB(image)->colorSpace(),
1330 image->alphaType(), src, &dst, constraint, this->ctm(), paint);
bsalomonc55271f2015-11-09 11:55:57 -08001331 return;
1332 }
1333 SkBitmap bm;
bsalomone553b642016-08-17 09:02:09 -07001334 SkMatrix srcToDstRect;
1335 srcToDstRect.setRectToRect((src ? *src : SkRect::MakeIWH(image->width(), image->height())),
1336 dst, SkMatrix::kFill_ScaleToFit);
Mike Reeda1361362017-03-07 09:37:29 -05001337 if (this->shouldTileImage(image, src, constraint, paint.getFilterQuality(), this->ctm(),
bsalomone553b642016-08-17 09:02:09 -07001338 srcToDstRect)) {
bsalomonc55271f2015-11-09 11:55:57 -08001339 // only support tiling as bitmap at the moment, so force raster-version
Brian Salomonf3569f02017-10-24 12:52:33 -04001340 if (!as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
bsalomonc55271f2015-11-09 11:55:57 -08001341 return;
1342 }
Mike Reeda1361362017-03-07 09:37:29 -05001343 this->drawBitmapRect(bm, src, dst, paint, constraint);
Brian Salomon34169692017-08-28 15:32:01 -04001344 return;
1345 }
1346 if (image->isLazyGenerated()) {
Brian Osmandf7e0752017-04-26 16:20:28 -04001347 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
Brian Salomon34169692017-08-28 15:32:01 -04001348 this->drawTextureMaker(&maker, image->width(), image->height(), src, &dst, constraint,
1349 this->ctm(), paint);
1350 return;
1351 }
Brian Salomonf3569f02017-10-24 12:52:33 -04001352 if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Derek Sollenbergerdbb9e362017-08-11 14:18:59 -04001353 GrBitmapTextureMaker maker(fContext.get(), bm);
Brian Salomon34169692017-08-28 15:32:01 -04001354 this->drawTextureMaker(&maker, image->width(), image->height(), src, &dst, constraint,
1355 this->ctm(), paint);
reeda85d4d02015-05-06 12:56:48 -07001356 }
bsalomon1cf6f9b2015-12-08 10:53:43 -08001357}
1358
Leon Scroggins III57e1f022018-04-20 14:53:00 -04001359// When drawing nine-patches or n-patches, cap the filter quality at kBilerp.
1360static GrSamplerState::Filter compute_lattice_filter_mode(const SkPaint& paint) {
1361 if (paint.getFilterQuality() == kNone_SkFilterQuality) {
1362 return GrSamplerState::Filter::kNearest;
1363 }
1364
1365 return GrSamplerState::Filter::kBilerp;
1366}
1367
Mike Reeda1361362017-03-07 09:37:29 -05001368void SkGpuDevice::drawImageNine(const SkImage* image,
bsalomon2bbd0c62015-12-09 12:50:56 -08001369 const SkIRect& center, const SkRect& dst, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001370 ASSERT_SINGLE_OWNER
reed2d5b7142016-08-17 11:12:33 -07001371 uint32_t pinnedUniqueID;
Brian Salomon2a943df2018-05-04 13:43:19 -04001372 auto iter = skstd::make_unique<SkLatticeIter>(image->width(), image->height(), center, dst);
Robert Phillips3798c862017-03-27 11:08:16 -04001373 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon4df00922017-09-07 16:34:11 +00001374 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
Greg Danielc77085d2017-11-01 16:38:48 -04001375 image->alphaType(), pinnedUniqueID,
1376 as_IB(image)->onImageInfo().colorSpace());
Brian Salomon2a943df2018-05-04 13:43:19 -04001377 this->drawProducerLattice(&adjuster, std::move(iter), dst, paint);
bsalomon2bbd0c62015-12-09 12:50:56 -08001378 } else {
1379 SkBitmap bm;
Brian Osmandf7e0752017-04-26 16:20:28 -04001380 if (image->isLazyGenerated()) {
1381 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
Brian Salomon2a943df2018-05-04 13:43:19 -04001382 this->drawProducerLattice(&maker, std::move(iter), dst, paint);
Brian Salomonf3569f02017-10-24 12:52:33 -04001383 } else if (as_IB(image)->getROPixels(&bm,
1384 fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Brian Salomon2a943df2018-05-04 13:43:19 -04001385 GrBitmapTextureMaker maker(fContext.get(), bm);
1386 this->drawProducerLattice(&maker, std::move(iter), dst, paint);
bsalomon2bbd0c62015-12-09 12:50:56 -08001387 }
1388 }
1389}
1390
Mike Reeda1361362017-03-07 09:37:29 -05001391void SkGpuDevice::drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
bsalomon2bbd0c62015-12-09 12:50:56 -08001392 const SkRect& dst, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001393 ASSERT_SINGLE_OWNER
Brian Salomon2a943df2018-05-04 13:43:19 -04001394 auto iter = skstd::make_unique<SkLatticeIter>(bitmap.width(), bitmap.height(), center, dst);
Hal Canary144caf52016-11-07 17:57:18 -05001395 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Brian Salomon2a943df2018-05-04 13:43:19 -04001396 this->drawProducerLattice(&maker, std::move(iter), dst, paint);
joshualitt33a5fce2015-11-18 13:28:51 -08001397}
1398
Mike Reeda1361362017-03-07 09:37:29 -05001399void SkGpuDevice::drawProducerLattice(GrTextureProducer* producer,
Brian Salomon2a943df2018-05-04 13:43:19 -04001400 std::unique_ptr<SkLatticeIter> iter, const SkRect& dst,
1401 const SkPaint& origPaint) {
Hal Canary144caf52016-11-07 17:57:18 -05001402 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawProducerLattice", fContext.get());
Brian Salomon2a943df2018-05-04 13:43:19 -04001403 SkTCopyOnFirstWrite<SkPaint> paint(&origPaint);
msarett10e3d9b2016-08-18 15:46:03 -07001404
Brian Salomon2a943df2018-05-04 13:43:19 -04001405 if (!producer->isAlphaOnly() && (paint->getColor() & 0x00FFFFFF) != 0x00FFFFFF) {
1406 paint.writable()->setColor(SkColorSetARGB(origPaint.getAlpha(), 0xFF, 0xFF, 0xFF));
1407 }
msarett10e3d9b2016-08-18 15:46:03 -07001408 GrPaint grPaint;
Brian Salomon2a943df2018-05-04 13:43:19 -04001409 if (!SkPaintToGrPaintWithPrimitiveColor(this->context(), fRenderTargetContext->colorSpaceInfo(),
1410 *paint, &grPaint)) {
msarett10e3d9b2016-08-18 15:46:03 -07001411 return;
1412 }
1413
Brian Salomon2a943df2018-05-04 13:43:19 -04001414 auto dstColorSpace = fRenderTargetContext->colorSpaceInfo().colorSpace();
1415 const GrSamplerState::Filter filter = compute_lattice_filter_mode(*paint);
1416 sk_sp<SkColorSpace> proxyColorSpace;
1417 auto proxy =
1418 producer->refTextureProxyForParams(filter, dstColorSpace, &proxyColorSpace, nullptr);
Brian Salomona8daee82018-05-07 14:51:18 -04001419 if (!proxy) {
1420 return;
1421 }
Brian Osman653f34d2018-06-14 11:44:02 -04001422 auto csxf = GrColorSpaceXform::Make(proxyColorSpace.get(), dstColorSpace);
Brian Salomon2a943df2018-05-04 13:43:19 -04001423
Brian Salomon0166cfd2017-03-13 17:58:25 -04001424 fRenderTargetContext->drawImageLattice(this->clip(), std::move(grPaint), this->ctm(),
Brian Salomon2a943df2018-05-04 13:43:19 -04001425 std::move(proxy), std::move(csxf), filter,
1426 std::move(iter), dst);
msarett10e3d9b2016-08-18 15:46:03 -07001427}
1428
Mike Reeda1361362017-03-07 09:37:29 -05001429void SkGpuDevice::drawImageLattice(const SkImage* image,
msarett10e3d9b2016-08-18 15:46:03 -07001430 const SkCanvas::Lattice& lattice, const SkRect& dst,
1431 const SkPaint& paint) {
1432 ASSERT_SINGLE_OWNER
1433 uint32_t pinnedUniqueID;
Brian Salomon2a943df2018-05-04 13:43:19 -04001434 auto iter = skstd::make_unique<SkLatticeIter>(lattice, dst);
Robert Phillips3798c862017-03-27 11:08:16 -04001435 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon4df00922017-09-07 16:34:11 +00001436 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
Greg Danielc77085d2017-11-01 16:38:48 -04001437 image->alphaType(), pinnedUniqueID,
1438 as_IB(image)->onImageInfo().colorSpace());
Brian Salomon2a943df2018-05-04 13:43:19 -04001439 this->drawProducerLattice(&adjuster, std::move(iter), dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001440 } else {
1441 SkBitmap bm;
Brian Osmandf7e0752017-04-26 16:20:28 -04001442 if (image->isLazyGenerated()) {
1443 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
Brian Salomon2a943df2018-05-04 13:43:19 -04001444 this->drawProducerLattice(&maker, std::move(iter), dst, paint);
Brian Salomonf3569f02017-10-24 12:52:33 -04001445 } else if (as_IB(image)->getROPixels(&bm,
1446 fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Brian Salomon2a943df2018-05-04 13:43:19 -04001447 GrBitmapTextureMaker maker(fContext.get(), bm);
1448 this->drawProducerLattice(&maker, std::move(iter), dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001449 }
1450 }
1451}
1452
Mike Reeda1361362017-03-07 09:37:29 -05001453void SkGpuDevice::drawBitmapLattice(const SkBitmap& bitmap,
msarett10e3d9b2016-08-18 15:46:03 -07001454 const SkCanvas::Lattice& lattice, const SkRect& dst,
1455 const SkPaint& paint) {
1456 ASSERT_SINGLE_OWNER
Brian Salomon2a943df2018-05-04 13:43:19 -04001457 auto iter = skstd::make_unique<SkLatticeIter>(lattice, dst);
Hal Canary144caf52016-11-07 17:57:18 -05001458 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Brian Salomon2a943df2018-05-04 13:43:19 -04001459 this->drawProducerLattice(&maker, std::move(iter), dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001460}
1461
Brian Salomonf3569f02017-10-24 12:52:33 -04001462static bool init_vertices_paint(GrContext* context, const GrColorSpaceInfo& colorSpaceInfo,
1463 const SkPaint& skPaint, const SkMatrix& matrix, SkBlendMode bmode,
Robert Phillips26c90e02017-03-14 14:39:29 -04001464 bool hasTexs, bool hasColors, GrPaint* grPaint) {
Brian Salomon199fb872017-02-06 09:41:10 -05001465 if (hasTexs && skPaint.getShader()) {
1466 if (hasColors) {
1467 // When there are texs and colors the shader and colors are combined using bmode.
Brian Salomonf3569f02017-10-24 12:52:33 -04001468 return SkPaintToGrPaintWithXfermode(context, colorSpaceInfo, skPaint, matrix, bmode,
1469 grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001470 } else {
1471 // We have a shader, but no colors to blend it against.
Brian Salomonf3569f02017-10-24 12:52:33 -04001472 return SkPaintToGrPaint(context, colorSpaceInfo, skPaint, matrix, grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001473 }
1474 } else {
1475 if (hasColors) {
1476 // We have colors, but either have no shader or no texture coords (which implies that
1477 // we should ignore the shader).
Brian Salomonf3569f02017-10-24 12:52:33 -04001478 return SkPaintToGrPaintWithPrimitiveColor(context, colorSpaceInfo, skPaint, grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001479 } else {
1480 // No colors and no shaders. Just draw with the paint color.
Brian Salomonf3569f02017-10-24 12:52:33 -04001481 return SkPaintToGrPaintNoShader(context, colorSpaceInfo, skPaint, grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001482 }
1483 }
1484}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001485
Mike Reed887cdf12017-04-03 11:11:09 -04001486void SkGpuDevice::wireframeVertices(SkVertices::VertexMode vmode, int vertexCount,
Ruiqi Maoc05aa7d2018-07-03 21:18:07 +00001487 const SkPoint vertices[], SkBlendMode bmode,
Mike Reed2f6b5a42017-03-19 15:04:17 -04001488 const uint16_t indices[], int indexCount,
1489 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001490 ASSERT_SINGLE_OWNER
Mike Reed2f6b5a42017-03-19 15:04:17 -04001491 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "wireframeVertices", fContext.get());
mtklein533eb782014-08-27 10:39:42 -07001492
Mike Reed2f6b5a42017-03-19 15:04:17 -04001493 SkPaint copy(paint);
1494 copy.setStyle(SkPaint::kStroke_Style);
1495 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001496
Mike Reed2f6b5a42017-03-19 15:04:17 -04001497 GrPaint grPaint;
1498 // we ignore the shader since we have no texture coordinates.
Brian Salomonf3569f02017-10-24 12:52:33 -04001499 if (!SkPaintToGrPaintNoShader(this->context(), fRenderTargetContext->colorSpaceInfo(), copy,
1500 &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001501 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001502 }
1503
Mike Reed2f6b5a42017-03-19 15:04:17 -04001504 int triangleCount = 0;
1505 int n = (nullptr == indices) ? vertexCount : indexCount;
1506 switch (vmode) {
Mike Reed887cdf12017-04-03 11:11:09 -04001507 case SkVertices::kTriangles_VertexMode:
Mike Reed2f6b5a42017-03-19 15:04:17 -04001508 triangleCount = n / 3;
1509 break;
Mike Reed887cdf12017-04-03 11:11:09 -04001510 case SkVertices::kTriangleStrip_VertexMode:
Mike Reed2f6b5a42017-03-19 15:04:17 -04001511 triangleCount = n - 2;
1512 break;
Brian Salomoncccafe82018-04-28 16:13:08 -04001513 case SkVertices::kTriangleFan_VertexMode:
1514 SK_ABORT("Unexpected triangle fan.");
1515 break;
Mike Reed2f6b5a42017-03-19 15:04:17 -04001516 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001517
Mike Reed2f6b5a42017-03-19 15:04:17 -04001518 VertState state(vertexCount, indices, indexCount);
1519 VertState::Proc vertProc = state.chooseProc(vmode);
1520
1521 //number of indices for lines per triangle with kLines
1522 indexCount = triangleCount * 6;
1523
Brian Osmanae0c50c2017-05-25 16:56:34 -04001524 static constexpr SkVertices::VertexMode kIgnoredMode = SkVertices::kTriangles_VertexMode;
1525 SkVertices::Builder builder(kIgnoredMode, vertexCount, indexCount, 0);
1526 memcpy(builder.positions(), vertices, vertexCount * sizeof(SkPoint));
1527
1528 uint16_t* lineIndices = builder.indices();
Mike Reed2f6b5a42017-03-19 15:04:17 -04001529 int i = 0;
1530 while (vertProc(&state)) {
1531 lineIndices[i] = state.f0;
1532 lineIndices[i + 1] = state.f1;
1533 lineIndices[i + 2] = state.f1;
1534 lineIndices[i + 3] = state.f2;
1535 lineIndices[i + 4] = state.f2;
1536 lineIndices[i + 5] = state.f0;
1537 i += 6;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001538 }
Brian Osmanae0c50c2017-05-25 16:56:34 -04001539
Chris Dalton3809bab2017-06-13 10:55:06 -06001540 GrPrimitiveType primitiveType = GrPrimitiveType::kLines;
Brian Salomon0166cfd2017-03-13 17:58:25 -04001541 fRenderTargetContext->drawVertices(this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -05001542 std::move(grPaint),
Mike Reeda1361362017-03-07 09:37:29 -05001543 this->ctm(),
Brian Osmanae0c50c2017-05-25 16:56:34 -04001544 builder.detach(),
1545 &primitiveType);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001546}
1547
Ruiqi Maoc05aa7d2018-07-03 21:18:07 +00001548void SkGpuDevice::drawVertices(const SkVertices* vertices, const SkMatrix* bones, int boneCount,
Ruiqi Maof5101492018-06-29 14:32:21 -04001549 SkBlendMode mode, const SkPaint& paint) {
Ruiqi Maoc05aa7d2018-07-03 21:18:07 +00001550 // TODO: GPU ANIMATION
Brian Salomon199fb872017-02-06 09:41:10 -05001551 ASSERT_SINGLE_OWNER
Mike Reed2f6b5a42017-03-19 15:04:17 -04001552 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawVertices", fContext.get());
Brian Salomon199fb872017-02-06 09:41:10 -05001553
1554 SkASSERT(vertices);
1555 GrPaint grPaint;
Mike Reed5fa66452017-03-16 09:06:34 -04001556 bool hasColors = vertices->hasColors();
1557 bool hasTexs = vertices->hasTexCoords();
Brian Osman0b403f82017-05-26 10:39:51 -04001558 if ((!hasTexs || !paint.getShader()) && !hasColors) {
Brian Salomon199fb872017-02-06 09:41:10 -05001559 // The dreaded wireframe mode. Fallback to drawVertices and go so slooooooow.
Mike Reed2f6b5a42017-03-19 15:04:17 -04001560 this->wireframeVertices(vertices->mode(), vertices->vertexCount(), vertices->positions(),
Ruiqi Maoc05aa7d2018-07-03 21:18:07 +00001561 mode, vertices->indices(), vertices->indexCount(), paint);
Brian Osman0b403f82017-05-26 10:39:51 -04001562 return;
Brian Salomon199fb872017-02-06 09:41:10 -05001563 }
Brian Salomonf3569f02017-10-24 12:52:33 -04001564 if (!init_vertices_paint(fContext.get(), fRenderTargetContext->colorSpaceInfo(), paint,
1565 this->ctm(), mode, hasTexs, hasColors, &grPaint)) {
Brian Salomon199fb872017-02-06 09:41:10 -05001566 return;
1567 }
Brian Salomon0166cfd2017-03-13 17:58:25 -04001568 fRenderTargetContext->drawVertices(this->clip(), std::move(grPaint), this->ctm(),
Ruiqi Maoc05aa7d2018-07-03 21:18:07 +00001569 sk_ref_sp(const_cast<SkVertices*>(vertices)));
Brian Salomon199fb872017-02-06 09:41:10 -05001570}
1571
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001572///////////////////////////////////////////////////////////////////////////////
1573
Jim Van Verth3af1af92017-05-18 15:06:54 -04001574void SkGpuDevice::drawShadow(const SkPath& path, const SkDrawShadowRec& rec) {
1575
1576 ASSERT_SINGLE_OWNER
Jim Van Verth3af1af92017-05-18 15:06:54 -04001577 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawShadow", fContext.get());
1578
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001579 if (!fRenderTargetContext->drawFastShadow(this->clip(), this->ctm(), path, rec)) {
Jim Van Verth3af1af92017-05-18 15:06:54 -04001580 // failed to find an accelerated case
1581 this->INHERITED::drawShadow(path, rec);
1582 }
1583}
1584
1585///////////////////////////////////////////////////////////////////////////////
1586
Mike Reeda1361362017-03-07 09:37:29 -05001587void SkGpuDevice::drawAtlas(const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001588 const SkRect texRect[], const SkColor colors[], int count,
Mike Reedfaba3712016-11-03 14:45:31 -04001589 SkBlendMode mode, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001590 ASSERT_SINGLE_OWNER
reedca109532015-06-25 16:25:25 -07001591 if (paint.isAntiAlias()) {
Mike Reeda1361362017-03-07 09:37:29 -05001592 this->INHERITED::drawAtlas(atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001593 return;
1594 }
1595
Hal Canary144caf52016-11-07 17:57:18 -05001596 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawText", fContext.get());
herb11a7f7f2015-11-24 12:41:00 -08001597
reedca109532015-06-25 16:25:25 -07001598 SkPaint p(paint);
Mike Reed0acd7952017-04-28 11:12:19 -04001599 p.setShader(atlas->makeShader());
reedca109532015-06-25 16:25:25 -07001600
jvanverth31ff7622015-08-07 10:09:28 -07001601 GrPaint grPaint;
robertphillips29ccdf82015-07-24 10:20:45 -07001602 if (colors) {
Brian Salomonf3569f02017-10-24 12:52:33 -04001603 if (!SkPaintToGrPaintWithXfermode(this->context(), fRenderTargetContext->colorSpaceInfo(),
1604 p, this->ctm(), (SkBlendMode)mode, &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001605 return;
1606 }
1607 } else {
Brian Salomonf3569f02017-10-24 12:52:33 -04001608 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), p,
1609 this->ctm(), &grPaint)) {
jvanverth31ff7622015-08-07 10:09:28 -07001610 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001611 }
1612 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001613
1614 SkDEBUGCODE(this->validate();)
Brian Salomon0166cfd2017-03-13 17:58:25 -04001615 fRenderTargetContext->drawAtlas(
1616 this->clip(), std::move(grPaint), this->ctm(), count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001617}
1618
1619///////////////////////////////////////////////////////////////////////////////
1620
Mike Reeda1361362017-03-07 09:37:29 -05001621void SkGpuDevice::drawPosText(const void* text, size_t byteLength,
fmalita05c4a432014-09-29 06:29:53 -07001622 const SkScalar pos[], int scalarsPerPos,
1623 const SkPoint& offset, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001624 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001625 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPosText", fContext.get());
jvanverth8c27a182014-10-14 08:45:50 -07001626 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001627
Brian Salomon0166cfd2017-03-13 17:58:25 -04001628 fRenderTargetContext->drawPosText(this->clip(), paint, this->ctm(), (const char*)text,
1629 byteLength, pos, scalarsPerPos, offset,
Mike Reeda1361362017-03-07 09:37:29 -05001630 this->devClipBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001631}
1632
Robert Phillips38580452018-06-28 12:00:35 +00001633void SkGpuDevice::drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
1634 const SkPaint& paint, SkDrawFilter* drawFilter) {
joshualittce894002016-01-11 13:29:31 -08001635 ASSERT_SINGLE_OWNER
Robert Phillips38580452018-06-28 12:00:35 +00001636 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawTextBlob", fContext.get());
joshualitt9c328182015-03-23 08:13:04 -07001637 SkDEBUGCODE(this->validate();)
1638
Robert Phillips38580452018-06-28 12:00:35 +00001639 fRenderTargetContext->drawTextBlob(this->clip(), paint, this->ctm(), blob, x, y, drawFilter,
1640 this->devClipBounds());
joshualitt9c328182015-03-23 08:13:04 -07001641}
1642
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001643///////////////////////////////////////////////////////////////////////////////
1644
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001645void SkGpuDevice::flush() {
Greg Daniela5cb7812017-06-16 09:45:32 -04001646 this->flushAndSignalSemaphores(0, nullptr);
1647}
1648
Greg Daniel51316782017-08-02 15:10:09 +00001649GrSemaphoresSubmitted SkGpuDevice::flushAndSignalSemaphores(int numSemaphores,
1650 GrBackendSemaphore signalSemaphores[]) {
joshualittce894002016-01-11 13:29:31 -08001651 ASSERT_SINGLE_OWNER
joshualittbc907352016-01-13 06:45:40 -08001652
Greg Danielc64ee462017-06-15 16:59:49 -04001653 return fRenderTargetContext->prepareForExternalIO(numSemaphores, signalSemaphores);
Greg Daniela5cb7812017-06-16 09:45:32 -04001654}
1655
Greg Danielc64ee462017-06-15 16:59:49 -04001656bool SkGpuDevice::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) {
Greg Daniela5cb7812017-06-16 09:45:32 -04001657 ASSERT_SINGLE_OWNER
1658
Greg Danielc64ee462017-06-15 16:59:49 -04001659 return fRenderTargetContext->waitOnSemaphores(numSemaphores, waitSemaphores);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001660}
1661
1662///////////////////////////////////////////////////////////////////////////////
1663
reed76033be2015-03-14 10:54:31 -07001664SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
joshualittce894002016-01-11 13:29:31 -08001665 ASSERT_SINGLE_OWNER
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001666
robertphillipsca6eafc2016-05-17 09:57:46 -07001667 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001668
robertphillipsca6eafc2016-05-17 09:57:46 -07001669 // layers are never drawn in repeat modes, so we can request an approx
hcm4396fa52014-10-27 21:43:30 -07001670 // match and ignore any padding.
robertphillipsca6eafc2016-05-17 09:57:46 -07001671 SkBackingFit fit = kNever_TileUsage == cinfo.fTileUsage ? SkBackingFit::kApprox
1672 : SkBackingFit::kExact;
bsalomonafe30052015-01-16 07:32:33 -08001673
Brian Osman10fc6fd2018-03-02 11:01:10 -05001674 GrPixelConfig config = fRenderTargetContext->colorSpaceInfo().config();
1675 if (kRGBA_1010102_GrPixelConfig == config) {
1676 // If the original device is 1010102, fall back to 8888 so that we have a usable alpha
1677 // channel in the layer.
1678 config = kRGBA_8888_GrPixelConfig;
1679 }
1680
Robert Phillips0c4b7b12018-03-06 08:20:37 -05001681 sk_sp<GrRenderTargetContext> rtc(fContext->contextPriv().makeDeferredRenderTargetContext(
Brian Osman10fc6fd2018-03-02 11:01:10 -05001682 fit, cinfo.fInfo.width(), cinfo.fInfo.height(), config,
Brian Salomonf3569f02017-10-24 12:52:33 -04001683 fRenderTargetContext->colorSpaceInfo().refColorSpace(),
Greg Daniel45d63032017-10-30 13:41:26 -04001684 fRenderTargetContext->numStencilSamples(), GrMipMapped::kNo,
1685 kBottomLeft_GrSurfaceOrigin, &props));
Brian Osman11052242016-10-27 14:47:55 -04001686 if (!rtc) {
Mike Kleine54c75f2016-10-13 14:18:09 -04001687 return nullptr;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001688 }
robertphillipsca6eafc2016-05-17 09:57:46 -07001689
1690 // Skia's convention is to only clear a device if it is non-opaque.
1691 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
1692
Robert Phillips9fab7e92016-11-17 12:45:04 -05001693 return SkGpuDevice::Make(fContext.get(), std::move(rtc),
1694 cinfo.fInfo.width(), cinfo.fInfo.height(), init).release();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001695}
1696
reede8f30622016-03-23 18:59:25 -07001697sk_sp<SkSurface> SkGpuDevice::makeSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
joshualittce894002016-01-11 13:29:31 -08001698 ASSERT_SINGLE_OWNER
bsalomonafe30052015-01-16 07:32:33 -08001699 // TODO: Change the signature of newSurface to take a budgeted parameter.
bsalomon5ec26ae2016-02-25 08:33:02 -08001700 static const SkBudgeted kBudgeted = SkBudgeted::kNo;
Hal Canary144caf52016-11-07 17:57:18 -05001701 return SkSurface::MakeRenderTarget(fContext.get(), kBudgeted, info,
Brian Salomon50e66d42017-05-15 16:28:07 -04001702 fRenderTargetContext->numStencilSamples(),
Brian Osman11052242016-10-27 14:47:55 -04001703 fRenderTargetContext->origin(), &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001704}
1705
senorblanco900c3672016-04-27 11:31:23 -07001706SkImageFilterCache* SkGpuDevice::getImageFilterCache() {
joshualittce894002016-01-11 13:29:31 -08001707 ASSERT_SINGLE_OWNER
senorblanco55b6d8b2014-07-30 11:26:46 -07001708 // We always return a transient cache, so it is freed after each
1709 // filter traversal.
brianosman04a44d02016-09-21 09:46:57 -07001710 return SkImageFilterCache::Create(SkImageFilterCache::kDefaultTransientSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07001711}
reedf037e0b2014-10-30 11:34:15 -07001712