blob: c98f1daef90dc5c1cfe8a93554476cf04694f148 [file] [log] [blame]
robertphillips@google.comf4c2c522012-04-27 12:08:47 +00001/*
2 * Copyright 2012 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 "GrSoftwarePathRenderer.h"
robertphillips976f5f02016-06-03 10:59:20 -07009#include "GrAuditTrail.h"
10#include "GrClip.h"
bsalomon39ef7fb2016-09-21 11:16:05 -070011#include "GrGpuResourcePriv.h"
Brian Salomon6a639042016-12-14 11:08:17 -050012#include "GrPipelineBuilder.h"
Brian Osman32342f02017-03-04 08:12:46 -050013#include "GrResourceProvider.h"
robertphillips@google.com58b20212012-06-27 20:44:52 +000014#include "GrSWMaskHelper.h"
Robert Phillips009e9af2017-06-15 14:01:04 -040015#include "ops/GrDrawOp.h"
Brian Salomonbaaf4392017-06-15 09:59:23 -040016#include "ops/GrRectOpFactory.h"
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000017
robertphillips@google.comed4155d2012-05-01 14:30:24 +000018////////////////////////////////////////////////////////////////////////////////
bsalomon0aff2fa2015-07-31 06:48:27 -070019bool GrSoftwarePathRenderer::onCanDrawPath(const CanDrawPathArgs& args) const {
bsalomon8acedde2016-06-24 10:42:16 -070020 // Pass on any style that applies. The caller will apply the style if a suitable renderer is
21 // not found and try again with the new GrShape.
Brian Osman32342f02017-03-04 08:12:46 -050022 return !args.fShape->style().applies() && SkToBool(fResourceProvider) &&
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050023 (args.fAAType == GrAAType::kCoverage || args.fAAType == GrAAType::kNone);
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000024}
25
robertphillips@google.comed4155d2012-05-01 14:30:24 +000026////////////////////////////////////////////////////////////////////////////////
bsalomon39ef7fb2016-09-21 11:16:05 -070027static bool get_unclipped_shape_dev_bounds(const GrShape& shape, const SkMatrix& matrix,
28 SkIRect* devBounds) {
29 SkRect shapeBounds = shape.styledBounds();
30 if (shapeBounds.isEmpty()) {
31 return false;
32 }
33 SkRect shapeDevBounds;
34 matrix.mapRect(&shapeDevBounds, shapeBounds);
Brian Salomonc1c607e2016-12-20 11:41:43 -050035 // Even though these are "unclipped" bounds we still clip to the int32_t range.
36 // This is the largest int32_t that is representable exactly as a float. The next 63 larger ints
37 // would round down to this value when cast to a float, but who really cares.
38 // INT32_MIN is exactly representable.
39 static constexpr int32_t kMaxInt = 2147483520;
40 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) {
41 return false;
42 }
bsalomon39ef7fb2016-09-21 11:16:05 -070043 shapeDevBounds.roundOut(devBounds);
44 return true;
45}
46
47// Gets the shape bounds, the clip bounds, and the intersection (if any). Returns false if there
48// is no intersection.
49static bool get_shape_and_clip_bounds(int width, int height,
50 const GrClip& clip,
51 const GrShape& shape,
52 const SkMatrix& matrix,
53 SkIRect* unclippedDevShapeBounds,
54 SkIRect* clippedDevShapeBounds,
55 SkIRect* devClipBounds) {
robertphillips@google.comed4155d2012-05-01 14:30:24 +000056 // compute bounds as intersection of rt size, clip, and path
robertphillips0152d732016-05-20 06:38:43 -070057 clip.getConservativeBounds(width, height, devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +000058
bsalomon39ef7fb2016-09-21 11:16:05 -070059 if (!get_unclipped_shape_dev_bounds(shape, matrix, unclippedDevShapeBounds)) {
60 *unclippedDevShapeBounds = SkIRect::EmptyIRect();
61 *clippedDevShapeBounds = SkIRect::EmptyIRect();
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +000062 return false;
robertphillips@google.comed4155d2012-05-01 14:30:24 +000063 }
bsalomon39ef7fb2016-09-21 11:16:05 -070064 if (!clippedDevShapeBounds->intersect(*devClipBounds, *unclippedDevShapeBounds)) {
65 *clippedDevShapeBounds = SkIRect::EmptyIRect();
robertphillips@google.comed4155d2012-05-01 14:30:24 +000066 return false;
67 }
68 return true;
69}
70
71////////////////////////////////////////////////////////////////////////////////
robertphillips976f5f02016-06-03 10:59:20 -070072
Brian Osman11052242016-10-27 14:47:55 -040073void GrSoftwarePathRenderer::DrawNonAARect(GrRenderTargetContext* renderTargetContext,
Brian Salomon82f44312017-01-11 13:42:54 -050074 GrPaint&& paint,
robertphillipsd2b6d642016-07-21 08:55:08 -070075 const GrUserStencilSettings& userStencilSettings,
robertphillips976f5f02016-06-03 10:59:20 -070076 const GrClip& clip,
robertphillips976f5f02016-06-03 10:59:20 -070077 const SkMatrix& viewMatrix,
78 const SkRect& rect,
79 const SkMatrix& localMatrix) {
Brian Salomonbaaf4392017-06-15 09:59:23 -040080 renderTargetContext->addDrawOp(clip,
81 GrRectOpFactory::MakeNonAAFillWithLocalMatrix(
82 std::move(paint), viewMatrix, localMatrix, rect,
83 GrAAType::kNone, &userStencilSettings));
robertphillips976f5f02016-06-03 10:59:20 -070084}
85
Brian Osman11052242016-10-27 14:47:55 -040086void GrSoftwarePathRenderer::DrawAroundInvPath(GrRenderTargetContext* renderTargetContext,
Brian Salomon82f44312017-01-11 13:42:54 -050087 GrPaint&& paint,
robertphillipsd2b6d642016-07-21 08:55:08 -070088 const GrUserStencilSettings& userStencilSettings,
robertphillips976f5f02016-06-03 10:59:20 -070089 const GrClip& clip,
robertphillips976f5f02016-06-03 10:59:20 -070090 const SkMatrix& viewMatrix,
91 const SkIRect& devClipBounds,
92 const SkIRect& devPathBounds) {
joshualittd27f73e2014-12-29 07:43:36 -080093 SkMatrix invert;
joshualitt8059eb92014-12-29 15:10:07 -080094 if (!viewMatrix.invert(&invert)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +000095 return;
96 }
joshualittd27f73e2014-12-29 07:43:36 -080097
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +000098 SkRect rect;
robertphillips@google.com7b112892012-07-31 15:18:21 +000099 if (devClipBounds.fTop < devPathBounds.fTop) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000100 rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000101 devClipBounds.fRight, devPathBounds.fTop);
Brian Salomon82f44312017-01-11 13:42:54 -0500102 DrawNonAARect(renderTargetContext, GrPaint(paint), userStencilSettings, clip, SkMatrix::I(),
103 rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000104 }
robertphillips@google.com7b112892012-07-31 15:18:21 +0000105 if (devClipBounds.fLeft < devPathBounds.fLeft) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000106 rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000107 devPathBounds.fLeft, devPathBounds.fBottom);
Brian Salomon82f44312017-01-11 13:42:54 -0500108 DrawNonAARect(renderTargetContext, GrPaint(paint), userStencilSettings, clip, SkMatrix::I(),
109 rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000110 }
robertphillips@google.com7b112892012-07-31 15:18:21 +0000111 if (devClipBounds.fRight > devPathBounds.fRight) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000112 rect.iset(devPathBounds.fRight, devPathBounds.fTop,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000113 devClipBounds.fRight, devPathBounds.fBottom);
Brian Salomon82f44312017-01-11 13:42:54 -0500114 DrawNonAARect(renderTargetContext, GrPaint(paint), userStencilSettings, clip, SkMatrix::I(),
115 rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000116 }
robertphillips@google.com7b112892012-07-31 15:18:21 +0000117 if (devClipBounds.fBottom > devPathBounds.fBottom) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000118 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000119 devClipBounds.fRight, devClipBounds.fBottom);
Brian Salomon82f44312017-01-11 13:42:54 -0500120 DrawNonAARect(renderTargetContext, std::move(paint), userStencilSettings, clip,
robertphillips976f5f02016-06-03 10:59:20 -0700121 SkMatrix::I(), rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000122 }
123}
124
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000125////////////////////////////////////////////////////////////////////////////////
126// return true on success; false on failure
bsalomon0aff2fa2015-07-31 06:48:27 -0700127bool GrSoftwarePathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400128 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
robertphillips976f5f02016-06-03 10:59:20 -0700129 "GrSoftwarePathRenderer::onDrawPath");
Brian Osman32342f02017-03-04 08:12:46 -0500130 if (!fResourceProvider) {
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000131 return false;
132 }
133
bsalomon8acedde2016-06-24 10:42:16 -0700134 // We really need to know if the shape will be inverse filled or not
135 bool inverseFilled = false;
136 SkTLazy<GrShape> tmpShape;
caryclarkd6562002016-07-27 12:02:07 -0700137 SkASSERT(!args.fShape->style().applies());
Eric Karl5c779752017-05-08 12:02:07 -0700138 // If the path is hairline, ignore inverse fill.
139 inverseFilled = args.fShape->inverseFilled() &&
140 !IsStrokeHairlineOrEquivalent(args.fShape->style(), *args.fViewMatrix, nullptr);
bsalomon8acedde2016-06-24 10:42:16 -0700141
bsalomon39ef7fb2016-09-21 11:16:05 -0700142 SkIRect unclippedDevShapeBounds, clippedDevShapeBounds, devClipBounds;
143 // To prevent overloading the cache with entries during animations we limit the cache of masks
144 // to cases where the matrix preserves axis alignment.
145 bool useCache = fAllowCaching && !inverseFilled && args.fViewMatrix->preservesAxisAlignment() &&
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500146 args.fShape->hasUnstyledKey() && GrAAType::kCoverage == args.fAAType;
bsalomon39ef7fb2016-09-21 11:16:05 -0700147
Brian Osman11052242016-10-27 14:47:55 -0400148 if (!get_shape_and_clip_bounds(args.fRenderTargetContext->width(),
149 args.fRenderTargetContext->height(),
bsalomon8acedde2016-06-24 10:42:16 -0700150 *args.fClip, *args.fShape,
bsalomon39ef7fb2016-09-21 11:16:05 -0700151 *args.fViewMatrix, &unclippedDevShapeBounds,
152 &clippedDevShapeBounds,
153 &devClipBounds)) {
bsalomon8acedde2016-06-24 10:42:16 -0700154 if (inverseFilled) {
Brian Salomon82f44312017-01-11 13:42:54 -0500155 DrawAroundInvPath(args.fRenderTargetContext, std::move(args.fPaint),
156 *args.fUserStencilSettings, *args.fClip, *args.fViewMatrix,
157 devClipBounds, unclippedDevShapeBounds);
bsalomon@google.com276c1fa2012-06-19 13:22:45 +0000158 }
159 return true;
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000160 }
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000161
bsalomon39ef7fb2016-09-21 11:16:05 -0700162 const SkIRect* boundsForMask = &clippedDevShapeBounds;
163 if (useCache) {
164 // Use the cache only if >50% of the path is visible.
165 int unclippedWidth = unclippedDevShapeBounds.width();
166 int unclippedHeight = unclippedDevShapeBounds.height();
167 int unclippedArea = unclippedWidth * unclippedHeight;
168 int clippedArea = clippedDevShapeBounds.width() * clippedDevShapeBounds.height();
Brian Osman11052242016-10-27 14:47:55 -0400169 int maxTextureSize = args.fRenderTargetContext->caps()->maxTextureSize();
bsalomon39ef7fb2016-09-21 11:16:05 -0700170 if (unclippedArea > 2 * clippedArea || unclippedWidth > maxTextureSize ||
171 unclippedHeight > maxTextureSize) {
172 useCache = false;
173 } else {
174 boundsForMask = &unclippedDevShapeBounds;
175 }
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000176 }
177
bsalomon39ef7fb2016-09-21 11:16:05 -0700178 GrUniqueKey maskKey;
179 struct KeyData {
180 SkScalar fFractionalTranslateX;
181 SkScalar fFractionalTranslateY;
182 };
183
184 if (useCache) {
185 // We require the upper left 2x2 of the matrix to match exactly for a cache hit.
186 SkScalar sx = args.fViewMatrix->get(SkMatrix::kMScaleX);
187 SkScalar sy = args.fViewMatrix->get(SkMatrix::kMScaleY);
188 SkScalar kx = args.fViewMatrix->get(SkMatrix::kMSkewX);
189 SkScalar ky = args.fViewMatrix->get(SkMatrix::kMSkewY);
190 SkScalar tx = args.fViewMatrix->get(SkMatrix::kMTransX);
191 SkScalar ty = args.fViewMatrix->get(SkMatrix::kMTransY);
192 // Allow 8 bits each in x and y of subpixel positioning.
193 SkFixed fracX = SkScalarToFixed(SkScalarFraction(tx)) & 0x0000FF00;
194 SkFixed fracY = SkScalarToFixed(SkScalarFraction(ty)) & 0x0000FF00;
195 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
196 GrUniqueKey::Builder builder(&maskKey, kDomain, 5 + args.fShape->unstyledKeySize());
197 builder[0] = SkFloat2Bits(sx);
198 builder[1] = SkFloat2Bits(sy);
199 builder[2] = SkFloat2Bits(kx);
200 builder[3] = SkFloat2Bits(ky);
201 builder[4] = fracX | (fracY >> 8);
202 args.fShape->writeUnstyledKey(&builder[5]);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500203 // FIXME: Doesn't the key need to consider whether we're using AA or not? In practice that
204 // should always be true, though.
bsalomon39ef7fb2016-09-21 11:16:05 -0700205 }
206
Robert Phillipsd3749482017-03-14 09:17:43 -0400207 sk_sp<GrTextureProxy> proxy;
bsalomon39ef7fb2016-09-21 11:16:05 -0700208 if (useCache) {
Robert Phillipsd3749482017-03-14 09:17:43 -0400209 proxy = fResourceProvider->findProxyByUniqueKey(maskKey);
bsalomon39ef7fb2016-09-21 11:16:05 -0700210 }
Robert Phillipsd3749482017-03-14 09:17:43 -0400211 if (!proxy) {
Robert Phillips417b7f42016-12-14 09:12:13 -0500212 SkBackingFit fit = useCache ? SkBackingFit::kExact : SkBackingFit::kApprox;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500213 GrAA aa = GrAAType::kCoverage == args.fAAType ? GrAA::kYes : GrAA::kNo;
Robert Phillips26c90e02017-03-14 14:39:29 -0400214 proxy = GrSWMaskHelper::DrawShapeMaskToTexture(args.fContext, *args.fShape,
Robert Phillipsd3749482017-03-14 09:17:43 -0400215 *boundsForMask, aa,
216 fit, args.fViewMatrix);
217 if (!proxy) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500218 return false;
219 }
220 if (useCache) {
Robert Phillipsd3749482017-03-14 09:17:43 -0400221 fResourceProvider->assignUniqueKeyToProxy(maskKey, proxy.get());
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500222 }
bsalomon39ef7fb2016-09-21 11:16:05 -0700223 }
bsalomon8acedde2016-06-24 10:42:16 -0700224 if (inverseFilled) {
Brian Salomon82f44312017-01-11 13:42:54 -0500225 DrawAroundInvPath(args.fRenderTargetContext, GrPaint(args.fPaint),
226 *args.fUserStencilSettings, *args.fClip, *args.fViewMatrix, devClipBounds,
227 unclippedDevShapeBounds);
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000228 }
Brian Salomon82f44312017-01-11 13:42:54 -0500229 GrSWMaskHelper::DrawToTargetWithShapeMask(
Robert Phillips296b1cc2017-03-15 10:42:12 -0400230 std::move(proxy), args.fRenderTargetContext, std::move(args.fPaint),
Brian Salomon82f44312017-01-11 13:42:54 -0500231 *args.fUserStencilSettings, *args.fClip, *args.fViewMatrix,
232 SkIPoint{boundsForMask->fLeft, boundsForMask->fTop}, *boundsForMask);
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000233
234 return true;
robertphillips@google.comf4c2c522012-04-27 12:08:47 +0000235}