blob: f823e13704de6e195084522628e1f06994da16cd [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"
Brian Salomonac70f842017-05-08 10:43:33 -040015#include "ops/GrNonAAFillRectOp.h"
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000016
robertphillips@google.comed4155d2012-05-01 14:30:24 +000017////////////////////////////////////////////////////////////////////////////////
bsalomon0aff2fa2015-07-31 06:48:27 -070018bool GrSoftwarePathRenderer::onCanDrawPath(const CanDrawPathArgs& args) const {
bsalomon8acedde2016-06-24 10:42:16 -070019 // Pass on any style that applies. The caller will apply the style if a suitable renderer is
20 // not found and try again with the new GrShape.
Brian Osman32342f02017-03-04 08:12:46 -050021 return !args.fShape->style().applies() && SkToBool(fResourceProvider) &&
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050022 (args.fAAType == GrAAType::kCoverage || args.fAAType == GrAAType::kNone);
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000023}
24
robertphillips@google.comed4155d2012-05-01 14:30:24 +000025////////////////////////////////////////////////////////////////////////////////
bsalomon39ef7fb2016-09-21 11:16:05 -070026static bool get_unclipped_shape_dev_bounds(const GrShape& shape, const SkMatrix& matrix,
27 SkIRect* devBounds) {
28 SkRect shapeBounds = shape.styledBounds();
29 if (shapeBounds.isEmpty()) {
30 return false;
31 }
32 SkRect shapeDevBounds;
33 matrix.mapRect(&shapeDevBounds, shapeBounds);
Brian Salomonc1c607e2016-12-20 11:41:43 -050034 // Even though these are "unclipped" bounds we still clip to the int32_t range.
35 // This is the largest int32_t that is representable exactly as a float. The next 63 larger ints
36 // would round down to this value when cast to a float, but who really cares.
37 // INT32_MIN is exactly representable.
38 static constexpr int32_t kMaxInt = 2147483520;
39 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) {
40 return false;
41 }
bsalomon39ef7fb2016-09-21 11:16:05 -070042 shapeDevBounds.roundOut(devBounds);
43 return true;
44}
45
46// Gets the shape bounds, the clip bounds, and the intersection (if any). Returns false if there
47// is no intersection.
48static bool get_shape_and_clip_bounds(int width, int height,
49 const GrClip& clip,
50 const GrShape& shape,
51 const SkMatrix& matrix,
52 SkIRect* unclippedDevShapeBounds,
53 SkIRect* clippedDevShapeBounds,
54 SkIRect* devClipBounds) {
robertphillips@google.comed4155d2012-05-01 14:30:24 +000055 // compute bounds as intersection of rt size, clip, and path
robertphillips0152d732016-05-20 06:38:43 -070056 clip.getConservativeBounds(width, height, devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +000057
bsalomon39ef7fb2016-09-21 11:16:05 -070058 if (!get_unclipped_shape_dev_bounds(shape, matrix, unclippedDevShapeBounds)) {
59 *unclippedDevShapeBounds = SkIRect::EmptyIRect();
60 *clippedDevShapeBounds = SkIRect::EmptyIRect();
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +000061 return false;
robertphillips@google.comed4155d2012-05-01 14:30:24 +000062 }
bsalomon39ef7fb2016-09-21 11:16:05 -070063 if (!clippedDevShapeBounds->intersect(*devClipBounds, *unclippedDevShapeBounds)) {
64 *clippedDevShapeBounds = SkIRect::EmptyIRect();
robertphillips@google.comed4155d2012-05-01 14:30:24 +000065 return false;
66 }
67 return true;
68}
69
70////////////////////////////////////////////////////////////////////////////////
robertphillips976f5f02016-06-03 10:59:20 -070071
Brian Osman11052242016-10-27 14:47:55 -040072void GrSoftwarePathRenderer::DrawNonAARect(GrRenderTargetContext* renderTargetContext,
Brian Salomon82f44312017-01-11 13:42:54 -050073 GrPaint&& paint,
robertphillipsd2b6d642016-07-21 08:55:08 -070074 const GrUserStencilSettings& userStencilSettings,
robertphillips976f5f02016-06-03 10:59:20 -070075 const GrClip& clip,
robertphillips976f5f02016-06-03 10:59:20 -070076 const SkMatrix& viewMatrix,
77 const SkRect& rect,
78 const SkMatrix& localMatrix) {
Brian Salomonac70f842017-05-08 10:43:33 -040079 renderTargetContext->addDrawOp(
80 clip, GrNonAAFillRectOp::Make(std::move(paint), viewMatrix, rect, nullptr, &localMatrix,
81 GrAAType::kNone, &userStencilSettings));
robertphillips976f5f02016-06-03 10:59:20 -070082}
83
Brian Osman11052242016-10-27 14:47:55 -040084void GrSoftwarePathRenderer::DrawAroundInvPath(GrRenderTargetContext* renderTargetContext,
Brian Salomon82f44312017-01-11 13:42:54 -050085 GrPaint&& paint,
robertphillipsd2b6d642016-07-21 08:55:08 -070086 const GrUserStencilSettings& userStencilSettings,
robertphillips976f5f02016-06-03 10:59:20 -070087 const GrClip& clip,
robertphillips976f5f02016-06-03 10:59:20 -070088 const SkMatrix& viewMatrix,
89 const SkIRect& devClipBounds,
90 const SkIRect& devPathBounds) {
joshualittd27f73e2014-12-29 07:43:36 -080091 SkMatrix invert;
joshualitt8059eb92014-12-29 15:10:07 -080092 if (!viewMatrix.invert(&invert)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +000093 return;
94 }
joshualittd27f73e2014-12-29 07:43:36 -080095
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +000096 SkRect rect;
robertphillips@google.com7b112892012-07-31 15:18:21 +000097 if (devClipBounds.fTop < devPathBounds.fTop) {
rmistry@google.comd6176b02012-08-23 18:14:13 +000098 rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
robertphillips@google.com7b112892012-07-31 15:18:21 +000099 devClipBounds.fRight, devPathBounds.fTop);
Brian Salomon82f44312017-01-11 13:42:54 -0500100 DrawNonAARect(renderTargetContext, GrPaint(paint), userStencilSettings, clip, SkMatrix::I(),
101 rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000102 }
robertphillips@google.com7b112892012-07-31 15:18:21 +0000103 if (devClipBounds.fLeft < devPathBounds.fLeft) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000104 rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000105 devPathBounds.fLeft, devPathBounds.fBottom);
Brian Salomon82f44312017-01-11 13:42:54 -0500106 DrawNonAARect(renderTargetContext, GrPaint(paint), userStencilSettings, clip, SkMatrix::I(),
107 rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000108 }
robertphillips@google.com7b112892012-07-31 15:18:21 +0000109 if (devClipBounds.fRight > devPathBounds.fRight) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000110 rect.iset(devPathBounds.fRight, devPathBounds.fTop,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000111 devClipBounds.fRight, devPathBounds.fBottom);
Brian Salomon82f44312017-01-11 13:42:54 -0500112 DrawNonAARect(renderTargetContext, GrPaint(paint), userStencilSettings, clip, SkMatrix::I(),
113 rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000114 }
robertphillips@google.com7b112892012-07-31 15:18:21 +0000115 if (devClipBounds.fBottom > devPathBounds.fBottom) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000116 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000117 devClipBounds.fRight, devClipBounds.fBottom);
Brian Salomon82f44312017-01-11 13:42:54 -0500118 DrawNonAARect(renderTargetContext, std::move(paint), userStencilSettings, clip,
robertphillips976f5f02016-06-03 10:59:20 -0700119 SkMatrix::I(), rect, invert);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000120 }
121}
122
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000123////////////////////////////////////////////////////////////////////////////////
124// return true on success; false on failure
bsalomon0aff2fa2015-07-31 06:48:27 -0700125bool GrSoftwarePathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400126 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
robertphillips976f5f02016-06-03 10:59:20 -0700127 "GrSoftwarePathRenderer::onDrawPath");
Brian Osman32342f02017-03-04 08:12:46 -0500128 if (!fResourceProvider) {
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000129 return false;
130 }
131
bsalomon8acedde2016-06-24 10:42:16 -0700132 // We really need to know if the shape will be inverse filled or not
133 bool inverseFilled = false;
134 SkTLazy<GrShape> tmpShape;
caryclarkd6562002016-07-27 12:02:07 -0700135 SkASSERT(!args.fShape->style().applies());
Eric Karl5c779752017-05-08 12:02:07 -0700136 // If the path is hairline, ignore inverse fill.
137 inverseFilled = args.fShape->inverseFilled() &&
138 !IsStrokeHairlineOrEquivalent(args.fShape->style(), *args.fViewMatrix, nullptr);
bsalomon8acedde2016-06-24 10:42:16 -0700139
bsalomon39ef7fb2016-09-21 11:16:05 -0700140 SkIRect unclippedDevShapeBounds, clippedDevShapeBounds, devClipBounds;
141 // To prevent overloading the cache with entries during animations we limit the cache of masks
142 // to cases where the matrix preserves axis alignment.
143 bool useCache = fAllowCaching && !inverseFilled && args.fViewMatrix->preservesAxisAlignment() &&
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500144 args.fShape->hasUnstyledKey() && GrAAType::kCoverage == args.fAAType;
bsalomon39ef7fb2016-09-21 11:16:05 -0700145
Brian Osman11052242016-10-27 14:47:55 -0400146 if (!get_shape_and_clip_bounds(args.fRenderTargetContext->width(),
147 args.fRenderTargetContext->height(),
bsalomon8acedde2016-06-24 10:42:16 -0700148 *args.fClip, *args.fShape,
bsalomon39ef7fb2016-09-21 11:16:05 -0700149 *args.fViewMatrix, &unclippedDevShapeBounds,
150 &clippedDevShapeBounds,
151 &devClipBounds)) {
bsalomon8acedde2016-06-24 10:42:16 -0700152 if (inverseFilled) {
Brian Salomon82f44312017-01-11 13:42:54 -0500153 DrawAroundInvPath(args.fRenderTargetContext, std::move(args.fPaint),
154 *args.fUserStencilSettings, *args.fClip, *args.fViewMatrix,
155 devClipBounds, unclippedDevShapeBounds);
bsalomon@google.com276c1fa2012-06-19 13:22:45 +0000156 }
157 return true;
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000158 }
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000159
bsalomon39ef7fb2016-09-21 11:16:05 -0700160 const SkIRect* boundsForMask = &clippedDevShapeBounds;
161 if (useCache) {
162 // Use the cache only if >50% of the path is visible.
163 int unclippedWidth = unclippedDevShapeBounds.width();
164 int unclippedHeight = unclippedDevShapeBounds.height();
165 int unclippedArea = unclippedWidth * unclippedHeight;
166 int clippedArea = clippedDevShapeBounds.width() * clippedDevShapeBounds.height();
Brian Osman11052242016-10-27 14:47:55 -0400167 int maxTextureSize = args.fRenderTargetContext->caps()->maxTextureSize();
bsalomon39ef7fb2016-09-21 11:16:05 -0700168 if (unclippedArea > 2 * clippedArea || unclippedWidth > maxTextureSize ||
169 unclippedHeight > maxTextureSize) {
170 useCache = false;
171 } else {
172 boundsForMask = &unclippedDevShapeBounds;
173 }
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000174 }
175
bsalomon39ef7fb2016-09-21 11:16:05 -0700176 GrUniqueKey maskKey;
177 struct KeyData {
178 SkScalar fFractionalTranslateX;
179 SkScalar fFractionalTranslateY;
180 };
181
182 if (useCache) {
183 // We require the upper left 2x2 of the matrix to match exactly for a cache hit.
184 SkScalar sx = args.fViewMatrix->get(SkMatrix::kMScaleX);
185 SkScalar sy = args.fViewMatrix->get(SkMatrix::kMScaleY);
186 SkScalar kx = args.fViewMatrix->get(SkMatrix::kMSkewX);
187 SkScalar ky = args.fViewMatrix->get(SkMatrix::kMSkewY);
188 SkScalar tx = args.fViewMatrix->get(SkMatrix::kMTransX);
189 SkScalar ty = args.fViewMatrix->get(SkMatrix::kMTransY);
190 // Allow 8 bits each in x and y of subpixel positioning.
191 SkFixed fracX = SkScalarToFixed(SkScalarFraction(tx)) & 0x0000FF00;
192 SkFixed fracY = SkScalarToFixed(SkScalarFraction(ty)) & 0x0000FF00;
193 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
194 GrUniqueKey::Builder builder(&maskKey, kDomain, 5 + args.fShape->unstyledKeySize());
195 builder[0] = SkFloat2Bits(sx);
196 builder[1] = SkFloat2Bits(sy);
197 builder[2] = SkFloat2Bits(kx);
198 builder[3] = SkFloat2Bits(ky);
199 builder[4] = fracX | (fracY >> 8);
200 args.fShape->writeUnstyledKey(&builder[5]);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500201 // FIXME: Doesn't the key need to consider whether we're using AA or not? In practice that
202 // should always be true, though.
bsalomon39ef7fb2016-09-21 11:16:05 -0700203 }
204
Robert Phillipsd3749482017-03-14 09:17:43 -0400205 sk_sp<GrTextureProxy> proxy;
bsalomon39ef7fb2016-09-21 11:16:05 -0700206 if (useCache) {
Robert Phillipsd3749482017-03-14 09:17:43 -0400207 proxy = fResourceProvider->findProxyByUniqueKey(maskKey);
bsalomon39ef7fb2016-09-21 11:16:05 -0700208 }
Robert Phillipsd3749482017-03-14 09:17:43 -0400209 if (!proxy) {
Robert Phillips417b7f42016-12-14 09:12:13 -0500210 SkBackingFit fit = useCache ? SkBackingFit::kExact : SkBackingFit::kApprox;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500211 GrAA aa = GrAAType::kCoverage == args.fAAType ? GrAA::kYes : GrAA::kNo;
Robert Phillips26c90e02017-03-14 14:39:29 -0400212 proxy = GrSWMaskHelper::DrawShapeMaskToTexture(args.fContext, *args.fShape,
Robert Phillipsd3749482017-03-14 09:17:43 -0400213 *boundsForMask, aa,
214 fit, args.fViewMatrix);
215 if (!proxy) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500216 return false;
217 }
218 if (useCache) {
Robert Phillipsd3749482017-03-14 09:17:43 -0400219 fResourceProvider->assignUniqueKeyToProxy(maskKey, proxy.get());
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500220 }
bsalomon39ef7fb2016-09-21 11:16:05 -0700221 }
bsalomon8acedde2016-06-24 10:42:16 -0700222 if (inverseFilled) {
Brian Salomon82f44312017-01-11 13:42:54 -0500223 DrawAroundInvPath(args.fRenderTargetContext, GrPaint(args.fPaint),
224 *args.fUserStencilSettings, *args.fClip, *args.fViewMatrix, devClipBounds,
225 unclippedDevShapeBounds);
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000226 }
Brian Salomon82f44312017-01-11 13:42:54 -0500227 GrSWMaskHelper::DrawToTargetWithShapeMask(
Robert Phillips296b1cc2017-03-15 10:42:12 -0400228 std::move(proxy), args.fRenderTargetContext, std::move(args.fPaint),
Brian Salomon82f44312017-01-11 13:42:54 -0500229 *args.fUserStencilSettings, *args.fClip, *args.fViewMatrix,
230 SkIPoint{boundsForMask->fLeft, boundsForMask->fTop}, *boundsForMask);
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000231
232 return true;
robertphillips@google.comf4c2c522012-04-27 12:08:47 +0000233}