blob: 9a01394691eadb44f5608a3f2f62547a3b8864a3 [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"
Brian Osman3b66ab62016-11-28 09:26:31 -05009#include "GrBitmapTextureMaker.h"
robertphillipsccb1b572015-05-27 11:02:55 -070010#include "GrBlurUtils.h"
Brian Osman1cb41712017-10-19 12:54:52 -040011#include "GrColorSpaceXform.h"
kkinnunenabcfab42015-02-22 22:53:44 -080012#include "GrContext.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050013#include "GrContextPriv.h"
kkinnunenabcfab42015-02-22 22:53:44 -080014#include "GrGpu.h"
Brian Osman3b66ab62016-11-28 09:26:31 -050015#include "GrImageTextureMaker.h"
16#include "GrRenderTargetContextPriv.h"
bsalomon6663acf2016-05-10 09:14:17 -070017#include "GrStyle.h"
Robert Phillips0ae6faa2017-03-21 16:22:00 -040018#include "GrSurfaceProxyPriv.h"
Brian Osmane8e54582016-11-28 10:06:27 -050019#include "GrTextureAdjuster.h"
Robert Phillipse2f7d182016-12-15 09:23:05 -050020#include "GrTextureProxy.h"
egdanielbbcb38d2014-06-19 10:19:29 -070021#include "GrTracing.h"
robertphillips30d78412014-11-24 09:49:17 -080022#include "SkCanvasPriv.h"
robertphillips714712b2016-08-04 06:20:45 -070023#include "SkDraw.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000024#include "SkGlyphCache.h"
bsalomonf276ac52015-10-09 13:36:42 -070025#include "SkGr.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000026#include "SkImageFilter.h"
senorblanco900c3672016-04-27 11:31:23 -070027#include "SkImageFilterCache.h"
Matt Sarettcb6266b2017-01-17 10:48:53 -050028#include "SkImageInfoPriv.h"
Brian Salomon6a639042016-12-14 11:08:17 -050029#include "SkImage_Base.h"
msarettc573a402016-08-02 08:05:56 -070030#include "SkLatticeIter.h"
Mike Reed80747ef2018-01-23 15:29:32 -050031#include "SkMaskFilterBase.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000032#include "SkPathEffect.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000033#include "SkPicture.h"
robertphillipsdb539902014-07-01 08:47:04 -070034#include "SkPictureData.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000035#include "SkRRect.h"
Brian Salomon6a639042016-12-14 11:08:17 -050036#include "SkRasterClip.h"
Matt Sarett03dd6d52017-01-23 12:15:09 -050037#include "SkReadPixelsRec.h"
kkinnunenabcfab42015-02-22 22:53:44 -080038#include "SkRecord.h"
robertphillips970587b2016-07-14 14:12:55 -070039#include "SkSpecialImage.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000040#include "SkStroke.h"
reed@google.com76f10a32014-02-05 15:32:21 +000041#include "SkSurface.h"
kkinnunenabcfab42015-02-22 22:53:44 -080042#include "SkSurface_Gpu.h"
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +000043#include "SkTLazy.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000044#include "SkUtils.h"
commit-bot@chromium.org559a8832014-05-30 10:08:22 +000045#include "SkVertState.h"
Brian Salomon199fb872017-02-06 09:41:10 -050046#include "SkVertices.h"
Matt Sarett03dd6d52017-01-23 12:15:09 -050047#include "SkWritePixelsRec.h"
kkinnunenabcfab42015-02-22 22:53:44 -080048#include "effects/GrBicubicEffect.h"
kkinnunenabcfab42015-02-22 22:53:44 -080049#include "effects/GrSimpleTextureEffect.h"
50#include "effects/GrTextureDomain.h"
Jim Van Verth3af1af92017-05-18 15:06:54 -040051#include "../private/SkShadowFlags.h"
joshualitt8e84a1e2016-02-16 11:09:25 -080052#include "text/GrTextUtils.h"
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000053
reedf037e0b2014-10-30 11:34:15 -070054#if SK_SUPPORT_GPU
55
joshualittce894002016-01-11 13:29:31 -080056#define ASSERT_SINGLE_OWNER \
57 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(fContext->debugSingleOwner());)
58
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000059
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000060///////////////////////////////////////////////////////////////////////////////
61
bsalomon74f681d2015-06-23 14:38:48 -070062/** Checks that the alpha type is legal and gets constructor flags. Returns false if device creation
63 should fail. */
64bool SkGpuDevice::CheckAlphaTypeAndGetFlags(
65 const SkImageInfo* info, SkGpuDevice::InitContents init, unsigned* flags) {
66 *flags = 0;
67 if (info) {
68 switch (info->alphaType()) {
69 case kPremul_SkAlphaType:
70 break;
71 case kOpaque_SkAlphaType:
72 *flags |= SkGpuDevice::kIsOpaque_Flag;
73 break;
74 default: // If it is unpremul or unknown don't try to render
75 return false;
76 }
77 }
78 if (kClear_InitContents == init) {
79 *flags |= kNeedClear_Flag;
80 }
81 return true;
82}
83
Robert Phillips9fab7e92016-11-17 12:45:04 -050084sk_sp<SkGpuDevice> SkGpuDevice::Make(GrContext* context,
85 sk_sp<GrRenderTargetContext> renderTargetContext,
robertphillips15c42ca2016-08-04 08:45:02 -070086 int width, int height,
87 InitContents init) {
Brian Osman11052242016-10-27 14:47:55 -040088 if (!renderTargetContext || renderTargetContext->wasAbandoned()) {
robertphillipsca6eafc2016-05-17 09:57:46 -070089 return nullptr;
90 }
91 unsigned flags;
92 if (!CheckAlphaTypeAndGetFlags(nullptr, init, &flags)) {
93 return nullptr;
94 }
Robert Phillips9fab7e92016-11-17 12:45:04 -050095 return sk_sp<SkGpuDevice>(new SkGpuDevice(context, std::move(renderTargetContext),
96 width, height, flags));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +000097}
98
robertphillips24e91282016-04-29 06:46:36 -070099sk_sp<SkGpuDevice> SkGpuDevice::Make(GrContext* context, SkBudgeted budgeted,
100 const SkImageInfo& info, int sampleCount,
Greg Daniele252f082017-10-23 16:05:23 -0400101 GrSurfaceOrigin origin, const SkSurfaceProps* props,
102 GrMipMapped mipMapped, InitContents init) {
bsalomon74f681d2015-06-23 14:38:48 -0700103 unsigned flags;
104 if (!CheckAlphaTypeAndGetFlags(&info, init, &flags)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700105 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700106 }
107
Brian Osman11052242016-10-27 14:47:55 -0400108 sk_sp<GrRenderTargetContext> renderTargetContext(MakeRenderTargetContext(context, budgeted,
109 info, sampleCount,
Greg Daniele252f082017-10-23 16:05:23 -0400110 origin, props,
111 mipMapped));
Brian Osman11052242016-10-27 14:47:55 -0400112 if (!renderTargetContext) {
halcanary96fcdcc2015-08-27 07:41:13 -0700113 return nullptr;
bsalomon74f681d2015-06-23 14:38:48 -0700114 }
115
Robert Phillips9fab7e92016-11-17 12:45:04 -0500116 return sk_sp<SkGpuDevice>(new SkGpuDevice(context, std::move(renderTargetContext),
robertphillipsca6eafc2016-05-17 09:57:46 -0700117 info.width(), info.height(), flags));
bsalomon74f681d2015-06-23 14:38:48 -0700118}
119
Brian Osman11052242016-10-27 14:47:55 -0400120static SkImageInfo make_info(GrRenderTargetContext* context, int w, int h, bool opaque) {
reed589a39e2016-08-20 07:59:19 -0700121 SkColorType colorType;
Brian Salomonf3569f02017-10-24 12:52:33 -0400122 if (!GrPixelConfigToColorType(context->colorSpaceInfo().config(), &colorType)) {
reed589a39e2016-08-20 07:59:19 -0700123 colorType = kUnknown_SkColorType;
124 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400125 return SkImageInfo::Make(w, h, colorType, opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType,
126 context->colorSpaceInfo().refColorSpace());
reed589a39e2016-08-20 07:59:19 -0700127}
128
Robert Phillips9fab7e92016-11-17 12:45:04 -0500129SkGpuDevice::SkGpuDevice(GrContext* context, sk_sp<GrRenderTargetContext> renderTargetContext,
130 int width, int height, unsigned flags)
Brian Osman11052242016-10-27 14:47:55 -0400131 : INHERITED(make_info(renderTargetContext.get(), width, height,
132 SkToBool(flags & kIsOpaque_Flag)), renderTargetContext->surfaceProps())
Robert Phillips9fab7e92016-11-17 12:45:04 -0500133 , fContext(SkRef(context))
Brian Osman11052242016-10-27 14:47:55 -0400134 , fRenderTargetContext(std::move(renderTargetContext))
reed589a39e2016-08-20 07:59:19 -0700135{
robertphillips1f3923e2016-07-21 07:17:54 -0700136 fSize.set(width, height);
bsalomon74f681d2015-06-23 14:38:48 -0700137 fOpaque = SkToBool(flags & kIsOpaque_Flag);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000138
bsalomone63ffef2016-02-05 07:17:34 -0800139 if (flags & kNeedClear_Flag) {
140 this->clearAll();
141 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000142}
143
Brian Osman11052242016-10-27 14:47:55 -0400144sk_sp<GrRenderTargetContext> SkGpuDevice::MakeRenderTargetContext(
145 GrContext* context,
146 SkBudgeted budgeted,
147 const SkImageInfo& origInfo,
148 int sampleCount,
149 GrSurfaceOrigin origin,
Greg Daniele252f082017-10-23 16:05:23 -0400150 const SkSurfaceProps* surfaceProps,
151 GrMipMapped mipMapped) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000152 if (kUnknown_SkColorType == origInfo.colorType() ||
153 origInfo.width() < 0 || origInfo.height() < 0) {
halcanary96fcdcc2015-08-27 07:41:13 -0700154 return nullptr;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000155 }
156
bsalomonafe30052015-01-16 07:32:33 -0800157 if (!context) {
halcanary96fcdcc2015-08-27 07:41:13 -0700158 return nullptr;
bsalomonafe30052015-01-16 07:32:33 -0800159 }
160
Brian Osman0c2997b2017-01-11 16:58:42 -0500161 GrPixelConfig config = SkImageInfo2GrPixelConfig(origInfo, *context->caps());
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400162 // This method is used to create SkGpuDevice's for SkSurface_Gpus. In this case
163 // they need to be exact.
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400164 return context->makeDeferredRenderTargetContext(
165 SkBackingFit::kExact,
robertphillips6738c702016-07-27 12:13:51 -0700166 origInfo.width(), origInfo.height(),
Robert Phillips70b49fd2017-01-13 11:21:36 -0500167 config, origInfo.refColorSpace(), sampleCount,
Greg Daniel45d63032017-10-30 13:41:26 -0400168 mipMapped, origin, surfaceProps, budgeted);
kkinnunenabcfab42015-02-22 22:53:44 -0800169}
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000170
Mike Reeda1361362017-03-07 09:37:29 -0500171sk_sp<SkSpecialImage> SkGpuDevice::filterTexture(SkSpecialImage* srcImg,
robertphillips970587b2016-07-14 14:12:55 -0700172 int left, int top,
173 SkIPoint* offset,
174 const SkImageFilter* filter) {
175 SkASSERT(srcImg->isTextureBacked());
176 SkASSERT(filter);
177
Mike Reeda1361362017-03-07 09:37:29 -0500178 SkMatrix matrix = this->ctm();
robertphillips970587b2016-07-14 14:12:55 -0700179 matrix.postTranslate(SkIntToScalar(-left), SkIntToScalar(-top));
Mike Reeda1361362017-03-07 09:37:29 -0500180 const SkIRect clipBounds = this->devClipBounds().makeOffset(-left, -top);
Hal Canary144caf52016-11-07 17:57:18 -0500181 sk_sp<SkImageFilterCache> cache(this->getImageFilterCache());
Brian Salomonf3569f02017-10-24 12:52:33 -0400182 SkImageFilter::OutputProperties outputProperties(
183 fRenderTargetContext->colorSpaceInfo().colorSpace());
brianosman2a75e5d2016-09-22 07:15:37 -0700184 SkImageFilter::Context ctx(matrix, clipBounds, cache.get(), outputProperties);
robertphillips970587b2016-07-14 14:12:55 -0700185
186 return filter->filterImage(srcImg, ctx, offset);
187}
188
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000189///////////////////////////////////////////////////////////////////////////////
190
Mike Reed353196f2017-07-21 11:01:18 -0400191bool SkGpuDevice::onReadPixels(const SkPixmap& pm, int x, int y) {
joshualittce894002016-01-11 13:29:31 -0800192 ASSERT_SINGLE_OWNER
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000193
Mike Reed353196f2017-07-21 11:01:18 -0400194 if (!SkImageInfoValidConversion(pm.info(), this->imageInfo())) {
Matt Sarettcb6266b2017-01-17 10:48:53 -0500195 return false;
196 }
197
Mike Reed353196f2017-07-21 11:01:18 -0400198 SkReadPixelsRec rec(pm, x, y);
Matt Sarett03dd6d52017-01-23 12:15:09 -0500199 if (!rec.trim(this->width(), this->height())) {
200 return false;
201 }
202
203 return fRenderTargetContext->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000204}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000205
Mike Reed353196f2017-07-21 11:01:18 -0400206bool SkGpuDevice::onWritePixels(const SkPixmap& pm, int x, int y) {
joshualittce894002016-01-11 13:29:31 -0800207 ASSERT_SINGLE_OWNER
robertphillips1da3ecd2016-08-31 14:54:15 -0700208
Mike Reed353196f2017-07-21 11:01:18 -0400209 if (!SkImageInfoValidConversion(this->imageInfo(), pm.info())) {
Matt Sarettcb6266b2017-01-17 10:48:53 -0500210 return false;
211 }
212
Mike Reed353196f2017-07-21 11:01:18 -0400213 SkWritePixelsRec rec(pm, x, y);
Matt Sarett03dd6d52017-01-23 12:15:09 -0500214 if (!rec.trim(this->width(), this->height())) {
215 return false;
216 }
217
218 return fRenderTargetContext->writePixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000219}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000220
reed41e010c2015-06-09 12:16:53 -0700221bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) {
joshualittce894002016-01-11 13:29:31 -0800222 ASSERT_SINGLE_OWNER
reed41e010c2015-06-09 12:16:53 -0700223 return false;
224}
225
Brian Osman11052242016-10-27 14:47:55 -0400226GrRenderTargetContext* SkGpuDevice::accessRenderTargetContext() {
robertphillips175dd9b2016-04-28 14:32:04 -0700227 ASSERT_SINGLE_OWNER
Brian Osman11052242016-10-27 14:47:55 -0400228 return fRenderTargetContext.get();
robertphillips175dd9b2016-04-28 14:32:04 -0700229}
230
reed8eddfb52014-12-04 07:50:14 -0800231void SkGpuDevice::clearAll() {
joshualittce894002016-01-11 13:29:31 -0800232 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500233 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "clearAll", fContext.get());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500234
reed8eddfb52014-12-04 07:50:14 -0800235 SkIRect rect = SkIRect::MakeWH(this->width(), this->height());
Chris Dalton344e9032017-12-11 15:42:09 -0700236 fRenderTargetContext->clear(&rect, 0x0, GrRenderTargetContext::CanClearFullscreen::kYes);
reed8eddfb52014-12-04 07:50:14 -0800237}
238
Brian Osman11052242016-10-27 14:47:55 -0400239void SkGpuDevice::replaceRenderTargetContext(bool shouldRetainContent) {
joshualittce894002016-01-11 13:29:31 -0800240 ASSERT_SINGLE_OWNER
kkinnunenabcfab42015-02-22 22:53:44 -0800241
Brian Osman693a5402016-10-27 15:13:22 -0400242 SkBudgeted budgeted = fRenderTargetContext->priv().isBudgeted();
kkinnunenabcfab42015-02-22 22:53:44 -0800243
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400244 // This entry point is used by SkSurface_Gpu::onCopyOnWrite so it must create a
245 // kExact-backed render target context.
Brian Osman693a5402016-10-27 15:13:22 -0400246 sk_sp<GrRenderTargetContext> newRTC(MakeRenderTargetContext(
Brian Osman11052242016-10-27 14:47:55 -0400247 this->context(),
248 budgeted,
249 this->imageInfo(),
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400250 fRenderTargetContext->numColorSamples(),
251 fRenderTargetContext->origin(),
Greg Daniele252f082017-10-23 16:05:23 -0400252 &this->surfaceProps(),
253 fRenderTargetContext->mipMapped()));
Brian Osman693a5402016-10-27 15:13:22 -0400254 if (!newRTC) {
kkinnunenabcfab42015-02-22 22:53:44 -0800255 return;
256 }
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400257 SkASSERT(newRTC->asSurfaceProxy()->priv().isExact());
kkinnunenabcfab42015-02-22 22:53:44 -0800258
259 if (shouldRetainContent) {
Brian Osman11052242016-10-27 14:47:55 -0400260 if (fRenderTargetContext->wasAbandoned()) {
kkinnunenabcfab42015-02-22 22:53:44 -0800261 return;
262 }
Robert Phillipsf200a902017-01-30 13:27:37 -0500263 newRTC->copy(fRenderTargetContext->asSurfaceProxy());
kkinnunenabcfab42015-02-22 22:53:44 -0800264 }
265
Brian Osman693a5402016-10-27 15:13:22 -0400266 fRenderTargetContext = newRTC;
kkinnunenabcfab42015-02-22 22:53:44 -0800267}
268
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000269///////////////////////////////////////////////////////////////////////////////
270
Mike Reeda1361362017-03-07 09:37:29 -0500271void SkGpuDevice::drawPaint(const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800272 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500273 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPaint", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000274
275 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400276 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
277 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700278 return;
279 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000280
Brian Salomon0166cfd2017-03-13 17:58:25 -0400281 fRenderTargetContext->drawPaint(this->clip(), std::move(grPaint), this->ctm());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000282}
283
Brian Salomon1459ebd2017-12-19 16:12:44 -0500284static inline GrPrimitiveType point_mode_to_primitive_type(SkCanvas::PointMode mode) {
285 switch (mode) {
286 case SkCanvas::kPoints_PointMode:
287 return GrPrimitiveType::kPoints;
288 case SkCanvas::kLines_PointMode:
289 return GrPrimitiveType::kLines;
290 case SkCanvas::kPolygon_PointMode:
291 return GrPrimitiveType::kLineStrip;
292 }
293 SK_ABORT("Unexpected mode");
294 return GrPrimitiveType::kPoints;
295}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000296
Mike Reeda1361362017-03-07 09:37:29 -0500297void SkGpuDevice::drawPoints(SkCanvas::PointMode mode,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000298 size_t count, const SkPoint pts[], const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800299 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500300 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPoints", fContext.get());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000301 SkScalar width = paint.getStrokeWidth();
302 if (width < 0) {
303 return;
304 }
305
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000306 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) {
bsalomon6663acf2016-05-10 09:14:17 -0700307 GrStyle style(paint, SkPaint::kStroke_Style);
egdaniele61c4112014-06-12 10:24:21 -0700308 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400309 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
310 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700311 return;
312 }
egdaniele61c4112014-06-12 10:24:21 -0700313 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700314 path.setIsVolatile(true);
egdaniele61c4112014-06-12 10:24:21 -0700315 path.moveTo(pts[0]);
316 path.lineTo(pts[1]);
Chris Dalton3b51df12017-11-27 14:33:06 -0700317 fRenderTargetContext->drawPath(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
318 this->ctm(), path, style);
egdaniele61c4112014-06-12 10:24:21 -0700319 return;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000320 }
321
bsalomon6ade6dd2016-09-12 12:07:17 -0700322 SkScalar scales[2];
Mike Reeda1361362017-03-07 09:37:29 -0500323 bool isHairline = (0 == width) || (1 == width && this->ctm().getMinMaxScales(scales) &&
bsalomon6ade6dd2016-09-12 12:07:17 -0700324 SkScalarNearlyEqual(scales[0], 1.f) &&
325 SkScalarNearlyEqual(scales[1], 1.f));
ethannicholas330bb952015-07-17 06:44:02 -0700326 // we only handle non-antialiased hairlines and paints without path effects or mask filters,
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000327 // else we let the SkDraw call our drawPath()
Ethan Nicholas2d78bcd2017-06-08 10:11:53 -0400328 if (!isHairline || paint.getPathEffect() || paint.getMaskFilter() || paint.isAntiAlias()) {
Mike Reeda1361362017-03-07 09:37:29 -0500329 SkRasterClip rc(this->devClipBounds());
330 SkDraw draw;
331 draw.fDst = SkPixmap(SkImageInfo::MakeUnknown(this->width(), this->height()), nullptr, 0);
332 draw.fMatrix = &this->ctm();
333 draw.fRC = &rc;
Mike Reed99330ba2017-02-22 11:01:08 -0500334 draw.drawPoints(mode, count, pts, paint, this);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000335 return;
336 }
337
Brian Salomon1459ebd2017-12-19 16:12:44 -0500338 GrPrimitiveType primitiveType = point_mode_to_primitive_type(mode);
bsalomon6ade6dd2016-09-12 12:07:17 -0700339
Mike Reeda1361362017-03-07 09:37:29 -0500340 const SkMatrix* viewMatrix = &this->ctm();
bsalomon6ade6dd2016-09-12 12:07:17 -0700341#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
342 // This offsetting in device space matches the expectations of the Android framework for non-AA
343 // points and lines.
344 SkMatrix tempMatrix;
Chris Dalton3809bab2017-06-13 10:55:06 -0600345 if (GrIsPrimTypeLines(primitiveType) || GrPrimitiveType::kPoints == primitiveType) {
bsalomon6ade6dd2016-09-12 12:07:17 -0700346 tempMatrix = *viewMatrix;
347 static const SkScalar kOffset = 0.063f; // Just greater than 1/16.
348 tempMatrix.postTranslate(kOffset, kOffset);
349 viewMatrix = &tempMatrix;
350 }
351#endif
352
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000353 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400354 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
355 *viewMatrix, &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700356 return;
357 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000358
Brian Osmanae0c50c2017-05-25 16:56:34 -0400359 static constexpr SkVertices::VertexMode kIgnoredMode = SkVertices::kTriangles_VertexMode;
360 sk_sp<SkVertices> vertices = SkVertices::MakeCopy(kIgnoredMode, SkToS32(count), pts, nullptr,
361 nullptr);
362
363 fRenderTargetContext->drawVertices(this->clip(), std::move(grPaint), *viewMatrix,
364 std::move(vertices), &primitiveType);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000365}
366
367///////////////////////////////////////////////////////////////////////////////
368
Mike Reeda1361362017-03-07 09:37:29 -0500369void SkGpuDevice::drawRect(const SkRect& rect, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800370 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500371 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawRect", fContext.get());
bsalomona7d85ba2016-07-06 11:54:59 -0700372 // A couple reasons we might need to call drawPath.
373 if (paint.getMaskFilter() || paint.getPathEffect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000374 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700375 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000376 path.addRect(rect);
Hal Canary144caf52016-11-07 17:57:18 -0500377 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400378 this->clip(), path, paint, this->ctm(), nullptr,
Mike Reeda1361362017-03-07 09:37:29 -0500379 this->devClipBounds(), true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000380 return;
381 }
382
383 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400384 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
385 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700386 return;
387 }
Mike Klein744fb732014-06-23 15:13:26 -0400388
bsalomon6663acf2016-05-10 09:14:17 -0700389 GrStyle style(paint);
Chris Dalton3b51df12017-11-27 14:33:06 -0700390 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
391 this->ctm(), rect, &style);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000392}
393
394///////////////////////////////////////////////////////////////////////////////
395
Mike Reeda1361362017-03-07 09:37:29 -0500396void SkGpuDevice::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800397 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500398 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawRRect", fContext.get());
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000399 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400400 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
401 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700402 return;
403 }
Mike Klein744fb732014-06-23 15:13:26 -0400404
Mike Reed80747ef2018-01-23 15:29:32 -0500405 SkMaskFilterBase* mf = as_MFB(paint.getMaskFilter());
Mike Reedbfadcf02018-01-20 22:24:21 +0000406 if (mf) {
407 if (mf->hasFragmentProcessor()) {
408 mf = nullptr; // already handled in SkPaintToGrPaint
409 }
Robert Phillipsa29a9562016-10-20 09:40:55 -0400410 }
411
bsalomon6663acf2016-05-10 09:14:17 -0700412 GrStyle style(paint);
Robert Phillipsa29a9562016-10-20 09:40:55 -0400413 if (mf) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000414 // try to hit the fast path for drawing filtered round rects
415
416 SkRRect devRRect;
Mike Reeda1361362017-03-07 09:37:29 -0500417 if (rrect.transform(this->ctm(), &devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000418 if (devRRect.allCornersCircular()) {
Brian Osmane191ce62017-09-14 15:43:50 -0400419 if (mf->canFilterMaskGPU(devRRect, this->devClipBounds(), this->ctm(), nullptr)) {
Robert Phillips26c90e02017-03-14 14:39:29 -0400420 if (mf->directFilterRRectMaskGPU(this->context(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400421 std::move(grPaint), this->clip(), this->ctm(),
Hal Canary144caf52016-11-07 17:57:18 -0500422 style.strokeRec(), rrect, devRRect)) {
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000423 return;
424 }
425 }
426
427 }
428 }
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000429 }
430
Robert Phillipsa29a9562016-10-20 09:40:55 -0400431 if (mf || style.pathEffect()) {
robertphillipsff55b492015-11-24 07:56:59 -0800432 // The only mask filter the native rrect drawing code could've handle was taken
433 // care of above.
434 // A path effect will presumably transform this rrect into something else.
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000435 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700436 path.setIsVolatile(true);
robertphillips9aff85a2016-08-05 07:51:29 -0700437 path.addRRect(rrect);
Hal Canary144caf52016-11-07 17:57:18 -0500438 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(),
Brian Salomon0166cfd2017-03-13 17:58:25 -0400439 this->clip(), path, paint, this->ctm(), nullptr,
Mike Reeda1361362017-03-07 09:37:29 -0500440 this->devClipBounds(), true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000441 return;
442 }
Mike Klein744fb732014-06-23 15:13:26 -0400443
bsalomon6663acf2016-05-10 09:14:17 -0700444 SkASSERT(!style.pathEffect());
robertphillips514450c2015-11-24 05:36:02 -0800445
Chris Dalton3b51df12017-11-27 14:33:06 -0700446 fRenderTargetContext->drawRRect(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
447 this->ctm(), rrect, style);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000448}
449
robertphillipsd7706102016-02-25 09:28:08 -0800450
Mike Reeda1361362017-03-07 09:37:29 -0500451void SkGpuDevice::drawDRRect(const SkRRect& outer,
joshualitt5531d512014-12-17 15:50:11 -0800452 const SkRRect& inner, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800453 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500454 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawDRRect", fContext.get());
robertphillipsd7706102016-02-25 09:28:08 -0800455 if (outer.isEmpty()) {
456 return;
457 }
458
459 if (inner.isEmpty()) {
Mike Reeda1361362017-03-07 09:37:29 -0500460 return this->drawRRect(outer, paint);
robertphillipsd7706102016-02-25 09:28:08 -0800461 }
462
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000463 SkStrokeRec stroke(paint);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000464
robertphillips0e7029e2015-11-30 05:45:06 -0800465 if (stroke.isFillStyle() && !paint.getMaskFilter() && !paint.getPathEffect()) {
robertphillips00095892016-02-29 13:50:40 -0800466 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400467 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
468 this->ctm(), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -0700469 return;
470 }
robertphillips00095892016-02-29 13:50:40 -0800471
Brian Salomon0166cfd2017-03-13 17:58:25 -0400472 fRenderTargetContext->drawDRRect(this->clip(), std::move(grPaint),
Chris Dalton3b51df12017-11-27 14:33:06 -0700473 GrAA(paint.isAntiAlias()), this->ctm(), outer, inner);
robertphillips00095892016-02-29 13:50:40 -0800474 return;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000475 }
476
477 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700478 path.setIsVolatile(true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000479 path.addRRect(outer);
480 path.addRRect(inner);
481 path.setFillType(SkPath::kEvenOdd_FillType);
482
Brian Salomon0166cfd2017-03-13 17:58:25 -0400483 GrBlurUtils::drawPathWithMaskFilter(fContext.get(), fRenderTargetContext.get(), this->clip(),
484 path, paint, this->ctm(), nullptr, this->devClipBounds(),
485 true);
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000486}
487
488
commit-bot@chromium.org82139702014-03-10 22:53:20 +0000489/////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000490
Mike Reeda1361362017-03-07 09:37:29 -0500491void SkGpuDevice::drawRegion(const SkRegion& region, const SkPaint& paint) {
msarettcc319b92016-08-25 18:07:18 -0700492 if (paint.getMaskFilter()) {
493 SkPath path;
494 region.getBoundaryPath(&path);
Mike Reeda1361362017-03-07 09:37:29 -0500495 return this->drawPath(path, paint, nullptr, false);
msarettcc319b92016-08-25 18:07:18 -0700496 }
497
498 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400499 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
500 this->ctm(), &grPaint)) {
msarettcc319b92016-08-25 18:07:18 -0700501 return;
502 }
503
Chris Dalton3b51df12017-11-27 14:33:06 -0700504 fRenderTargetContext->drawRegion(this->clip(), std::move(grPaint), GrAA(paint.isAntiAlias()),
505 this->ctm(), region, GrStyle(paint));
msarettcc319b92016-08-25 18:07:18 -0700506}
507
Mike Reeda1361362017-03-07 09:37:29 -0500508void SkGpuDevice::drawOval(const SkRect& oval, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -0800509 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -0500510 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawOval", fContext.get());
robertphillips514450c2015-11-24 05:36:02 -0800511 // Presumably the path effect warps this to something other than an oval
512 if (paint.getPathEffect()) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000513 SkPath path;
jvanverthb3eb6872014-10-24 07:12:51 -0700514 path.setIsVolatile(true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000515 path.addOval(oval);
Mike Reeda1361362017-03-07 09:37:29 -0500516 this->drawPath(path, paint, nullptr, true);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000517 return;
herb11a7f7f2015-11-24 12:41:00 -0800518 }
519
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
bsalomon8c07b7a2015-11-02 11:36:52 -0800778 int maxTileSize = fContext->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
bsalomonb1b01992015-11-18 10:56:08 -0800798 int maxTileSize = fContext->caps()->maxTileSize();
799
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
830 int maxTileSizeForFilter = fContext->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);
bsalomonf1ecd212015-12-09 17:06:02 -0800841 this->drawTextureProducer(&maker, nullptr, nullptr, SkCanvas::kStrict_SrcRectConstraint,
Brian Salomon34169692017-08-28 15:32:01 -0400842 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.
977 SkASSERT(bitmap.width() <= fContext->caps()->maxTextureSize() &&
978 bitmap.height() <= fContext->caps()->maxTextureSize());
reedc7ec7c92016-07-25 08:29:10 -0700979 // We should be respecting the max tile size by the time we get here.
980 SkASSERT(bitmap.width() <= fContext->caps()->maxTileSize() &&
981 bitmap.height() <= fContext->caps()->maxTileSize());
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400982 SkASSERT(!samplerState.isRepeated());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000983
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400984 sk_sp<GrTextureProxy> proxy =
985 GrRefCachedBitmapTextureProxy(fContext.get(), bitmap, samplerState, nullptr);
Robert Phillips78075802017-03-23 11:11:59 -0400986 if (!proxy) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +0000987 return;
988 }
bsalomone553b642016-08-17 09:02:09 -0700989
bsalomone553b642016-08-17 09:02:09 -0700990 // Compute a matrix that maps the rect we will draw to the src rect.
Robert Phillipse14d3052017-02-15 13:18:21 -0500991 const SkMatrix texMatrix = SkMatrix::MakeRectToRect(dstRect, srcRect,
992 SkMatrix::kFill_ScaleToFit);
joshualitt5f10b5c2015-07-09 10:24:35 -0700993
994 // Construct a GrPaint by setting the bitmap texture as the first effect and then configuring
995 // the rest from the SkPaint.
Brian Salomonaff329b2017-08-11 09:40:37 -0400996 std::unique_ptr<GrFragmentProcessor> fp;
Brian Osmanf06ead92017-10-30 13:47:41 -0400997 GrPixelConfig config = proxy->config();
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 Osmanf06ead92017-10-30 13:47:41 -04001028 fp = GrColorSpaceXformEffect::Make(std::move(fp), bitmap.colorSpace(), config,
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
robertphillips970587b2016-07-14 14:12:55 -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,
1062 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()) {
Mike Reeda1361362017-03-07 09:37:29 -05001072 result = this->filterTexture(special1, left, top,
robertphillips970587b2016-07-14 14:12:55 -07001073 &offset,
1074 paint.getImageFilter());
1075 if (!result) {
1076 return;
1077 }
1078 } else {
1079 result = sk_ref_sp(special1);
1080 }
1081
1082 SkASSERT(result->isTextureBacked());
Robert Phillips2c6d2bf2017-02-21 10:19:29 -05001083 sk_sp<GrTextureProxy> proxy = result->asTextureProxyRef(this->context());
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001084 if (!proxy) {
Robert Phillips833dcf42016-11-18 08:44:13 -05001085 return;
1086 }
robertphillips970587b2016-07-14 14:12:55 -07001087
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001088 const GrPixelConfig config = proxy->config();
1089
robertphillips970587b2016-07-14 14:12:55 -07001090 SkPaint tmpUnfiltered(paint);
Mike Reed2179b782018-02-07 11:59:57 -05001091 if (tmpUnfiltered.getMaskFilter()) {
1092 SkMatrix ctm = this->ctm();
1093 ctm.postTranslate(-SkIntToScalar(left + offset.fX), -SkIntToScalar(top + offset.fY));
1094 tmpUnfiltered.setMaskFilter(tmpUnfiltered.getMaskFilter()->makeWithLocalMatrix(ctm));
1095 }
1096
robertphillips970587b2016-07-14 14:12:55 -07001097 tmpUnfiltered.setImageFilter(nullptr);
1098
Brian Osman2240be92017-10-18 13:15:13 -04001099 auto fp = GrSimpleTextureEffect::Make(std::move(proxy), SkMatrix::I());
Brian Osmanf06ead92017-10-30 13:47:41 -04001100 fp = GrColorSpaceXformEffect::Make(std::move(fp), result->getColorSpace(), config,
Brian Salomonf3569f02017-10-24 12:52:33 -04001101 fRenderTargetContext->colorSpaceInfo().colorSpace());
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001102 if (GrPixelConfigIsAlphaOnly(config)) {
Brian Salomon22af73f2017-01-26 11:25:12 -05001103 fp = GrFragmentProcessor::MakeInputPremulAndMulByOutput(std::move(fp));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001104 } else {
Mike Reed28eaed22018-02-01 11:24:53 -05001105 fp = GrFragmentProcessor::MulChildByInputAlpha(std::move(fp));
bsalomonf1b7a1d2015-09-28 06:26:28 -07001106 }
Robert Phillips8e1c4e62017-02-19 12:27:01 -05001107
1108 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -04001109 if (!SkPaintToGrPaintReplaceShader(this->context(), fRenderTargetContext->colorSpaceInfo(),
1110 tmpUnfiltered, std::move(fp), &grPaint)) {
bsalomonbed83a62015-04-15 14:18:34 -07001111 return;
1112 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001113
robertphillips970587b2016-07-14 14:12:55 -07001114 const SkIRect& subset = result->subset();
1115
Brian Salomon82f44312017-01-11 13:42:54 -05001116 fRenderTargetContext->fillRectToRect(
Brian Salomon0166cfd2017-03-13 17:58:25 -04001117 this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -05001118 std::move(grPaint),
Mike Reed2179b782018-02-07 11:59:57 -05001119 GrAA(tmpUnfiltered.isAntiAlias()),
Brian Salomon82f44312017-01-11 13:42:54 -05001120 SkMatrix::I(),
Brian Salomon0166cfd2017-03-13 17:58:25 -04001121 SkRect::Make(SkIRect::MakeXYWH(left + offset.fX, top + offset.fY, subset.width(),
1122 subset.height())),
Robert Phillips67c18d62017-01-20 12:44:06 -05001123 SkRect::Make(subset));
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001124}
1125
Mike Reeda1361362017-03-07 09:37:29 -05001126void SkGpuDevice::drawBitmapRect(const SkBitmap& bitmap,
bsalomonb1b01992015-11-18 10:56:08 -08001127 const SkRect* src, const SkRect& origDst,
reed562fe472015-07-28 07:35:14 -07001128 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
joshualittce894002016-01-11 13:29:31 -08001129 ASSERT_SINGLE_OWNER
bsalomonb1b01992015-11-18 10:56:08 -08001130 // The src rect is inferred to be the bmp bounds if not provided. Otherwise, the src rect must
1131 // be clipped to the bmp bounds. To determine tiling parameters we need the filter mode which
1132 // in turn requires knowing the src-to-dst mapping. If the src was clipped to the bmp bounds
1133 // then we use the src-to-dst mapping to compute a new clipped dst rect.
1134 const SkRect* dst = &origDst;
1135 const SkRect bmpBounds = SkRect::MakeIWH(bitmap.width(), bitmap.height());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001136 // Compute matrix from the two rectangles
bsalomonb1b01992015-11-18 10:56:08 -08001137 if (!src) {
1138 src = &bmpBounds;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001139 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001140
bsalomonb1b01992015-11-18 10:56:08 -08001141 SkMatrix srcToDstMatrix;
1142 if (!srcToDstMatrix.setRectToRect(*src, *dst, SkMatrix::kFill_ScaleToFit)) {
1143 return;
1144 }
1145 SkRect tmpSrc, tmpDst;
1146 if (src != &bmpBounds) {
1147 if (!bmpBounds.contains(*src)) {
1148 tmpSrc = *src;
1149 if (!tmpSrc.intersect(bmpBounds)) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001150 return; // nothing to draw
1151 }
bsalomonb1b01992015-11-18 10:56:08 -08001152 src = &tmpSrc;
1153 srcToDstMatrix.mapRect(&tmpDst, *src);
1154 dst = &tmpDst;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001155 }
1156 }
1157
bsalomonb1b01992015-11-18 10:56:08 -08001158 int maxTileSize = fContext->caps()->maxTileSize();
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001159
bsalomonb1b01992015-11-18 10:56:08 -08001160 // The tile code path doesn't currently support AA, so if the paint asked for aa and we could
1161 // draw untiled, then we bypass checking for tiling purely for optimization reasons.
Brian Salomon7c8460e2017-05-12 11:36:10 -04001162 bool useCoverageAA = GrFSAAType::kUnifiedMSAA != fRenderTargetContext->fsaaType() &&
1163 paint.isAntiAlias() && bitmap.width() <= maxTileSize &&
1164 bitmap.height() <= maxTileSize;
bsalomonb1b01992015-11-18 10:56:08 -08001165
Brian Salomon7c8460e2017-05-12 11:36:10 -04001166 bool skipTileCheck = useCoverageAA || paint.getMaskFilter();
bsalomonb1b01992015-11-18 10:56:08 -08001167
1168 if (!skipTileCheck) {
1169 int tileSize;
1170 SkIRect clippedSrcRect;
1171
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001172 GrSamplerState sampleState;
bsalomonb1b01992015-11-18 10:56:08 -08001173 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001174 GrSamplerState::Filter textureFilterMode = GrSkFilterQualityToGrFilterMode(
Brian Osmandb78cba2018-02-15 10:09:48 -05001175 paint.getFilterQuality(), this->ctm(), srcToDstMatrix,
1176 fContext->contextPriv().sharpenMipmappedTextures(), &doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -08001177
1178 int tileFilterPad;
1179
1180 if (doBicubic) {
1181 tileFilterPad = GrBicubicEffect::kFilterTexelPad;
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001182 } else if (GrSamplerState::Filter::kNearest == textureFilterMode) {
bsalomonb1b01992015-11-18 10:56:08 -08001183 tileFilterPad = 0;
1184 } else {
1185 tileFilterPad = 1;
1186 }
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001187 sampleState.setFilterMode(textureFilterMode);
bsalomonb1b01992015-11-18 10:56:08 -08001188
1189 int maxTileSizeForFilter = fContext->caps()->maxTileSize() - 2 * tileFilterPad;
Mike Reeda1361362017-03-07 09:37:29 -05001190 if (this->shouldTileImageID(bitmap.getGenerationID(), bitmap.getSubset(), this->ctm(),
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001191 srcToDstMatrix, sampleState, src, maxTileSizeForFilter,
1192 &tileSize, &clippedSrcRect)) {
Mike Reeda1361362017-03-07 09:37:29 -05001193 this->drawTiledBitmap(bitmap, this->ctm(), srcToDstMatrix, *src, clippedSrcRect,
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001194 sampleState, paint, constraint, tileSize, doBicubic);
bsalomonb1b01992015-11-18 10:56:08 -08001195 return;
1196 }
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +00001197 }
Hal Canary144caf52016-11-07 17:57:18 -05001198 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Brian Salomon34169692017-08-28 15:32:01 -04001199 this->drawTextureProducer(&maker, src, dst, constraint, this->ctm(), paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001200}
1201
robertphillips6451a0c2016-07-18 08:31:31 -07001202sk_sp<SkSpecialImage> SkGpuDevice::makeSpecial(const SkBitmap& bitmap) {
Robert Phillipse14d3052017-02-15 13:18:21 -05001203 // TODO: this makes a tight copy of 'bitmap' but it doesn't have to be (given SkSpecialImage's
1204 // semantics). Since this is cached we would have to bake the fit into the cache key though.
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001205 sk_sp<GrTextureProxy> proxy = GrMakeCachedBitmapProxy(fContext->contextPriv().proxyProvider(),
1206 bitmap);
Robert Phillipse14d3052017-02-15 13:18:21 -05001207 if (!proxy) {
robertphillips6451a0c2016-07-18 08:31:31 -07001208 return nullptr;
1209 }
1210
Robert Phillipse14d3052017-02-15 13:18:21 -05001211 const SkIRect rect = SkIRect::MakeWH(proxy->width(), proxy->height());
robertphillips6451a0c2016-07-18 08:31:31 -07001212
Robert Phillipse14d3052017-02-15 13:18:21 -05001213 // GrMakeCachedBitmapProxy creates a tight copy of 'bitmap' so we don't have to subset
1214 // the special image
1215 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1216 rect,
1217 bitmap.getGenerationID(),
1218 std::move(proxy),
1219 bitmap.refColorSpace(),
1220 &this->surfaceProps());
robertphillips6451a0c2016-07-18 08:31:31 -07001221}
1222
reede51c3562016-07-19 14:33:20 -07001223sk_sp<SkSpecialImage> SkGpuDevice::makeSpecial(const SkImage* image) {
robertphillips6451a0c2016-07-18 08:31:31 -07001224 SkPixmap pm;
1225 if (image->isTextureBacked()) {
Robert Phillips6de99042017-01-31 11:31:39 -05001226 sk_sp<GrTextureProxy> proxy = as_IB(image)->asTextureProxyRef();
robertphillips6451a0c2016-07-18 08:31:31 -07001227
Robert Phillips6de99042017-01-31 11:31:39 -05001228 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1229 SkIRect::MakeWH(image->width(), image->height()),
1230 image->uniqueID(),
1231 std::move(proxy),
1232 as_IB(image)->onImageInfo().refColorSpace(),
1233 &this->surfaceProps());
robertphillips6451a0c2016-07-18 08:31:31 -07001234 } else if (image->peekPixels(&pm)) {
1235 SkBitmap bm;
1236
1237 bm.installPixels(pm);
1238 return this->makeSpecial(bm);
1239 } else {
1240 return nullptr;
1241 }
1242}
1243
1244sk_sp<SkSpecialImage> SkGpuDevice::snapSpecial() {
Robert Phillips63c67462017-02-15 14:19:01 -05001245 sk_sp<GrTextureProxy> proxy(this->accessRenderTargetContext()->asTextureProxyRef());
1246 if (!proxy) {
robertphillips04d62182016-07-15 12:21:33 -07001247 // When the device doesn't have a texture, we create a temporary texture.
1248 // TODO: we should actually only copy the portion of the source needed to apply the image
1249 // filter
Robert Phillips63c67462017-02-15 14:19:01 -05001250 proxy = GrSurfaceProxy::Copy(fContext.get(),
1251 this->accessRenderTargetContext()->asSurfaceProxy(),
Greg Daniel65c7f662017-10-30 13:39:09 -04001252 GrMipMapped::kNo,
Robert Phillips63c67462017-02-15 14:19:01 -05001253 SkBudgeted::kYes);
1254 if (!proxy) {
robertphillips04d62182016-07-15 12:21:33 -07001255 return nullptr;
1256 }
robertphillips1b5f9682016-07-15 08:01:12 -07001257 }
1258
1259 const SkImageInfo ii = this->imageInfo();
1260 const SkIRect srcRect = SkIRect::MakeWH(ii.width(), ii.height());
1261
Robert Phillipse2f7d182016-12-15 09:23:05 -05001262 return SkSpecialImage::MakeDeferredFromGpu(fContext.get(),
1263 srcRect,
1264 kNeedNewImageUniqueID_SpecialImage,
Robert Phillips63c67462017-02-15 14:19:01 -05001265 std::move(proxy),
Robert Phillips70b49fd2017-01-13 11:21:36 -05001266 ii.refColorSpace(),
Robert Phillipse2f7d182016-12-15 09:23:05 -05001267 &this->surfaceProps());
robertphillips1b5f9682016-07-15 08:01:12 -07001268}
1269
Mike Reeda1361362017-03-07 09:37:29 -05001270void SkGpuDevice::drawDevice(SkBaseDevice* device,
Mike Reed2179b782018-02-07 11:59:57 -05001271 int left, int top, const SkPaint& paint) {
1272 SkASSERT(!paint.getImageFilter());
reedcf5c8462016-07-20 12:28:40 -07001273
joshualittce894002016-01-11 13:29:31 -08001274 ASSERT_SINGLE_OWNER
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001275 // clear of the source device must occur before CHECK_SHOULD_DRAW
Hal Canary144caf52016-11-07 17:57:18 -05001276 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawDevice", fContext.get());
kkinnunen2e4414e2015-02-19 07:20:40 -08001277
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001278 // drawDevice is defined to be in device coords.
robertphillips1b5f9682016-07-15 08:01:12 -07001279 SkGpuDevice* dev = static_cast<SkGpuDevice*>(device);
robertphillips6451a0c2016-07-18 08:31:31 -07001280 sk_sp<SkSpecialImage> srcImg(dev->snapSpecial());
robertphillips1b5f9682016-07-15 08:01:12 -07001281 if (!srcImg) {
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001282 return;
1283 }
1284
Mike Reed2179b782018-02-07 11:59:57 -05001285 this->drawSpecial(srcImg.get(), left, top, paint, nullptr, SkMatrix::I());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001286}
1287
Brian Salomon34169692017-08-28 15:32:01 -04001288void SkGpuDevice::drawImage(const SkImage* image, SkScalar x, SkScalar y, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001289 ASSERT_SINGLE_OWNER
Mike Reeda1361362017-03-07 09:37:29 -05001290 SkMatrix viewMatrix = this->ctm();
bsalomon1cf6f9b2015-12-08 10:53:43 -08001291 viewMatrix.preTranslate(x, y);
reed2d5b7142016-08-17 11:12:33 -07001292 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001293 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon34169692017-08-28 15:32:01 -04001294 this->drawPinnedTextureProxy(std::move(proxy), pinnedUniqueID, as_IB(image)->colorSpace(),
1295 image->alphaType(), nullptr, nullptr,
1296 SkCanvas::kFast_SrcRectConstraint, viewMatrix, paint);
bsalomonc55271f2015-11-09 11:55:57 -08001297 return;
Brian Salomon34169692017-08-28 15:32:01 -04001298 }
1299 SkBitmap bm;
1300 if (this->shouldTileImage(image, nullptr, SkCanvas::kFast_SrcRectConstraint,
1301 paint.getFilterQuality(), viewMatrix, SkMatrix::I())) {
1302 // only support tiling as bitmap at the moment, so force raster-version
Brian Salomonf3569f02017-10-24 12:52:33 -04001303 if (!as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Brian Salomon34169692017-08-28 15:32:01 -04001304 return;
reed85d91782015-09-10 14:33:38 -07001305 }
Brian Salomon34169692017-08-28 15:32:01 -04001306 this->drawBitmap(bm, x, y, paint);
1307 return;
1308 }
1309 if (image->isLazyGenerated()) {
1310 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
1311 this->drawTextureMaker(&maker, image->width(), image->height(), nullptr, nullptr,
1312 SkCanvas::kFast_SrcRectConstraint, viewMatrix, paint);
1313 return;
1314 }
Brian Salomonf3569f02017-10-24 12:52:33 -04001315 if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Brian Salomon34169692017-08-28 15:32:01 -04001316 GrBitmapTextureMaker maker(fContext.get(), bm);
1317 this->drawTextureMaker(&maker, image->width(), image->height(), nullptr, nullptr,
1318 SkCanvas::kFast_SrcRectConstraint, viewMatrix, paint);
reeda85d4d02015-05-06 12:56:48 -07001319 }
1320}
1321
Brian Salomon34169692017-08-28 15:32:01 -04001322void SkGpuDevice::drawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
1323 const SkPaint& paint, SkCanvas::SrcRectConstraint constraint) {
joshualittce894002016-01-11 13:29:31 -08001324 ASSERT_SINGLE_OWNER
reed2d5b7142016-08-17 11:12:33 -07001325 uint32_t pinnedUniqueID;
Brian Salomon34169692017-08-28 15:32:01 -04001326 if (!src || src->contains(image->bounds())) {
1327 constraint = SkCanvas::kFast_SrcRectConstraint;
1328 }
Robert Phillips3798c862017-03-27 11:08:16 -04001329 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon34169692017-08-28 15:32:01 -04001330 this->drawPinnedTextureProxy(std::move(proxy), pinnedUniqueID, as_IB(image)->colorSpace(),
1331 image->alphaType(), src, &dst, constraint, this->ctm(), paint);
bsalomonc55271f2015-11-09 11:55:57 -08001332 return;
1333 }
1334 SkBitmap bm;
bsalomone553b642016-08-17 09:02:09 -07001335 SkMatrix srcToDstRect;
1336 srcToDstRect.setRectToRect((src ? *src : SkRect::MakeIWH(image->width(), image->height())),
1337 dst, SkMatrix::kFill_ScaleToFit);
Mike Reeda1361362017-03-07 09:37:29 -05001338 if (this->shouldTileImage(image, src, constraint, paint.getFilterQuality(), this->ctm(),
bsalomone553b642016-08-17 09:02:09 -07001339 srcToDstRect)) {
bsalomonc55271f2015-11-09 11:55:57 -08001340 // only support tiling as bitmap at the moment, so force raster-version
Brian Salomonf3569f02017-10-24 12:52:33 -04001341 if (!as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
bsalomonc55271f2015-11-09 11:55:57 -08001342 return;
1343 }
Mike Reeda1361362017-03-07 09:37:29 -05001344 this->drawBitmapRect(bm, src, dst, paint, constraint);
Brian Salomon34169692017-08-28 15:32:01 -04001345 return;
1346 }
1347 if (image->isLazyGenerated()) {
Brian Osmandf7e0752017-04-26 16:20:28 -04001348 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
Brian Salomon34169692017-08-28 15:32:01 -04001349 this->drawTextureMaker(&maker, image->width(), image->height(), src, &dst, constraint,
1350 this->ctm(), paint);
1351 return;
1352 }
Brian Salomonf3569f02017-10-24 12:52:33 -04001353 if (as_IB(image)->getROPixels(&bm, fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Derek Sollenbergerdbb9e362017-08-11 14:18:59 -04001354 GrBitmapTextureMaker maker(fContext.get(), bm);
Brian Salomon34169692017-08-28 15:32:01 -04001355 this->drawTextureMaker(&maker, image->width(), image->height(), src, &dst, constraint,
1356 this->ctm(), paint);
reeda85d4d02015-05-06 12:56:48 -07001357 }
bsalomon1cf6f9b2015-12-08 10:53:43 -08001358}
1359
Mike Reeda1361362017-03-07 09:37:29 -05001360void SkGpuDevice::drawProducerNine(GrTextureProducer* producer,
bsalomon2bbd0c62015-12-09 12:50:56 -08001361 const SkIRect& center, const SkRect& dst, const SkPaint& paint) {
Hal Canary144caf52016-11-07 17:57:18 -05001362 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawProducerNine", fContext.get());
joshualitt33a5fce2015-11-18 13:28:51 -08001363
joshualittedb36442015-11-19 14:29:30 -08001364 bool useFallback = paint.getMaskFilter() || paint.isAntiAlias() ||
Brian Salomon7c8460e2017-05-12 11:36:10 -04001365 GrFSAAType::kUnifiedMSAA == fRenderTargetContext->fsaaType();
joshualitt33a5fce2015-11-18 13:28:51 -08001366 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001367 GrSamplerState::Filter textureFilterMode = GrSkFilterQualityToGrFilterMode(
Brian Osmandb78cba2018-02-15 10:09:48 -05001368 paint.getFilterQuality(), this->ctm(), SkMatrix::I(),
1369 fContext->contextPriv().sharpenMipmappedTextures(), &doBicubic);
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001370 if (useFallback || doBicubic || GrSamplerState::Filter::kNearest != textureFilterMode) {
msarettc573a402016-08-02 08:05:56 -07001371 SkLatticeIter iter(producer->width(), producer->height(), center, dst);
joshualitt33a5fce2015-11-18 13:28:51 -08001372
1373 SkRect srcR, dstR;
1374 while (iter.next(&srcR, &dstR)) {
erikchen9a1ed5d2016-02-10 16:32:34 -08001375 this->drawTextureProducer(producer, &srcR, &dstR, SkCanvas::kStrict_SrcRectConstraint,
Brian Salomon34169692017-08-28 15:32:01 -04001376 this->ctm(), paint);
joshualitt33a5fce2015-11-18 13:28:51 -08001377 }
1378 return;
1379 }
1380
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001381 static const GrSamplerState::Filter kMode = GrSamplerState::Filter::kNearest;
Brian Salomonaff329b2017-08-11 09:40:37 -04001382 auto fp = producer->createFragmentProcessor(
1383 SkMatrix::I(), SkRect::MakeIWH(producer->width(), producer->height()),
1384 GrTextureProducer::kNo_FilterConstraint, true, &kMode,
Brian Salomonf3569f02017-10-24 12:52:33 -04001385 fRenderTargetContext->colorSpaceInfo().colorSpace());
Robert Phillips1c9686b2017-06-30 08:40:28 -04001386 if (!fp) {
1387 return;
1388 }
joshualitt33a5fce2015-11-18 13:28:51 -08001389 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -04001390 if (!SkPaintToGrPaintWithTexture(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
Mike Reeda1361362017-03-07 09:37:29 -05001391 this->ctm(), std::move(fp), producer->isAlphaOnly(),
Brian Osman11052242016-10-27 14:47:55 -04001392 &grPaint)) {
joshualitt33a5fce2015-11-18 13:28:51 -08001393 return;
1394 }
1395
msarett10e3d9b2016-08-18 15:46:03 -07001396 std::unique_ptr<SkLatticeIter> iter(
1397 new SkLatticeIter(producer->width(), producer->height(), center, dst));
Brian Salomon0166cfd2017-03-13 17:58:25 -04001398 fRenderTargetContext->drawImageLattice(this->clip(), std::move(grPaint), this->ctm(),
Brian Salomon82f44312017-01-11 13:42:54 -05001399 producer->width(), producer->height(), std::move(iter),
1400 dst);
bsalomon2bbd0c62015-12-09 12:50:56 -08001401}
1402
Mike Reeda1361362017-03-07 09:37:29 -05001403void SkGpuDevice::drawImageNine(const SkImage* image,
bsalomon2bbd0c62015-12-09 12:50:56 -08001404 const SkIRect& center, const SkRect& dst, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001405 ASSERT_SINGLE_OWNER
reed2d5b7142016-08-17 11:12:33 -07001406 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001407 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon4df00922017-09-07 16:34:11 +00001408 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
Greg Danielc77085d2017-11-01 16:38:48 -04001409 image->alphaType(), pinnedUniqueID,
1410 as_IB(image)->onImageInfo().colorSpace());
Mike Reeda1361362017-03-07 09:37:29 -05001411 this->drawProducerNine(&adjuster, center, dst, paint);
bsalomon2bbd0c62015-12-09 12:50:56 -08001412 } else {
1413 SkBitmap bm;
Brian Osmandf7e0752017-04-26 16:20:28 -04001414 if (image->isLazyGenerated()) {
1415 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
Mike Reeda1361362017-03-07 09:37:29 -05001416 this->drawProducerNine(&maker, center, dst, paint);
Brian Salomonf3569f02017-10-24 12:52:33 -04001417 } else if (as_IB(image)->getROPixels(&bm,
1418 fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Mike Reeda1361362017-03-07 09:37:29 -05001419 this->drawBitmapNine(bm, center, dst, paint);
bsalomon2bbd0c62015-12-09 12:50:56 -08001420 }
1421 }
1422}
1423
Mike Reeda1361362017-03-07 09:37:29 -05001424void SkGpuDevice::drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
bsalomon2bbd0c62015-12-09 12:50:56 -08001425 const SkRect& dst, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001426 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001427 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Mike Reeda1361362017-03-07 09:37:29 -05001428 this->drawProducerNine(&maker, center, dst, paint);
joshualitt33a5fce2015-11-18 13:28:51 -08001429}
1430
Mike Reeda1361362017-03-07 09:37:29 -05001431void SkGpuDevice::drawProducerLattice(GrTextureProducer* producer,
msarett10e3d9b2016-08-18 15:46:03 -07001432 const SkCanvas::Lattice& lattice, const SkRect& dst,
1433 const SkPaint& paint) {
Hal Canary144caf52016-11-07 17:57:18 -05001434 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawProducerLattice", fContext.get());
msarett10e3d9b2016-08-18 15:46:03 -07001435
Brian Salomon2bbdcc42017-09-07 12:36:34 -04001436 static const GrSamplerState::Filter kMode = GrSamplerState::Filter::kNearest;
Brian Salomonaff329b2017-08-11 09:40:37 -04001437 std::unique_ptr<GrFragmentProcessor> fp(producer->createFragmentProcessor(
1438 SkMatrix::I(), SkRect::MakeIWH(producer->width(), producer->height()),
1439 GrTextureProducer::kNo_FilterConstraint, true, &kMode,
Brian Salomonf3569f02017-10-24 12:52:33 -04001440 fRenderTargetContext->colorSpaceInfo().colorSpace()));
Robert Phillips1c9686b2017-06-30 08:40:28 -04001441 if (!fp) {
1442 return;
1443 }
msarett10e3d9b2016-08-18 15:46:03 -07001444 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -04001445 if (!SkPaintToGrPaintWithTexture(this->context(), fRenderTargetContext->colorSpaceInfo(), paint,
Mike Reeda1361362017-03-07 09:37:29 -05001446 this->ctm(), std::move(fp), producer->isAlphaOnly(),
Brian Osman11052242016-10-27 14:47:55 -04001447 &grPaint)) {
msarett10e3d9b2016-08-18 15:46:03 -07001448 return;
1449 }
1450
1451 std::unique_ptr<SkLatticeIter> iter(
msarett71df2d72016-09-30 12:41:42 -07001452 new SkLatticeIter(lattice, dst));
Brian Salomon0166cfd2017-03-13 17:58:25 -04001453 fRenderTargetContext->drawImageLattice(this->clip(), std::move(grPaint), this->ctm(),
Brian Salomon82f44312017-01-11 13:42:54 -05001454 producer->width(), producer->height(), std::move(iter),
1455 dst);
msarett10e3d9b2016-08-18 15:46:03 -07001456}
1457
Mike Reeda1361362017-03-07 09:37:29 -05001458void SkGpuDevice::drawImageLattice(const SkImage* image,
msarett10e3d9b2016-08-18 15:46:03 -07001459 const SkCanvas::Lattice& lattice, const SkRect& dst,
1460 const SkPaint& paint) {
1461 ASSERT_SINGLE_OWNER
1462 uint32_t pinnedUniqueID;
Robert Phillips3798c862017-03-27 11:08:16 -04001463 if (sk_sp<GrTextureProxy> proxy = as_IB(image)->refPinnedTextureProxy(&pinnedUniqueID)) {
Brian Salomon4df00922017-09-07 16:34:11 +00001464 GrTextureAdjuster adjuster(this->context(), std::move(proxy),
Greg Danielc77085d2017-11-01 16:38:48 -04001465 image->alphaType(), pinnedUniqueID,
1466 as_IB(image)->onImageInfo().colorSpace());
Mike Reeda1361362017-03-07 09:37:29 -05001467 this->drawProducerLattice(&adjuster, lattice, dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001468 } else {
1469 SkBitmap bm;
Brian Osmandf7e0752017-04-26 16:20:28 -04001470 if (image->isLazyGenerated()) {
1471 GrImageTextureMaker maker(fContext.get(), image, SkImage::kAllow_CachingHint);
Mike Reeda1361362017-03-07 09:37:29 -05001472 this->drawProducerLattice(&maker, lattice, dst, paint);
Brian Salomonf3569f02017-10-24 12:52:33 -04001473 } else if (as_IB(image)->getROPixels(&bm,
1474 fRenderTargetContext->colorSpaceInfo().colorSpace())) {
Mike Reeda1361362017-03-07 09:37:29 -05001475 this->drawBitmapLattice(bm, lattice, dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001476 }
1477 }
1478}
1479
Mike Reeda1361362017-03-07 09:37:29 -05001480void SkGpuDevice::drawBitmapLattice(const SkBitmap& bitmap,
msarett10e3d9b2016-08-18 15:46:03 -07001481 const SkCanvas::Lattice& lattice, const SkRect& dst,
1482 const SkPaint& paint) {
1483 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001484 GrBitmapTextureMaker maker(fContext.get(), bitmap);
Mike Reeda1361362017-03-07 09:37:29 -05001485 this->drawProducerLattice(&maker, lattice, dst, paint);
msarett10e3d9b2016-08-18 15:46:03 -07001486}
1487
Brian Salomonf3569f02017-10-24 12:52:33 -04001488static bool init_vertices_paint(GrContext* context, const GrColorSpaceInfo& colorSpaceInfo,
1489 const SkPaint& skPaint, const SkMatrix& matrix, SkBlendMode bmode,
Robert Phillips26c90e02017-03-14 14:39:29 -04001490 bool hasTexs, bool hasColors, GrPaint* grPaint) {
Brian Salomon199fb872017-02-06 09:41:10 -05001491 if (hasTexs && skPaint.getShader()) {
1492 if (hasColors) {
1493 // When there are texs and colors the shader and colors are combined using bmode.
Brian Salomonf3569f02017-10-24 12:52:33 -04001494 return SkPaintToGrPaintWithXfermode(context, colorSpaceInfo, skPaint, matrix, bmode,
1495 grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001496 } else {
1497 // We have a shader, but no colors to blend it against.
Brian Salomonf3569f02017-10-24 12:52:33 -04001498 return SkPaintToGrPaint(context, colorSpaceInfo, skPaint, matrix, grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001499 }
1500 } else {
1501 if (hasColors) {
1502 // We have colors, but either have no shader or no texture coords (which implies that
1503 // we should ignore the shader).
Brian Salomonf3569f02017-10-24 12:52:33 -04001504 return SkPaintToGrPaintWithPrimitiveColor(context, colorSpaceInfo, skPaint, grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001505 } else {
1506 // No colors and no shaders. Just draw with the paint color.
Brian Salomonf3569f02017-10-24 12:52:33 -04001507 return SkPaintToGrPaintNoShader(context, colorSpaceInfo, skPaint, grPaint);
Brian Salomon199fb872017-02-06 09:41:10 -05001508 }
1509 }
1510}
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001511
Mike Reed887cdf12017-04-03 11:11:09 -04001512void SkGpuDevice::wireframeVertices(SkVertices::VertexMode vmode, int vertexCount,
Mike Reed2f6b5a42017-03-19 15:04:17 -04001513 const SkPoint vertices[], SkBlendMode bmode,
1514 const uint16_t indices[], int indexCount,
1515 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001516 ASSERT_SINGLE_OWNER
Mike Reed2f6b5a42017-03-19 15:04:17 -04001517 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "wireframeVertices", fContext.get());
mtklein533eb782014-08-27 10:39:42 -07001518
Mike Reed2f6b5a42017-03-19 15:04:17 -04001519 SkPaint copy(paint);
1520 copy.setStyle(SkPaint::kStroke_Style);
1521 copy.setStrokeWidth(0);
mtklein533eb782014-08-27 10:39:42 -07001522
Mike Reed2f6b5a42017-03-19 15:04:17 -04001523 GrPaint grPaint;
1524 // we ignore the shader since we have no texture coordinates.
Brian Salomonf3569f02017-10-24 12:52:33 -04001525 if (!SkPaintToGrPaintNoShader(this->context(), fRenderTargetContext->colorSpaceInfo(), copy,
1526 &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001527 return;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001528 }
1529
Mike Reed2f6b5a42017-03-19 15:04:17 -04001530 int triangleCount = 0;
1531 int n = (nullptr == indices) ? vertexCount : indexCount;
1532 switch (vmode) {
Mike Reed887cdf12017-04-03 11:11:09 -04001533 case SkVertices::kTriangles_VertexMode:
Mike Reed2f6b5a42017-03-19 15:04:17 -04001534 triangleCount = n / 3;
1535 break;
Mike Reed887cdf12017-04-03 11:11:09 -04001536 case SkVertices::kTriangleStrip_VertexMode:
1537 case SkVertices::kTriangleFan_VertexMode:
Mike Reed2f6b5a42017-03-19 15:04:17 -04001538 triangleCount = n - 2;
1539 break;
1540 }
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001541
Mike Reed2f6b5a42017-03-19 15:04:17 -04001542 VertState state(vertexCount, indices, indexCount);
1543 VertState::Proc vertProc = state.chooseProc(vmode);
1544
1545 //number of indices for lines per triangle with kLines
1546 indexCount = triangleCount * 6;
1547
Brian Osmanae0c50c2017-05-25 16:56:34 -04001548 static constexpr SkVertices::VertexMode kIgnoredMode = SkVertices::kTriangles_VertexMode;
1549 SkVertices::Builder builder(kIgnoredMode, vertexCount, indexCount, 0);
1550 memcpy(builder.positions(), vertices, vertexCount * sizeof(SkPoint));
1551
1552 uint16_t* lineIndices = builder.indices();
Mike Reed2f6b5a42017-03-19 15:04:17 -04001553 int i = 0;
1554 while (vertProc(&state)) {
1555 lineIndices[i] = state.f0;
1556 lineIndices[i + 1] = state.f1;
1557 lineIndices[i + 2] = state.f1;
1558 lineIndices[i + 3] = state.f2;
1559 lineIndices[i + 4] = state.f2;
1560 lineIndices[i + 5] = state.f0;
1561 i += 6;
bsalomonf1b7a1d2015-09-28 06:26:28 -07001562 }
Brian Osmanae0c50c2017-05-25 16:56:34 -04001563
Chris Dalton3809bab2017-06-13 10:55:06 -06001564 GrPrimitiveType primitiveType = GrPrimitiveType::kLines;
Brian Salomon0166cfd2017-03-13 17:58:25 -04001565 fRenderTargetContext->drawVertices(this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -05001566 std::move(grPaint),
Mike Reeda1361362017-03-07 09:37:29 -05001567 this->ctm(),
Brian Osmanae0c50c2017-05-25 16:56:34 -04001568 builder.detach(),
1569 &primitiveType);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001570}
1571
Brian Osman0b403f82017-05-26 10:39:51 -04001572void SkGpuDevice::drawVertices(const SkVertices* vertices, SkBlendMode mode, const SkPaint& paint) {
Brian Salomon199fb872017-02-06 09:41:10 -05001573 ASSERT_SINGLE_OWNER
Mike Reed2f6b5a42017-03-19 15:04:17 -04001574 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawVertices", fContext.get());
Brian Salomon199fb872017-02-06 09:41:10 -05001575
1576 SkASSERT(vertices);
1577 GrPaint grPaint;
Mike Reed5fa66452017-03-16 09:06:34 -04001578 bool hasColors = vertices->hasColors();
1579 bool hasTexs = vertices->hasTexCoords();
Brian Osman0b403f82017-05-26 10:39:51 -04001580 if ((!hasTexs || !paint.getShader()) && !hasColors) {
Brian Salomon199fb872017-02-06 09:41:10 -05001581 // The dreaded wireframe mode. Fallback to drawVertices and go so slooooooow.
Mike Reed2f6b5a42017-03-19 15:04:17 -04001582 this->wireframeVertices(vertices->mode(), vertices->vertexCount(), vertices->positions(),
1583 mode, vertices->indices(), vertices->indexCount(), paint);
Brian Osman0b403f82017-05-26 10:39:51 -04001584 return;
Brian Salomon199fb872017-02-06 09:41:10 -05001585 }
Brian Salomonf3569f02017-10-24 12:52:33 -04001586 if (!init_vertices_paint(fContext.get(), fRenderTargetContext->colorSpaceInfo(), paint,
1587 this->ctm(), mode, hasTexs, hasColors, &grPaint)) {
Brian Salomon199fb872017-02-06 09:41:10 -05001588 return;
1589 }
Brian Salomon0166cfd2017-03-13 17:58:25 -04001590 fRenderTargetContext->drawVertices(this->clip(), std::move(grPaint), this->ctm(),
Mike Reede88a1cb2017-03-17 09:50:46 -04001591 sk_ref_sp(const_cast<SkVertices*>(vertices)));
Brian Salomon199fb872017-02-06 09:41:10 -05001592}
1593
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001594///////////////////////////////////////////////////////////////////////////////
1595
Jim Van Verth3af1af92017-05-18 15:06:54 -04001596void SkGpuDevice::drawShadow(const SkPath& path, const SkDrawShadowRec& rec) {
1597
1598 ASSERT_SINGLE_OWNER
Jim Van Verth3af1af92017-05-18 15:06:54 -04001599 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawShadow", fContext.get());
1600
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001601 if (!fRenderTargetContext->drawFastShadow(this->clip(), this->ctm(), path, rec)) {
Jim Van Verth3af1af92017-05-18 15:06:54 -04001602 // failed to find an accelerated case
1603 this->INHERITED::drawShadow(path, rec);
1604 }
1605}
1606
1607///////////////////////////////////////////////////////////////////////////////
1608
Mike Reeda1361362017-03-07 09:37:29 -05001609void SkGpuDevice::drawAtlas(const SkImage* atlas, const SkRSXform xform[],
reedca109532015-06-25 16:25:25 -07001610 const SkRect texRect[], const SkColor colors[], int count,
Mike Reedfaba3712016-11-03 14:45:31 -04001611 SkBlendMode mode, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001612 ASSERT_SINGLE_OWNER
reedca109532015-06-25 16:25:25 -07001613 if (paint.isAntiAlias()) {
Mike Reeda1361362017-03-07 09:37:29 -05001614 this->INHERITED::drawAtlas(atlas, xform, texRect, colors, count, mode, paint);
reedca109532015-06-25 16:25:25 -07001615 return;
1616 }
1617
Hal Canary144caf52016-11-07 17:57:18 -05001618 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawText", fContext.get());
herb11a7f7f2015-11-24 12:41:00 -08001619
reedca109532015-06-25 16:25:25 -07001620 SkPaint p(paint);
Mike Reed0acd7952017-04-28 11:12:19 -04001621 p.setShader(atlas->makeShader());
reedca109532015-06-25 16:25:25 -07001622
jvanverth31ff7622015-08-07 10:09:28 -07001623 GrPaint grPaint;
robertphillips29ccdf82015-07-24 10:20:45 -07001624 if (colors) {
Brian Salomonf3569f02017-10-24 12:52:33 -04001625 if (!SkPaintToGrPaintWithXfermode(this->context(), fRenderTargetContext->colorSpaceInfo(),
1626 p, this->ctm(), (SkBlendMode)mode, &grPaint)) {
bsalomonf1b7a1d2015-09-28 06:26:28 -07001627 return;
1628 }
1629 } else {
Brian Salomonf3569f02017-10-24 12:52:33 -04001630 if (!SkPaintToGrPaint(this->context(), fRenderTargetContext->colorSpaceInfo(), p,
1631 this->ctm(), &grPaint)) {
jvanverth31ff7622015-08-07 10:09:28 -07001632 return;
robertphillips29ccdf82015-07-24 10:20:45 -07001633 }
1634 }
bsalomonf1b7a1d2015-09-28 06:26:28 -07001635
1636 SkDEBUGCODE(this->validate();)
Brian Salomon0166cfd2017-03-13 17:58:25 -04001637 fRenderTargetContext->drawAtlas(
1638 this->clip(), std::move(grPaint), this->ctm(), count, xform, texRect, colors);
reedca109532015-06-25 16:25:25 -07001639}
1640
1641///////////////////////////////////////////////////////////////////////////////
1642
Mike Reeda1361362017-03-07 09:37:29 -05001643void SkGpuDevice::drawText(const void* text,
joshualitt5531d512014-12-17 15:50:11 -08001644 size_t byteLength, SkScalar x, SkScalar y,
1645 const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001646 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001647 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawText", fContext.get());
jvanverth8c27a182014-10-14 08:45:50 -07001648 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001649
Brian Salomon0166cfd2017-03-13 17:58:25 -04001650 fRenderTargetContext->drawText(this->clip(), paint, this->ctm(), (const char*)text, byteLength,
1651 x, y, this->devClipBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001652}
1653
Mike Reeda1361362017-03-07 09:37:29 -05001654void SkGpuDevice::drawPosText(const void* text, size_t byteLength,
fmalita05c4a432014-09-29 06:29:53 -07001655 const SkScalar pos[], int scalarsPerPos,
1656 const SkPoint& offset, const SkPaint& paint) {
joshualittce894002016-01-11 13:29:31 -08001657 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001658 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawPosText", fContext.get());
jvanverth8c27a182014-10-14 08:45:50 -07001659 SkDEBUGCODE(this->validate();)
commit-bot@chromium.org8128d8c2013-12-19 16:12:25 +00001660
Brian Salomon0166cfd2017-03-13 17:58:25 -04001661 fRenderTargetContext->drawPosText(this->clip(), paint, this->ctm(), (const char*)text,
1662 byteLength, pos, scalarsPerPos, offset,
Mike Reeda1361362017-03-07 09:37:29 -05001663 this->devClipBounds());
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001664}
1665
Mike Reeda1361362017-03-07 09:37:29 -05001666void SkGpuDevice::drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
joshualitt9c328182015-03-23 08:13:04 -07001667 const SkPaint& paint, SkDrawFilter* drawFilter) {
joshualittce894002016-01-11 13:29:31 -08001668 ASSERT_SINGLE_OWNER
Hal Canary144caf52016-11-07 17:57:18 -05001669 GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice", "drawTextBlob", fContext.get());
joshualitt9c328182015-03-23 08:13:04 -07001670 SkDEBUGCODE(this->validate();)
1671
Brian Salomon0166cfd2017-03-13 17:58:25 -04001672 fRenderTargetContext->drawTextBlob(this->clip(), paint, this->ctm(), blob, x, y, drawFilter,
1673 this->devClipBounds());
joshualitt9c328182015-03-23 08:13:04 -07001674}
1675
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001676///////////////////////////////////////////////////////////////////////////////
1677
reedb2db8982014-11-13 12:41:02 -08001678bool SkGpuDevice::onShouldDisableLCD(const SkPaint& paint) const {
joshualitt8e84a1e2016-02-16 11:09:25 -08001679 return GrTextUtils::ShouldDisableLCD(paint);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001680}
1681
Greg Daniela5cb7812017-06-16 09:45:32 -04001682///////////////////////////////////////////////////////////////////////////////
1683
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001684void SkGpuDevice::flush() {
Greg Daniela5cb7812017-06-16 09:45:32 -04001685 this->flushAndSignalSemaphores(0, nullptr);
1686}
1687
Greg Daniel51316782017-08-02 15:10:09 +00001688GrSemaphoresSubmitted SkGpuDevice::flushAndSignalSemaphores(int numSemaphores,
1689 GrBackendSemaphore signalSemaphores[]) {
joshualittce894002016-01-11 13:29:31 -08001690 ASSERT_SINGLE_OWNER
joshualittbc907352016-01-13 06:45:40 -08001691
Greg Danielc64ee462017-06-15 16:59:49 -04001692 return fRenderTargetContext->prepareForExternalIO(numSemaphores, signalSemaphores);
Greg Daniela5cb7812017-06-16 09:45:32 -04001693}
1694
Greg Danielc64ee462017-06-15 16:59:49 -04001695bool SkGpuDevice::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) {
Greg Daniela5cb7812017-06-16 09:45:32 -04001696 ASSERT_SINGLE_OWNER
1697
Greg Danielc64ee462017-06-15 16:59:49 -04001698 return fRenderTargetContext->waitOnSemaphores(numSemaphores, waitSemaphores);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001699}
1700
1701///////////////////////////////////////////////////////////////////////////////
1702
reed76033be2015-03-14 10:54:31 -07001703SkBaseDevice* SkGpuDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint*) {
joshualittce894002016-01-11 13:29:31 -08001704 ASSERT_SINGLE_OWNER
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001705
robertphillipsca6eafc2016-05-17 09:57:46 -07001706 SkSurfaceProps props(this->surfaceProps().flags(), cinfo.fPixelGeometry);
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001707
robertphillipsca6eafc2016-05-17 09:57:46 -07001708 // layers are never drawn in repeat modes, so we can request an approx
hcm4396fa52014-10-27 21:43:30 -07001709 // match and ignore any padding.
robertphillipsca6eafc2016-05-17 09:57:46 -07001710 SkBackingFit fit = kNever_TileUsage == cinfo.fTileUsage ? SkBackingFit::kApprox
1711 : SkBackingFit::kExact;
bsalomonafe30052015-01-16 07:32:33 -08001712
Robert Phillipsdd3b3f42017-04-24 10:57:28 -04001713 sk_sp<GrRenderTargetContext> rtc(fContext->makeDeferredRenderTargetContext(
Brian Salomonf3569f02017-10-24 12:52:33 -04001714 fit, cinfo.fInfo.width(), cinfo.fInfo.height(),
1715 fRenderTargetContext->colorSpaceInfo().config(),
1716 fRenderTargetContext->colorSpaceInfo().refColorSpace(),
Greg Daniel45d63032017-10-30 13:41:26 -04001717 fRenderTargetContext->numStencilSamples(), GrMipMapped::kNo,
1718 kBottomLeft_GrSurfaceOrigin, &props));
Brian Osman11052242016-10-27 14:47:55 -04001719 if (!rtc) {
Mike Kleine54c75f2016-10-13 14:18:09 -04001720 return nullptr;
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001721 }
robertphillipsca6eafc2016-05-17 09:57:46 -07001722
1723 // Skia's convention is to only clear a device if it is non-opaque.
1724 InitContents init = cinfo.fInfo.isOpaque() ? kUninit_InitContents : kClear_InitContents;
1725
Robert Phillips9fab7e92016-11-17 12:45:04 -05001726 return SkGpuDevice::Make(fContext.get(), std::move(rtc),
1727 cinfo.fInfo.width(), cinfo.fInfo.height(), init).release();
skia.committer@gmail.com11a253b2013-11-12 07:02:05 +00001728}
1729
reede8f30622016-03-23 18:59:25 -07001730sk_sp<SkSurface> SkGpuDevice::makeSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
joshualittce894002016-01-11 13:29:31 -08001731 ASSERT_SINGLE_OWNER
bsalomonafe30052015-01-16 07:32:33 -08001732 // TODO: Change the signature of newSurface to take a budgeted parameter.
bsalomon5ec26ae2016-02-25 08:33:02 -08001733 static const SkBudgeted kBudgeted = SkBudgeted::kNo;
Hal Canary144caf52016-11-07 17:57:18 -05001734 return SkSurface::MakeRenderTarget(fContext.get(), kBudgeted, info,
Brian Salomon50e66d42017-05-15 16:28:07 -04001735 fRenderTargetContext->numStencilSamples(),
Brian Osman11052242016-10-27 14:47:55 -04001736 fRenderTargetContext->origin(), &props);
reed@google.com76f10a32014-02-05 15:32:21 +00001737}
1738
senorblanco900c3672016-04-27 11:31:23 -07001739SkImageFilterCache* SkGpuDevice::getImageFilterCache() {
joshualittce894002016-01-11 13:29:31 -08001740 ASSERT_SINGLE_OWNER
senorblanco55b6d8b2014-07-30 11:26:46 -07001741 // We always return a transient cache, so it is freed after each
1742 // filter traversal.
brianosman04a44d02016-09-21 09:46:57 -07001743 return SkImageFilterCache::Create(SkImageFilterCache::kDefaultTransientSize);
senorblanco55b6d8b2014-07-30 11:26:46 -07001744}
reedf037e0b2014-10-30 11:34:15 -07001745
1746#endif