blob: 93f969b8ed3352ea2af1c821b098efb2c052b09e [file] [log] [blame]
joshualitt9ff64252015-08-10 09:03:51 -07001/*
Michael Ludwig72ab3462018-12-10 12:43:36 -05002 * Copyright 2018 Google Inc.
joshualitt9ff64252015-08-10 09:03:51 -07003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Robert Phillipscadd5db2021-08-30 11:37:18 -04008#include "src/gpu/ops/StrokeRectOp.h"
Michael Ludwig72ab3462018-12-10 12:43:36 -05009
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkStrokeRec.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/private/GrResourceKey.h"
12#include "include/utils/SkRandom.h"
Michael Ludwigfbe28592020-06-26 16:02:15 -040013#include "src/core/SkMatrixPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/gpu/GrCaps.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040015#include "src/gpu/GrColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "src/gpu/GrDefaultGeoProcFactory.h"
17#include "src/gpu/GrDrawOpTest.h"
18#include "src/gpu/GrOpFlushState.h"
Robert Phillipsd2f18732020-03-04 16:12:08 -050019#include "src/gpu/GrProgramInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "src/gpu/GrResourceProvider.h"
21#include "src/gpu/GrVertexWriter.h"
Robert Phillipsfbf02142021-09-01 16:31:34 -040022#include "src/gpu/ops/FillRectOp.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050023#include "src/gpu/ops/GrMeshDrawOp.h"
24#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
joshualitt9ff64252015-08-10 09:03:51 -070025
Michael Ludwig72ab3462018-12-10 12:43:36 -050026namespace {
joshualitt9ff64252015-08-10 09:03:51 -070027
bsalomon8b7a9e12016-07-06 13:06:22 -070028// We support all hairlines, bevels, and miters, but not round joins. Also, check whether the miter
Michael Ludwig72ab3462018-12-10 12:43:36 -050029// limit makes a miter join effectively beveled. If the miter is effectively beveled, it is only
30// supported when using an AA stroke.
Robert Phillipscadd5db2021-08-30 11:37:18 -040031inline bool allowed_stroke(const SkStrokeRec& stroke, GrAA aa, bool* isMiter) {
bsalomon8b7a9e12016-07-06 13:06:22 -070032 SkASSERT(stroke.getStyle() == SkStrokeRec::kStroke_Style ||
33 stroke.getStyle() == SkStrokeRec::kHairline_Style);
34 // For hairlines, make bevel and round joins appear the same as mitered ones.
35 if (!stroke.getWidth()) {
36 *isMiter = true;
37 return true;
38 }
39 if (stroke.getJoin() == SkPaint::kBevel_Join) {
40 *isMiter = false;
Michael Ludwig72ab3462018-12-10 12:43:36 -050041 return aa == GrAA::kYes; // bevel only supported with AA
bsalomon8b7a9e12016-07-06 13:06:22 -070042 }
43 if (stroke.getJoin() == SkPaint::kMiter_Join) {
44 *isMiter = stroke.getMiter() >= SK_ScalarSqrt2;
Michael Ludwig72ab3462018-12-10 12:43:36 -050045 // Supported under non-AA only if it remains mitered
46 return aa == GrAA::kYes || *isMiter;
bsalomon8b7a9e12016-07-06 13:06:22 -070047 }
48 return false;
49}
50
Michael Ludwig72ab3462018-12-10 12:43:36 -050051
52///////////////////////////////////////////////////////////////////////////////////////////////////
53// Non-AA Stroking
54///////////////////////////////////////////////////////////////////////////////////////////////////
55
56/* create a triangle strip that strokes the specified rect. There are 8
57 unique vertices, but we repeat the last 2 to close up. Alternatively we
58 could use an indices array, and then only send 8 verts, but not sure that
59 would be faster.
60 */
Robert Phillipscadd5db2021-08-30 11:37:18 -040061void init_nonaa_stroke_rect_strip(SkPoint verts[10], const SkRect& rect, SkScalar width) {
Michael Ludwig72ab3462018-12-10 12:43:36 -050062 const SkScalar rad = SkScalarHalf(width);
63
64 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
65 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
66 verts[2].set(rect.fRight - rad, rect.fTop + rad);
67 verts[3].set(rect.fRight + rad, rect.fTop - rad);
68 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
69 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
70 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
71 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
72 verts[8] = verts[0];
73 verts[9] = verts[1];
74
75 // TODO: we should be catching this higher up the call stack and just draw a single
76 // non-AA rect
77 if (2*rad >= rect.width()) {
78 verts[0].fX = verts[2].fX = verts[4].fX = verts[6].fX = verts[8].fX = rect.centerX();
79 }
80 if (2*rad >= rect.height()) {
81 verts[0].fY = verts[2].fY = verts[4].fY = verts[6].fY = verts[8].fY = rect.centerY();
82 }
83}
84
85class NonAAStrokeRectOp final : public GrMeshDrawOp {
86private:
87 using Helper = GrSimpleMeshDrawOpHelper;
88
89public:
90 DEFINE_OP_CLASS_ID
91
92 const char* name() const override { return "NonAAStrokeRectOp"; }
93
Robert Phillips294723d2021-06-17 09:23:58 -040094 void visitProxies(const GrVisitProxyFunc& func) const override {
Robert Phillipsd2f18732020-03-04 16:12:08 -050095 if (fProgramInfo) {
Chris Daltonbe457422020-03-16 18:05:03 -060096 fProgramInfo->visitFPProxies(func);
Robert Phillipsd2f18732020-03-04 16:12:08 -050097 } else {
98 fHelper.visitProxies(func);
99 }
Michael Ludwig72ab3462018-12-10 12:43:36 -0500100 }
101
Herb Derbyc76d4092020-10-07 16:46:15 -0400102 static GrOp::Owner Make(GrRecordingContext* context,
103 GrPaint&& paint,
104 const SkMatrix& viewMatrix,
105 const SkRect& rect,
106 const SkStrokeRec& stroke,
107 GrAAType aaType) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500108 bool isMiter;
109 if (!allowed_stroke(stroke, GrAA::kNo, &isMiter)) {
110 return nullptr;
111 }
Chris Daltonbaa1b352019-04-03 12:03:00 -0600112 Helper::InputFlags inputFlags = Helper::InputFlags::kNone;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500113 // Depending on sub-pixel coordinates and the particular GPU, we may lose a corner of
114 // hairline rects. We jam all the vertices to pixel centers to avoid this, but not
115 // when MSAA is enabled because it can cause ugly artifacts.
116 if (stroke.getStyle() == SkStrokeRec::kHairline_Style && aaType != GrAAType::kMSAA) {
Chris Daltonbaa1b352019-04-03 12:03:00 -0600117 inputFlags |= Helper::InputFlags::kSnapVerticesToPixelCenters;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500118 }
Chris Daltonbaa1b352019-04-03 12:03:00 -0600119 return Helper::FactoryHelper<NonAAStrokeRectOp>(context, std::move(paint), inputFlags,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500120 viewMatrix, rect,
121 stroke, aaType);
122 }
123
Herb Derbyc76d4092020-10-07 16:46:15 -0400124 NonAAStrokeRectOp(GrProcessorSet* processorSet, const SkPMColor4f& color,
Chris Daltonbaa1b352019-04-03 12:03:00 -0600125 Helper::InputFlags inputFlags, const SkMatrix& viewMatrix, const SkRect& rect,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500126 const SkStrokeRec& stroke, GrAAType aaType)
Robert Phillips4133dc42020-03-11 15:55:55 -0400127 : INHERITED(ClassID())
Herb Derbyc76d4092020-10-07 16:46:15 -0400128 , fHelper(processorSet, aaType, inputFlags) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500129 fColor = color;
130 fViewMatrix = viewMatrix;
131 fRect = rect;
132 // Sort the rect for hairlines
133 fRect.sort();
134 fStrokeWidth = stroke.getWidth();
135
Greg Daniel5faf4742019-10-01 15:14:44 -0400136 SkScalar rad = SkScalarHalf(fStrokeWidth);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500137 SkRect bounds = rect;
138 bounds.outset(rad, rad);
139
140 // If our caller snaps to pixel centers then we have to round out the bounds
Chris Daltonbaa1b352019-04-03 12:03:00 -0600141 if (inputFlags & Helper::InputFlags::kSnapVerticesToPixelCenters) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400142 SkASSERT(!fStrokeWidth || aaType == GrAAType::kNone);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500143 viewMatrix.mapRect(&bounds);
144 // We want to be consistent with how we snap non-aa lines. To match what we do in
145 // GrGLSLVertexShaderBuilder, we first floor all the vertex values and then add half a
146 // pixel to force us to pixel centers.
Mike Reed92b33352019-08-24 19:39:13 -0400147 bounds.setLTRB(SkScalarFloorToScalar(bounds.fLeft),
148 SkScalarFloorToScalar(bounds.fTop),
149 SkScalarFloorToScalar(bounds.fRight),
150 SkScalarFloorToScalar(bounds.fBottom));
Michael Ludwig72ab3462018-12-10 12:43:36 -0500151 bounds.offset(0.5f, 0.5f);
Greg Daniel5faf4742019-10-01 15:14:44 -0400152 this->setBounds(bounds, HasAABloat::kNo, IsHairline::kNo);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500153 } else {
Greg Daniel5faf4742019-10-01 15:14:44 -0400154 HasAABloat aaBloat = (aaType == GrAAType::kNone) ? HasAABloat ::kNo : HasAABloat::kYes;
155 this->setTransformedBounds(bounds, fViewMatrix, aaBloat,
156 fStrokeWidth ? IsHairline::kNo : IsHairline::kYes);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500157 }
158 }
159
160 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
161
Chris Dalton57ab06c2021-04-22 12:57:28 -0600162 GrProcessorSet::Analysis finalize(const GrCaps& caps, const GrAppliedClip* clip,
163 GrClampType clampType) override {
Brian Osman8fa7ab42019-03-18 10:22:42 -0400164 // This Op uses uniform (not vertex) color, so doesn't need to track wide color.
Chris Dalton57ab06c2021-04-22 12:57:28 -0600165 return fHelper.finalizeProcessors(caps, clip, clampType, GrProcessorAnalysisCoverage::kNone,
166 &fColor, nullptr);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500167 }
168
169private:
Robert Phillips2669a7b2020-03-12 12:07:19 -0400170 GrProgramInfo* programInfo() override { return fProgramInfo; }
171
Robert Phillips4133dc42020-03-11 15:55:55 -0400172 void onCreateProgramInfo(const GrCaps* caps,
173 SkArenaAlloc* arena,
Adlai Hollere2296f72020-11-19 13:41:26 -0500174 const GrSurfaceProxyView& writeView,
Chris Dalton6aaf00f2021-07-13 13:26:39 -0600175 bool usesMSAASurface,
Robert Phillips4133dc42020-03-11 15:55:55 -0400176 GrAppliedClip&& clip,
John Stiles52cb1d02021-06-02 11:58:05 -0400177 const GrDstProxyView& dstProxyView,
Greg Daniel42dbca52020-11-20 10:22:43 -0500178 GrXferBarrierFlags renderPassXferBarriers,
179 GrLoadOp colorLoadOp) override {
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500180 GrGeometryProcessor* gp;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500181 {
182 using namespace GrDefaultGeoProcFactory;
183 Color color(fColor);
184 LocalCoords::Type localCoordsType = fHelper.usesLocalCoords()
185 ? LocalCoords::kUsePosition_Type
186 : LocalCoords::kUnused_Type;
Brian Osmanf0aee742020-03-12 09:28:44 -0400187 gp = GrDefaultGeoProcFactory::Make(arena, color, Coverage::kSolid_Type, localCoordsType,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500188 fViewMatrix);
189 }
190
Robert Phillips4133dc42020-03-11 15:55:55 -0400191 GrPrimitiveType primType = (fStrokeWidth > 0) ? GrPrimitiveType::kTriangleStrip
192 : GrPrimitiveType::kLineStrip;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500193
Chris Dalton2a26c502021-08-26 10:05:11 -0600194 fProgramInfo = fHelper.createProgramInfo(caps, arena, writeView, usesMSAASurface,
195 std::move(clip), dstProxyView, gp, primType,
Greg Daniel42dbca52020-11-20 10:22:43 -0500196 renderPassXferBarriers, colorLoadOp);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500197 }
198
Robert Phillips71143952021-06-17 14:55:07 -0400199 void onPrepareDraws(GrMeshDrawTarget* target) override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500200 if (!fProgramInfo) {
Robert Phillips4133dc42020-03-11 15:55:55 -0400201 this->createProgramInfo(target);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500202 }
203
Robert Phillips787fd9d2021-03-22 14:48:09 -0400204 size_t kVertexStride = fProgramInfo->geomProc().vertexStride();
Michael Ludwig72ab3462018-12-10 12:43:36 -0500205 int vertexCount = kVertsPerHairlineRect;
206 if (fStrokeWidth > 0) {
207 vertexCount = kVertsPerStrokeRect;
208 }
209
Brian Salomon12d22642019-01-29 14:38:50 -0500210 sk_sp<const GrBuffer> vertexBuffer;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500211 int firstVertex;
212
213 void* verts =
214 target->makeVertexSpace(kVertexStride, vertexCount, &vertexBuffer, &firstVertex);
215
216 if (!verts) {
217 SkDebugf("Could not allocate vertices\n");
218 return;
219 }
220
221 SkPoint* vertex = reinterpret_cast<SkPoint*>(verts);
222
Michael Ludwig72ab3462018-12-10 12:43:36 -0500223 if (fStrokeWidth > 0) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500224 init_nonaa_stroke_rect_strip(vertex, fRect, fStrokeWidth);
225 } else {
226 // hairline
Michael Ludwig72ab3462018-12-10 12:43:36 -0500227 vertex[0].set(fRect.fLeft, fRect.fTop);
228 vertex[1].set(fRect.fRight, fRect.fTop);
229 vertex[2].set(fRect.fRight, fRect.fBottom);
230 vertex[3].set(fRect.fLeft, fRect.fBottom);
231 vertex[4].set(fRect.fLeft, fRect.fTop);
232 }
233
Robert Phillipsd2f18732020-03-04 16:12:08 -0500234 fMesh = target->allocMesh();
Chris Dalton37c7bdd2020-03-13 09:21:12 -0600235 fMesh->set(std::move(vertexBuffer), vertexCount, firstVertex);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700236 }
237
238 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500239 if (!fMesh) {
240 return;
241 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500242
Chris Dalton765ed362020-03-16 17:34:44 -0600243 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
Robert Phillips787fd9d2021-03-22 14:48:09 -0400244 flushState->bindTextures(fProgramInfo->geomProc(), nullptr, fProgramInfo->pipeline());
Chris Dalton765ed362020-03-16 17:34:44 -0600245 flushState->drawMesh(*fMesh);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500246 }
247
John Stilesaf366522020-08-13 09:57:34 -0400248#if GR_TEST_UTILS
249 SkString onDumpInfo() const override {
250 return SkStringPrintf("Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
251 "StrokeWidth: %.2f\n%s",
252 fColor.toBytes_RGBA(), fRect.fLeft, fRect.fTop, fRect.fRight,
253 fRect.fBottom, fStrokeWidth, fHelper.dumpInfo().c_str());
254 }
255#endif
256
Michael Ludwig72ab3462018-12-10 12:43:36 -0500257 // TODO: override onCombineIfPossible
258
Robert Phillipsd2f18732020-03-04 16:12:08 -0500259 Helper fHelper;
260 SkPMColor4f fColor;
261 SkMatrix fViewMatrix;
262 SkRect fRect;
263 SkScalar fStrokeWidth;
Chris Daltoneb694b72020-03-16 09:25:50 -0600264 GrSimpleMesh* fMesh = nullptr;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500265 GrProgramInfo* fProgramInfo = nullptr;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500266
267 const static int kVertsPerHairlineRect = 5;
268 const static int kVertsPerStrokeRect = 10;
269
John Stiles7571f9e2020-09-02 22:42:33 -0400270 using INHERITED = GrMeshDrawOp;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500271};
272
273///////////////////////////////////////////////////////////////////////////////////////////////////
274// AA Stroking
275///////////////////////////////////////////////////////////////////////////////////////////////////
276
277GR_DECLARE_STATIC_UNIQUE_KEY(gMiterIndexBufferKey);
278GR_DECLARE_STATIC_UNIQUE_KEY(gBevelIndexBufferKey);
279
Robert Phillipscadd5db2021-08-30 11:37:18 -0400280bool stroke_dev_half_size_supported(SkVector devHalfStrokeSize) {
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600281 // Since the horizontal and vertical strokes share internal corners, the coverage value at that
282 // corner needs to be equal for the horizontal and vertical strokes both.
283 //
284 // The inner coverage values will be equal if the horizontal and vertical stroke widths are
285 // equal (in which case innerCoverage is same for all sides of the rects) or if the horizontal
286 // and vertical stroke widths are both greater than 1 (in which case innerCoverage will always
Michael Ludwig144926d2021-09-10 09:34:47 -0400287 // be 1). In actuality we allow them to be nearly-equal since differing by < 1/1000 will not be
288 // visually detectable when the shape is already less than 1px in thickness.
289 return SkScalarNearlyEqual(devHalfStrokeSize.fX, devHalfStrokeSize.fY) ||
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600290 std::min(devHalfStrokeSize.fX, devHalfStrokeSize.fY) >= .5f;
291}
292
Robert Phillipscadd5db2021-08-30 11:37:18 -0400293bool compute_aa_rects(const GrCaps& caps,
294 SkRect* devOutside,
295 SkRect* devOutsideAssist,
296 SkRect* devInside,
297 bool* isDegenerate,
298 const SkMatrix& viewMatrix,
299 const SkRect& rect,
300 SkScalar strokeWidth,
301 bool miterStroke,
302 SkVector* devHalfStrokeSize) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700303 SkVector devStrokeSize;
304 if (strokeWidth > 0) {
305 devStrokeSize.set(strokeWidth, strokeWidth);
306 viewMatrix.mapVectors(&devStrokeSize, 1);
307 devStrokeSize.setAbs(devStrokeSize);
308 } else {
309 devStrokeSize.set(SK_Scalar1, SK_Scalar1);
310 }
311
312 const SkScalar dx = devStrokeSize.fX;
313 const SkScalar dy = devStrokeSize.fY;
Mike Reed8be952a2017-02-13 20:44:33 -0500314 const SkScalar rx = SkScalarHalf(dx);
315 const SkScalar ry = SkScalarHalf(dy);
bsalomon8b7a9e12016-07-06 13:06:22 -0700316
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500317 devHalfStrokeSize->fX = rx;
318 devHalfStrokeSize->fY = ry;
319
Chris Dalton4f489102021-07-14 14:44:28 -0600320 SkRect devRect;
321 viewMatrix.mapRect(&devRect, rect);
322
323 // Clip our draw rect 1 full stroke width plus bloat outside the viewport. This avoids
324 // interpolation precision issues with very large coordinates.
Chris Dalton0196a722021-07-14 18:59:59 -0600325 const float m = caps.maxRenderTargetSize();
Chris Dalton4f489102021-07-14 14:44:28 -0600326 const SkRect visibilityBounds = SkRect::MakeWH(m, m).makeOutset(dx + 1, dy + 1);
327 if (!devRect.intersect(visibilityBounds)) {
328 return false;
329 }
330
bsalomon8b7a9e12016-07-06 13:06:22 -0700331 *devOutside = devRect;
332 *devOutsideAssist = devRect;
333 *devInside = devRect;
334
335 devOutside->outset(rx, ry);
336 devInside->inset(rx, ry);
337
338 // If we have a degenerate stroking rect(ie the stroke is larger than inner rect) then we
339 // make a degenerate inside rect to avoid double hitting. We will also jam all of the points
340 // together when we render these rects.
341 SkScalar spare;
342 {
343 SkScalar w = devRect.width() - dx;
344 SkScalar h = devRect.height() - dy;
Brian Osman788b9162020-02-07 10:36:46 -0500345 spare = std::min(w, h);
bsalomon8b7a9e12016-07-06 13:06:22 -0700346 }
347
348 *isDegenerate = spare <= 0;
349 if (*isDegenerate) {
350 devInside->fLeft = devInside->fRight = devRect.centerX();
351 devInside->fTop = devInside->fBottom = devRect.centerY();
352 }
353
354 // For bevel-stroke, use 2 SkRect instances(devOutside and devOutsideAssist)
355 // to draw the outside of the octagon. Because there are 8 vertices on the outer
356 // edge, while vertex number of inner edge is 4, the same as miter-stroke.
357 if (!miterStroke) {
358 devOutside->inset(0, ry);
359 devOutsideAssist->outset(0, ry);
360 }
Chris Dalton4f489102021-07-14 14:44:28 -0600361
362 return true;
bsalomon8b7a9e12016-07-06 13:06:22 -0700363}
364
Robert Phillipscadd5db2021-08-30 11:37:18 -0400365GrGeometryProcessor* create_aa_stroke_rect_gp(SkArenaAlloc* arena,
366 bool usesMSAASurface,
367 bool tweakAlphaForCoverage,
368 const SkMatrix& viewMatrix,
369 bool usesLocalCoords,
370 bool wideColor) {
joshualitt9ff64252015-08-10 09:03:51 -0700371 using namespace GrDefaultGeoProcFactory;
372
Chris Dalton97f85902021-07-14 03:16:22 -0600373 // When MSAA is enabled, we have to extend our AA bloats and interpolate coverage values outside
374 // 0..1. We tell the gp in this case that coverage is an unclamped attribute so it will call
375 // saturate(coverage) in the fragment shader.
376 Coverage::Type coverageType = usesMSAASurface ? Coverage::kAttributeUnclamped_Type
377 : (!tweakAlphaForCoverage ? Coverage::kAttribute_Type
378 : Coverage::kSolid_Type);
Brian Salomon8c852be2017-01-04 10:44:42 -0500379 LocalCoords::Type localCoordsType =
Brian Osman2a4c4df2018-12-20 14:06:54 -0500380 usesLocalCoords ? LocalCoords::kUsePosition_Type : LocalCoords::kUnused_Type;
381 Color::Type colorType =
382 wideColor ? Color::kPremulWideColorAttribute_Type: Color::kPremulGrColorAttribute_Type;
383
Brian Osmanf0aee742020-03-12 09:28:44 -0400384 return MakeForDeviceSpace(arena, colorType, coverageType, localCoordsType, viewMatrix);
joshualitt9ff64252015-08-10 09:03:51 -0700385}
386
Brian Salomonbaaf4392017-06-15 09:59:23 -0400387class AAStrokeRectOp final : public GrMeshDrawOp {
388private:
389 using Helper = GrSimpleMeshDrawOpHelper;
390
joshualitt3566d442015-09-18 07:12:55 -0700391public:
Brian Salomon25a88092016-12-01 09:36:50 -0500392 DEFINE_OP_CLASS_ID
joshualitt3566d442015-09-18 07:12:55 -0700393
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600394 // TODO support AA rotated stroke rects by copying around view matrices
395 struct RectInfo {
396 SkPMColor4f fColor;
397 SkRect fDevOutside;
398 SkRect fDevOutsideAssist;
399 SkRect fDevInside;
400 SkVector fDevHalfStrokeSize;
401 bool fDegenerate;
402 };
403
Herb Derbyc76d4092020-10-07 16:46:15 -0400404 static GrOp::Owner Make(GrRecordingContext* context,
405 GrPaint&& paint,
406 const SkMatrix& viewMatrix,
407 const SkRect& devOutside,
408 const SkRect& devInside,
409 const SkVector& devHalfStrokeSize) {
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600410 if (!viewMatrix.rectStaysRect()) {
411 // The AA op only supports axis-aligned rectangles
412 return nullptr;
413 }
414 if (!stroke_dev_half_size_supported(devHalfStrokeSize)) {
415 return nullptr;
416 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400417 return Helper::FactoryHelper<AAStrokeRectOp>(context, std::move(paint), viewMatrix,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500418 devOutside, devInside, devHalfStrokeSize);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400419 }
420
Herb Derbyc76d4092020-10-07 16:46:15 -0400421 AAStrokeRectOp(GrProcessorSet* processorSet, const SkPMColor4f& color,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500422 const SkMatrix& viewMatrix, const SkRect& devOutside, const SkRect& devInside,
423 const SkVector& devHalfStrokeSize)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400424 : INHERITED(ClassID())
Herb Derbyc76d4092020-10-07 16:46:15 -0400425 , fHelper(processorSet, GrAAType::kCoverage)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400426 , fViewMatrix(viewMatrix) {
caryclarkd6562002016-07-27 12:02:07 -0700427 SkASSERT(!devOutside.isEmpty());
428 SkASSERT(!devInside.isEmpty());
joshualitt3566d442015-09-18 07:12:55 -0700429
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500430 fRects.emplace_back(RectInfo{color, devOutside, devOutside, devInside, devHalfStrokeSize, false});
Greg Daniel5faf4742019-10-01 15:14:44 -0400431 this->setBounds(devOutside, HasAABloat::kYes, IsHairline::kNo);
bsalomon8b7a9e12016-07-06 13:06:22 -0700432 fMiterStroke = true;
433 }
434
Herb Derbyc76d4092020-10-07 16:46:15 -0400435 static GrOp::Owner Make(GrRecordingContext* context,
436 GrPaint&& paint,
437 const SkMatrix& viewMatrix,
438 const SkRect& rect,
439 const SkStrokeRec& stroke) {
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600440 if (!viewMatrix.rectStaysRect()) {
441 // The AA op only supports axis-aligned rectangles
442 return nullptr;
443 }
bsalomon8b7a9e12016-07-06 13:06:22 -0700444 bool isMiter;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500445 if (!allowed_stroke(stroke, GrAA::kYes, &isMiter)) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700446 return nullptr;
447 }
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600448 RectInfo info;
Chris Dalton4f489102021-07-14 14:44:28 -0600449 if (!compute_aa_rects(*context->priv().caps(),
450 &info.fDevOutside,
451 &info.fDevOutsideAssist,
452 &info.fDevInside,
453 &info.fDegenerate,
454 viewMatrix,
455 rect,
456 stroke.getWidth(),
457 isMiter,
458 &info.fDevHalfStrokeSize)) {
459 return nullptr;
460 }
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600461 if (!stroke_dev_half_size_supported(info.fDevHalfStrokeSize)) {
462 return nullptr;
463 }
464 return Helper::FactoryHelper<AAStrokeRectOp>(context, std::move(paint), viewMatrix, info,
465 isMiter);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400466 }
bsalomon8b7a9e12016-07-06 13:06:22 -0700467
Herb Derbyc76d4092020-10-07 16:46:15 -0400468 AAStrokeRectOp(GrProcessorSet* processorSet, const SkPMColor4f& color,
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600469 const SkMatrix& viewMatrix, const RectInfo& infoExceptColor, bool isMiter)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400470 : INHERITED(ClassID())
Herb Derbyc76d4092020-10-07 16:46:15 -0400471 , fHelper(processorSet, GrAAType::kCoverage)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400472 , fViewMatrix(viewMatrix) {
473 fMiterStroke = isMiter;
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600474 RectInfo& info = fRects.push_back(infoExceptColor);
Brian Salomon8c5bad32016-12-20 14:43:36 -0500475 info.fColor = color;
Brian Salomon510dd422017-03-16 12:15:22 -0400476 if (isMiter) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400477 this->setBounds(info.fDevOutside, HasAABloat::kYes, IsHairline::kNo);
Brian Salomon510dd422017-03-16 12:15:22 -0400478 } else {
479 // The outer polygon of the bevel stroke is an octagon specified by the points of a
480 // pair of overlapping rectangles where one is wide and the other is narrow.
481 SkRect bounds = info.fDevOutside;
482 bounds.joinPossiblyEmptyRect(info.fDevOutsideAssist);
Greg Daniel5faf4742019-10-01 15:14:44 -0400483 this->setBounds(bounds, HasAABloat::kYes, IsHairline::kNo);
Brian Salomon510dd422017-03-16 12:15:22 -0400484 }
joshualitt3566d442015-09-18 07:12:55 -0700485 }
486
487 const char* name() const override { return "AAStrokeRect"; }
488
Robert Phillips294723d2021-06-17 09:23:58 -0400489 void visitProxies(const GrVisitProxyFunc& func) const override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500490 if (fProgramInfo) {
Chris Daltonbe457422020-03-16 18:05:03 -0600491 fProgramInfo->visitFPProxies(func);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500492 } else {
493 fHelper.visitProxies(func);
494 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400495 }
496
Brian Salomonbaaf4392017-06-15 09:59:23 -0400497 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
Brian Salomona0485d92017-06-14 19:08:01 -0400498
Chris Dalton57ab06c2021-04-22 12:57:28 -0600499 GrProcessorSet::Analysis finalize(const GrCaps& caps, const GrAppliedClip* clip,
500 GrClampType clampType) override {
501 return fHelper.finalizeProcessors(caps, clip, clampType,
502 GrProcessorAnalysisCoverage::kSingleChannel,
503 &fRects.back().fColor, &fWideColor);
Brian Salomona0485d92017-06-14 19:08:01 -0400504 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400505
506private:
Robert Phillips2669a7b2020-03-12 12:07:19 -0400507 GrProgramInfo* programInfo() override { return fProgramInfo; }
508
Chris Dalton97f85902021-07-14 03:16:22 -0600509 bool compatibleWithCoverageAsAlpha(bool usesMSAASurface) const {
510 // When MSAA is enabled, we have to extend our AA bloats and interpolate coverage values
511 // outside 0..1. This makes us incompatible with coverage as alpha.
512 return !usesMSAASurface && fHelper.compatibleWithCoverageAsAlpha();
513 }
514
Robert Phillips4133dc42020-03-11 15:55:55 -0400515 void onCreateProgramInfo(const GrCaps*,
516 SkArenaAlloc*,
Adlai Hollere2296f72020-11-19 13:41:26 -0500517 const GrSurfaceProxyView& writeView,
Chris Dalton6aaf00f2021-07-13 13:26:39 -0600518 bool usesMSAASurface,
Robert Phillips4133dc42020-03-11 15:55:55 -0400519 GrAppliedClip&&,
John Stiles52cb1d02021-06-02 11:58:05 -0400520 const GrDstProxyView&,
Greg Daniel42dbca52020-11-20 10:22:43 -0500521 GrXferBarrierFlags renderPassXferBarriers,
522 GrLoadOp colorLoadOp) override;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500523
Robert Phillips71143952021-06-17 14:55:07 -0400524 void onPrepareDraws(GrMeshDrawTarget*) override;
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700525 void onExecute(GrOpFlushState*, const SkRect& chainBounds) override;
joshualittaa37a962015-09-18 13:03:25 -0700526
John Stilesaf366522020-08-13 09:57:34 -0400527#if GR_TEST_UTILS
528 SkString onDumpInfo() const override {
529 SkString string;
530 for (const auto& info : fRects) {
531 string.appendf(
532 "Color: 0x%08x, ORect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
533 "AssistORect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
534 "IRect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], Degen: %d",
535 info.fColor.toBytes_RGBA(), info.fDevOutside.fLeft, info.fDevOutside.fTop,
536 info.fDevOutside.fRight, info.fDevOutside.fBottom, info.fDevOutsideAssist.fLeft,
537 info.fDevOutsideAssist.fTop, info.fDevOutsideAssist.fRight,
538 info.fDevOutsideAssist.fBottom, info.fDevInside.fLeft, info.fDevInside.fTop,
539 info.fDevInside.fRight, info.fDevInside.fBottom, info.fDegenerate);
540 }
541 string += fHelper.dumpInfo();
542 return string;
543 }
544#endif
545
joshualitt3566d442015-09-18 07:12:55 -0700546 static const int kMiterIndexCnt = 3 * 24;
547 static const int kMiterVertexCnt = 16;
548 static const int kNumMiterRectsInIndexBuffer = 256;
549
550 static const int kBevelIndexCnt = 48 + 36 + 24;
551 static const int kBevelVertexCnt = 24;
552 static const int kNumBevelRectsInIndexBuffer = 256;
553
Brian Salomondbf70722019-02-07 11:31:24 -0500554 static sk_sp<const GrGpuBuffer> GetIndexBuffer(GrResourceProvider*, bool miterStroke);
joshualitt3566d442015-09-18 07:12:55 -0700555
joshualittaa37a962015-09-18 13:03:25 -0700556 const SkMatrix& viewMatrix() const { return fViewMatrix; }
557 bool miterStroke() const { return fMiterStroke; }
joshualitt3566d442015-09-18 07:12:55 -0700558
Herb Derbye25c3002020-10-27 15:57:27 -0400559 CombineResult onCombineIfPossible(GrOp* t, SkArenaAlloc*, const GrCaps&) override;
joshualitt3566d442015-09-18 07:12:55 -0700560
Brian Osmancfec9d52018-11-20 11:39:15 -0500561 void generateAAStrokeRectGeometry(GrVertexWriter& vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500562 const SkPMColor4f& color,
563 bool wideColor,
joshualitt3566d442015-09-18 07:12:55 -0700564 const SkRect& devOutside,
565 const SkRect& devOutsideAssist,
566 const SkRect& devInside,
567 bool miterStroke,
joshualitt11edad92015-09-22 10:32:28 -0700568 bool degenerate,
Chris Dalton97f85902021-07-14 03:16:22 -0600569 const SkVector& devHalfStrokeSize,
570 bool usesMSAASurface) const;
joshualitt3566d442015-09-18 07:12:55 -0700571
Robert Phillipsd2f18732020-03-04 16:12:08 -0500572 Helper fHelper;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500573 SkSTArray<1, RectInfo, true> fRects;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500574 SkMatrix fViewMatrix;
Chris Daltoneb694b72020-03-16 09:25:50 -0600575 GrSimpleMesh* fMesh = nullptr;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500576 GrProgramInfo* fProgramInfo = nullptr;
577 bool fMiterStroke;
578 bool fWideColor;
joshualitt3566d442015-09-18 07:12:55 -0700579
John Stiles7571f9e2020-09-02 22:42:33 -0400580 using INHERITED = GrMeshDrawOp;
joshualitt3566d442015-09-18 07:12:55 -0700581};
582
Robert Phillips4133dc42020-03-11 15:55:55 -0400583void AAStrokeRectOp::onCreateProgramInfo(const GrCaps* caps,
584 SkArenaAlloc* arena,
Adlai Hollere2296f72020-11-19 13:41:26 -0500585 const GrSurfaceProxyView& writeView,
Chris Dalton6aaf00f2021-07-13 13:26:39 -0600586 bool usesMSAASurface,
Robert Phillips4133dc42020-03-11 15:55:55 -0400587 GrAppliedClip&& appliedClip,
John Stiles52cb1d02021-06-02 11:58:05 -0400588 const GrDstProxyView& dstProxyView,
Greg Daniel42dbca52020-11-20 10:22:43 -0500589 GrXferBarrierFlags renderPassXferBarriers,
590 GrLoadOp colorLoadOp) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500591
Chris Dalton97f85902021-07-14 03:16:22 -0600592 GrGeometryProcessor* gp = create_aa_stroke_rect_gp(
593 arena,
594 usesMSAASurface,
595 this->compatibleWithCoverageAsAlpha(usesMSAASurface),
596 this->viewMatrix(),
597 fHelper.usesLocalCoords(),
598 fWideColor);
joshualitt9ff64252015-08-10 09:03:51 -0700599 if (!gp) {
600 SkDebugf("Couldn't create GrGeometryProcessor\n");
Robert Phillips4133dc42020-03-11 15:55:55 -0400601 return;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500602 }
603
Chris Daltoneb0195e2021-08-18 21:39:02 -0600604 fProgramInfo = fHelper.createProgramInfo(caps,
605 arena,
606 writeView,
Chris Dalton2a26c502021-08-26 10:05:11 -0600607 usesMSAASurface,
Chris Daltoneb0195e2021-08-18 21:39:02 -0600608 std::move(appliedClip),
609 dstProxyView,
610 gp,
611 GrPrimitiveType::kTriangles,
612 renderPassXferBarriers,
613 colorLoadOp);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500614}
615
Robert Phillips71143952021-06-17 14:55:07 -0400616void AAStrokeRectOp::onPrepareDraws(GrMeshDrawTarget* target) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500617
618 if (!fProgramInfo) {
Robert Phillips4133dc42020-03-11 15:55:55 -0400619 this->createProgramInfo(target);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500620 if (!fProgramInfo) {
621 return;
622 }
joshualitt9ff64252015-08-10 09:03:51 -0700623 }
624
joshualitt9ff64252015-08-10 09:03:51 -0700625 int innerVertexNum = 4;
626 int outerVertexNum = this->miterStroke() ? 4 : 8;
627 int verticesPerInstance = (outerVertexNum + innerVertexNum) * 2;
628 int indicesPerInstance = this->miterStroke() ? kMiterIndexCnt : kBevelIndexCnt;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500629 int instanceCount = fRects.count();
Robert Phillipsee08d522019-10-28 16:34:44 -0400630 int maxQuads = this->miterStroke() ? kNumMiterRectsInIndexBuffer : kNumBevelRectsInIndexBuffer;
joshualitt9ff64252015-08-10 09:03:51 -0700631
Brian Salomondbf70722019-02-07 11:31:24 -0500632 sk_sp<const GrGpuBuffer> indexBuffer =
Brian Salomon7eae3e02018-08-07 14:02:38 +0000633 GetIndexBuffer(target->resourceProvider(), this->miterStroke());
Brian Salomon12d22642019-01-29 14:38:50 -0500634 if (!indexBuffer) {
635 SkDebugf("Could not allocate indices\n");
636 return;
637 }
Robert Phillipsd2f18732020-03-04 16:12:08 -0500638 PatternHelper helper(target, GrPrimitiveType::kTriangles,
Robert Phillips787fd9d2021-03-22 14:48:09 -0400639 fProgramInfo->geomProc().vertexStride(), std::move(indexBuffer),
Robert Phillipsd2f18732020-03-04 16:12:08 -0500640 verticesPerInstance, indicesPerInstance, instanceCount, maxQuads);
Brian Osmancfec9d52018-11-20 11:39:15 -0500641 GrVertexWriter vertices{ helper.vertices() };
Brian Salomon12d22642019-01-29 14:38:50 -0500642 if (!vertices.fPtr) {
Brian Salomon6a639042016-12-14 11:08:17 -0500643 SkDebugf("Could not allocate vertices\n");
644 return;
645 }
joshualitt9ff64252015-08-10 09:03:51 -0700646
647 for (int i = 0; i < instanceCount; i++) {
Brian Salomon8c5bad32016-12-20 14:43:36 -0500648 const RectInfo& info = fRects[i];
joshualitt9ff64252015-08-10 09:03:51 -0700649 this->generateAAStrokeRectGeometry(vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500650 info.fColor,
651 fWideColor,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500652 info.fDevOutside,
653 info.fDevOutsideAssist,
654 info.fDevInside,
joshualittaa37a962015-09-18 13:03:25 -0700655 fMiterStroke,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500656 info.fDegenerate,
Chris Dalton97f85902021-07-14 03:16:22 -0600657 info.fDevHalfStrokeSize,
658 target->usesMSAASurface());
joshualitt9ff64252015-08-10 09:03:51 -0700659 }
Robert Phillipsd2f18732020-03-04 16:12:08 -0500660 fMesh = helper.mesh();
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700661}
662
663void AAStrokeRectOp::onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500664 if (!fProgramInfo || !fMesh) {
665 return;
666 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500667
Chris Dalton765ed362020-03-16 17:34:44 -0600668 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
Robert Phillips787fd9d2021-03-22 14:48:09 -0400669 flushState->bindTextures(fProgramInfo->geomProc(), nullptr, fProgramInfo->pipeline());
Chris Dalton765ed362020-03-16 17:34:44 -0600670 flushState->drawMesh(*fMesh);
joshualitt9ff64252015-08-10 09:03:51 -0700671}
672
Brian Salomondbf70722019-02-07 11:31:24 -0500673sk_sp<const GrGpuBuffer> AAStrokeRectOp::GetIndexBuffer(GrResourceProvider* resourceProvider,
674 bool miterStroke) {
joshualitt9ff64252015-08-10 09:03:51 -0700675 if (miterStroke) {
Brian Salomon6a639042016-12-14 11:08:17 -0500676 // clang-format off
joshualitt9ff64252015-08-10 09:03:51 -0700677 static const uint16_t gMiterIndices[] = {
678 0 + 0, 1 + 0, 5 + 0, 5 + 0, 4 + 0, 0 + 0,
679 1 + 0, 2 + 0, 6 + 0, 6 + 0, 5 + 0, 1 + 0,
680 2 + 0, 3 + 0, 7 + 0, 7 + 0, 6 + 0, 2 + 0,
681 3 + 0, 0 + 0, 4 + 0, 4 + 0, 7 + 0, 3 + 0,
682
683 0 + 4, 1 + 4, 5 + 4, 5 + 4, 4 + 4, 0 + 4,
684 1 + 4, 2 + 4, 6 + 4, 6 + 4, 5 + 4, 1 + 4,
685 2 + 4, 3 + 4, 7 + 4, 7 + 4, 6 + 4, 2 + 4,
686 3 + 4, 0 + 4, 4 + 4, 4 + 4, 7 + 4, 3 + 4,
687
688 0 + 8, 1 + 8, 5 + 8, 5 + 8, 4 + 8, 0 + 8,
689 1 + 8, 2 + 8, 6 + 8, 6 + 8, 5 + 8, 1 + 8,
690 2 + 8, 3 + 8, 7 + 8, 7 + 8, 6 + 8, 2 + 8,
691 3 + 8, 0 + 8, 4 + 8, 4 + 8, 7 + 8, 3 + 8,
692 };
Brian Salomon6a639042016-12-14 11:08:17 -0500693 // clang-format on
Brian Salomon4dea72a2019-12-18 10:43:10 -0500694 static_assert(SK_ARRAY_COUNT(gMiterIndices) == kMiterIndexCnt);
joshualitt9ff64252015-08-10 09:03:51 -0700695 GR_DEFINE_STATIC_UNIQUE_KEY(gMiterIndexBufferKey);
Chris Daltonff926502017-05-03 14:36:54 -0400696 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -0500697 gMiterIndices, kMiterIndexCnt, kNumMiterRectsInIndexBuffer, kMiterVertexCnt,
698 gMiterIndexBufferKey);
joshualitt9ff64252015-08-10 09:03:51 -0700699 } else {
700 /**
701 * As in miter-stroke, index = a + b, and a is the current index, b is the shift
702 * from the first index. The index layout:
703 * outer AA line: 0~3, 4~7
704 * outer edge: 8~11, 12~15
705 * inner edge: 16~19
706 * inner AA line: 20~23
707 * Following comes a bevel-stroke rect and its indices:
708 *
709 * 4 7
710 * *********************************
711 * * ______________________________ *
712 * * / 12 15 \ *
713 * * / \ *
714 * 0 * |8 16_____________________19 11 | * 3
715 * * | | | | *
716 * * | | **************** | | *
717 * * | | * 20 23 * | | *
718 * * | | * * | | *
719 * * | | * 21 22 * | | *
720 * * | | **************** | | *
721 * * | |____________________| | *
722 * 1 * |9 17 18 10| * 2
723 * * \ / *
724 * * \13 __________________________14/ *
725 * * *
726 * **********************************
727 * 5 6
728 */
Brian Salomon6a639042016-12-14 11:08:17 -0500729 // clang-format off
joshualitt9ff64252015-08-10 09:03:51 -0700730 static const uint16_t gBevelIndices[] = {
731 // Draw outer AA, from outer AA line to outer edge, shift is 0.
732 0 + 0, 1 + 0, 9 + 0, 9 + 0, 8 + 0, 0 + 0,
733 1 + 0, 5 + 0, 13 + 0, 13 + 0, 9 + 0, 1 + 0,
734 5 + 0, 6 + 0, 14 + 0, 14 + 0, 13 + 0, 5 + 0,
735 6 + 0, 2 + 0, 10 + 0, 10 + 0, 14 + 0, 6 + 0,
736 2 + 0, 3 + 0, 11 + 0, 11 + 0, 10 + 0, 2 + 0,
737 3 + 0, 7 + 0, 15 + 0, 15 + 0, 11 + 0, 3 + 0,
738 7 + 0, 4 + 0, 12 + 0, 12 + 0, 15 + 0, 7 + 0,
739 4 + 0, 0 + 0, 8 + 0, 8 + 0, 12 + 0, 4 + 0,
740
741 // Draw the stroke, from outer edge to inner edge, shift is 8.
742 0 + 8, 1 + 8, 9 + 8, 9 + 8, 8 + 8, 0 + 8,
743 1 + 8, 5 + 8, 9 + 8,
744 5 + 8, 6 + 8, 10 + 8, 10 + 8, 9 + 8, 5 + 8,
745 6 + 8, 2 + 8, 10 + 8,
746 2 + 8, 3 + 8, 11 + 8, 11 + 8, 10 + 8, 2 + 8,
747 3 + 8, 7 + 8, 11 + 8,
748 7 + 8, 4 + 8, 8 + 8, 8 + 8, 11 + 8, 7 + 8,
749 4 + 8, 0 + 8, 8 + 8,
750
751 // Draw the inner AA, from inner edge to inner AA line, shift is 16.
752 0 + 16, 1 + 16, 5 + 16, 5 + 16, 4 + 16, 0 + 16,
753 1 + 16, 2 + 16, 6 + 16, 6 + 16, 5 + 16, 1 + 16,
754 2 + 16, 3 + 16, 7 + 16, 7 + 16, 6 + 16, 2 + 16,
755 3 + 16, 0 + 16, 4 + 16, 4 + 16, 7 + 16, 3 + 16,
756 };
Brian Salomon6a639042016-12-14 11:08:17 -0500757 // clang-format on
Brian Salomon4dea72a2019-12-18 10:43:10 -0500758 static_assert(SK_ARRAY_COUNT(gBevelIndices) == kBevelIndexCnt);
joshualitt9ff64252015-08-10 09:03:51 -0700759
760 GR_DEFINE_STATIC_UNIQUE_KEY(gBevelIndexBufferKey);
Chris Daltonff926502017-05-03 14:36:54 -0400761 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -0500762 gBevelIndices, kBevelIndexCnt, kNumBevelRectsInIndexBuffer, kBevelVertexCnt,
763 gBevelIndexBufferKey);
joshualitt9ff64252015-08-10 09:03:51 -0700764 }
765}
766
Herb Derbye25c3002020-10-27 15:57:27 -0400767GrOp::CombineResult AAStrokeRectOp::onCombineIfPossible(GrOp* t, SkArenaAlloc*, const GrCaps& caps)
768{
Brian Salomon6a639042016-12-14 11:08:17 -0500769 AAStrokeRectOp* that = t->cast<AAStrokeRectOp>();
bsalomonabd30f52015-08-13 13:34:48 -0700770
Brian Salomonbaaf4392017-06-15 09:59:23 -0400771 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000772 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700773 }
774
Brian Salomon53e4c3c2016-12-21 11:38:53 -0500775 // TODO combine across miterstroke changes
joshualitt9ff64252015-08-10 09:03:51 -0700776 if (this->miterStroke() != that->miterStroke()) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000777 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700778 }
779
780 // We apply the viewmatrix to the rect points on the cpu. However, if the pipeline uses
Brian Salomonbaaf4392017-06-15 09:59:23 -0400781 // local coords then we won't be able to combine. TODO: Upload local coords as an attribute.
Mike Reed2c383152019-12-18 16:47:47 -0500782 if (fHelper.usesLocalCoords() &&
783 !SkMatrixPriv::CheapEqual(this->viewMatrix(), that->viewMatrix()))
784 {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000785 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700786 }
787
Brian Salomon8c5bad32016-12-20 14:43:36 -0500788 fRects.push_back_n(that->fRects.count(), that->fRects.begin());
Brian Osman2a4c4df2018-12-20 14:06:54 -0500789 fWideColor |= that->fWideColor;
Brian Salomon7eae3e02018-08-07 14:02:38 +0000790 return CombineResult::kMerged;
joshualitt9ff64252015-08-10 09:03:51 -0700791}
792
Brian Osmancfec9d52018-11-20 11:39:15 -0500793void AAStrokeRectOp::generateAAStrokeRectGeometry(GrVertexWriter& vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500794 const SkPMColor4f& color,
795 bool wideColor,
Brian Salomon6a639042016-12-14 11:08:17 -0500796 const SkRect& devOutside,
797 const SkRect& devOutsideAssist,
798 const SkRect& devInside,
799 bool miterStroke,
800 bool degenerate,
Chris Dalton97f85902021-07-14 03:16:22 -0600801 const SkVector& devHalfStrokeSize,
802 bool usesMSAASurface) const {
joshualitt9ff64252015-08-10 09:03:51 -0700803 // We create vertices for four nested rectangles. There are two ramps from 0 to full
804 // coverage, one on the exterior of the stroke and the other on the interior.
joshualitt9ff64252015-08-10 09:03:51 -0700805
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600806 // The following code only works if either devStrokeSize's fX and fY are
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500807 // equal (in which case innerCoverage is same for all sides of the rects) or
808 // if devStrokeSize's fX and fY are both greater than 1.0 (in which case
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600809 // innerCoverage will always be 1).
810 SkASSERT(stroke_dev_half_size_supported(devHalfStrokeSize));
joshualitt9ff64252015-08-10 09:03:51 -0700811
Brian Osmancfec9d52018-11-20 11:39:15 -0500812 auto inset_fan = [](const SkRect& r, SkScalar dx, SkScalar dy) {
813 return GrVertexWriter::TriFanFromRect(r.makeInset(dx, dy));
814 };
joshualitt9ff64252015-08-10 09:03:51 -0700815
Chris Dalton97f85902021-07-14 03:16:22 -0600816 bool tweakAlphaForCoverage = this->compatibleWithCoverageAsAlpha(usesMSAASurface);
817
Brian Osmancfec9d52018-11-20 11:39:15 -0500818 auto maybe_coverage = [tweakAlphaForCoverage](float coverage) {
819 return GrVertexWriter::If(!tweakAlphaForCoverage, coverage);
820 };
821
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600822 // How much do we inset toward the inside of the strokes?
Michael Ludwig144926d2021-09-10 09:34:47 -0400823 float inset = std::min(0.5f, std::min(devHalfStrokeSize.fX, devHalfStrokeSize.fY));
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600824 float innerCoverage = 1;
Michael Ludwig144926d2021-09-10 09:34:47 -0400825 if (inset < 0.5f) {
826 // Stroke is subpixel, so reduce the coverage to simulate the narrower strokes.
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600827 innerCoverage = 2 * inset / (inset + .5f);
828 }
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600829
830 // How much do we outset away from the outside of the strokes?
831 // We always want to keep the AA picture frame one pixel wide.
832 float outset = 1 - inset;
833 float outerCoverage = 0;
Chris Dalton97f85902021-07-14 03:16:22 -0600834
835 // How much do we outset away from the interior side of the stroke (toward the center)?
836 float interiorOutset = outset;
837 float interiorCoverage = outerCoverage;
838
839 if (usesMSAASurface) {
840 // Since we're using MSAA, extend our outsets to ensure any pixel with partial coverage has
841 // a full sample mask.
842 constexpr float msaaExtraBloat = SK_ScalarSqrt2 - .5f;
843 outset += msaaExtraBloat;
844 outerCoverage -= msaaExtraBloat;
845
846 float insetExtraBloat =
847 std::min(inset + msaaExtraBloat,
848 std::min(devHalfStrokeSize.fX, devHalfStrokeSize.fY)) - inset;
849 inset += insetExtraBloat;
850 innerCoverage += insetExtraBloat;
851
852 float interiorExtraBloat =
853 std::min(interiorOutset + msaaExtraBloat,
854 std::min(devInside.width(), devInside.height()) / 2) - interiorOutset;
855 interiorOutset += interiorExtraBloat;
856 interiorCoverage -= interiorExtraBloat;
857 }
858
859 GrVertexColor innerColor(tweakAlphaForCoverage ? color * innerCoverage : color, wideColor);
Brian Osman2a4c4df2018-12-20 14:06:54 -0500860 GrVertexColor outerColor(tweakAlphaForCoverage ? SK_PMColor4fTRANSPARENT : color, wideColor);
Brian Osmancfec9d52018-11-20 11:39:15 -0500861
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600862 // Exterior outset rect (away from stroke).
863 vertices.writeQuad(inset_fan(devOutside, -outset, -outset),
Brian Osmancfec9d52018-11-20 11:39:15 -0500864 outerColor,
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600865 maybe_coverage(outerCoverage));
Brian Osmancfec9d52018-11-20 11:39:15 -0500866
867 if (!miterStroke) {
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600868 // Second exterior outset.
869 vertices.writeQuad(inset_fan(devOutsideAssist, -outset, -outset),
Brian Osmancfec9d52018-11-20 11:39:15 -0500870 outerColor,
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600871 maybe_coverage(outerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700872 }
873
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600874 // Exterior inset rect (toward stroke).
875 vertices.writeQuad(inset_fan(devOutside, inset, inset),
Brian Osmancfec9d52018-11-20 11:39:15 -0500876 innerColor,
877 maybe_coverage(innerCoverage));
878
879 if (!miterStroke) {
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600880 // Second exterior inset.
881 vertices.writeQuad(inset_fan(devOutsideAssist, inset, inset),
Brian Osmancfec9d52018-11-20 11:39:15 -0500882 innerColor,
883 maybe_coverage(innerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700884 }
885
joshualitt11edad92015-09-22 10:32:28 -0700886 if (!degenerate) {
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600887 // Interior inset rect (toward stroke).
888 vertices.writeQuad(inset_fan(devInside, -inset, -inset),
Brian Osmancfec9d52018-11-20 11:39:15 -0500889 innerColor,
890 maybe_coverage(innerCoverage));
joshualitt11edad92015-09-22 10:32:28 -0700891
Chris Dalton3ee0dc62021-07-14 01:36:49 -0600892 // Interior outset rect (away from stroke, toward center of rect).
Chris Dalton97f85902021-07-14 03:16:22 -0600893 SkRect interiorAABoundary = devInside.makeInset(interiorOutset, interiorOutset);
Chris Daltonbdc2cd02021-07-14 01:54:38 -0600894 float coverageBackset = 0; // Adds back coverage when the interior AA edges cross.
895 if (interiorAABoundary.fLeft > interiorAABoundary.fRight) {
Chris Dalton97f85902021-07-14 03:16:22 -0600896 coverageBackset =
897 (interiorAABoundary.fLeft - interiorAABoundary.fRight) / (interiorOutset * 2);
Chris Daltonbdc2cd02021-07-14 01:54:38 -0600898 interiorAABoundary.fLeft = interiorAABoundary.fRight = interiorAABoundary.centerX();
899 }
900 if (interiorAABoundary.fTop > interiorAABoundary.fBottom) {
901 coverageBackset = std::max(
Chris Dalton97f85902021-07-14 03:16:22 -0600902 (interiorAABoundary.fTop - interiorAABoundary.fBottom) / (interiorOutset * 2),
Chris Daltonbdc2cd02021-07-14 01:54:38 -0600903 coverageBackset);
904 interiorAABoundary.fTop = interiorAABoundary.fBottom = interiorAABoundary.centerY();
905 }
906 if (coverageBackset > 0) {
907 // The interior edges crossed. Lerp back toward innerCoverage, which is what this op
908 // will draw in the degenerate case. This gives a smooth transition into the degenerate
909 // case.
910 interiorCoverage += interiorCoverage * (1 - coverageBackset) +
911 innerCoverage * coverageBackset;
912 }
913 GrVertexColor interiorColor(tweakAlphaForCoverage ? color * interiorCoverage : color,
914 wideColor);
915 vertices.writeQuad(GrVertexWriter::TriFanFromRect(interiorAABoundary),
916 interiorColor,
917 maybe_coverage(interiorCoverage));
Brian Osmancfec9d52018-11-20 11:39:15 -0500918 } else {
919 // When the interior rect has become degenerate we smoosh to a single point
920 SkASSERT(devInside.fLeft == devInside.fRight && devInside.fTop == devInside.fBottom);
921
922 vertices.writeQuad(GrVertexWriter::TriFanFromRect(devInside),
923 innerColor,
924 maybe_coverage(innerCoverage));
925
926 // ... unless we are degenerate, in which case we must apply the scaled coverage
927 vertices.writeQuad(GrVertexWriter::TriFanFromRect(devInside),
928 innerColor,
929 maybe_coverage(innerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700930 }
931}
932
Michael Ludwig72ab3462018-12-10 12:43:36 -0500933} // anonymous namespace
joshualitt3566d442015-09-18 07:12:55 -0700934
Robert Phillipscadd5db2021-08-30 11:37:18 -0400935namespace skgpu::v1::StrokeRectOp {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500936
Herb Derbyc76d4092020-10-07 16:46:15 -0400937GrOp::Owner Make(GrRecordingContext* context,
938 GrPaint&& paint,
939 GrAAType aaType,
940 const SkMatrix& viewMatrix,
941 const SkRect& rect,
942 const SkStrokeRec& stroke) {
Brian Salomonb18a9472021-06-23 10:03:07 -0400943 SkASSERT(!context->priv().caps()->reducedShaderMode());
Michael Ludwig72ab3462018-12-10 12:43:36 -0500944 if (aaType == GrAAType::kCoverage) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500945 return AAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, stroke);
946 } else {
947 return NonAAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, stroke, aaType);
948 }
949}
950
Herb Derbyc76d4092020-10-07 16:46:15 -0400951GrOp::Owner MakeNested(GrRecordingContext* context,
952 GrPaint&& paint,
953 const SkMatrix& viewMatrix,
954 const SkRect rects[2]) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400955 SkASSERT(viewMatrix.rectStaysRect());
956 SkASSERT(!rects[0].isEmpty() && !rects[1].isEmpty());
957
Chris Dalton0196a722021-07-14 18:59:59 -0600958 SkRect devOutside = viewMatrix.mapRect(rects[0]);
959 SkRect devInside = viewMatrix.mapRect(rects[1]);
960 float dx = devOutside.fRight - devInside.fRight;
961 float dy = devOutside.fBottom - devInside.fBottom;
962
Chris Dalton4f489102021-07-14 14:44:28 -0600963 // Clips our draw rects 1 full pixel outside the viewport. This avoids interpolation precision
964 // issues with very large coordinates.
Chris Dalton0196a722021-07-14 18:59:59 -0600965 const float m = context->priv().caps()->maxRenderTargetSize();
Chris Dalton4f489102021-07-14 14:44:28 -0600966 const SkRect visibilityBounds = SkRect::MakeWH(m, m).makeOutset(1, 1);
967
Chris Dalton0196a722021-07-14 18:59:59 -0600968 if (!devOutside.intersect(visibilityBounds.makeOutset(dx, dy))) {
Chris Dalton4f489102021-07-14 14:44:28 -0600969 return nullptr;
970 }
971
Chris Dalton4f489102021-07-14 14:44:28 -0600972 if (devInside.isEmpty() || !devInside.intersect(visibilityBounds)) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400973 if (devOutside.isEmpty()) {
974 return nullptr;
975 }
Michael Ludwig6b45c5d2020-02-07 09:56:38 -0500976 DrawQuad quad{GrQuad::MakeFromRect(rects[0], viewMatrix), GrQuad(rects[0]),
977 GrQuadAAFlags::kAll};
Robert Phillipsfbf02142021-09-01 16:31:34 -0400978 return FillRectOp::Make(context, std::move(paint), GrAAType::kCoverage, &quad);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400979 }
980
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500981 return AAStrokeRectOp::Make(context, std::move(paint), viewMatrix, devOutside,
Chris Dalton0196a722021-07-14 18:59:59 -0600982 devInside, SkVector{dx, dy} * .5f);
joshualittaa37a962015-09-18 13:03:25 -0700983}
984
Robert Phillipscadd5db2021-08-30 11:37:18 -0400985} // namespace skgpu::v1::StrokeRectOp
joshualitt9ff64252015-08-10 09:03:51 -0700986
Hal Canary6f6961e2017-01-31 13:50:44 -0500987#if GR_TEST_UTILS
joshualitt9ff64252015-08-10 09:03:51 -0700988
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500989#include "src/gpu/GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700990
Michael Ludwig72ab3462018-12-10 12:43:36 -0500991GR_DRAW_OP_TEST_DEFINE(NonAAStrokeRectOp) {
992 SkMatrix viewMatrix = GrTest::TestMatrix(random);
993 SkRect rect = GrTest::TestRect(random);
994 SkScalar strokeWidth = random->nextBool() ? 0.0f : 2.0f;
995 SkPaint strokePaint;
996 strokePaint.setStrokeWidth(strokeWidth);
997 strokePaint.setStyle(SkPaint::kStroke_Style);
998 strokePaint.setStrokeJoin(SkPaint::kMiter_Join);
999 SkStrokeRec strokeRec(strokePaint);
1000 GrAAType aaType = GrAAType::kNone;
Chris Dalton6ce447a2019-06-23 18:07:38 -06001001 if (numSamples > 1) {
Michael Ludwig72ab3462018-12-10 12:43:36 -05001002 aaType = random->nextBool() ? GrAAType::kMSAA : GrAAType::kNone;
1003 }
1004 return NonAAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, strokeRec, aaType);
1005}
1006
Brian Salomonbaaf4392017-06-15 09:59:23 -04001007GR_DRAW_OP_TEST_DEFINE(AAStrokeRectOp) {
joshualitt9ff64252015-08-10 09:03:51 -07001008 bool miterStroke = random->nextBool();
1009
bsalomon40ef4852016-05-02 13:22:13 -07001010 // Create either a empty rect or a non-empty rect.
Brian Salomon6a639042016-12-14 11:08:17 -05001011 SkRect rect =
1012 random->nextBool() ? SkRect::MakeXYWH(10, 10, 50, 40) : SkRect::MakeXYWH(6, 7, 0, 0);
Brian Osman116b33e2020-02-05 13:34:09 -05001013 SkScalar minDim = std::min(rect.width(), rect.height());
bsalomon40ef4852016-05-02 13:22:13 -07001014 SkScalar strokeWidth = random->nextUScalar1() * minDim;
joshualitt9ff64252015-08-10 09:03:51 -07001015
bsalomon40ef4852016-05-02 13:22:13 -07001016 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
1017 rec.setStrokeStyle(strokeWidth);
1018 rec.setStrokeParams(SkPaint::kButt_Cap,
Brian Salomon6a639042016-12-14 11:08:17 -05001019 miterStroke ? SkPaint::kMiter_Join : SkPaint::kBevel_Join, 1.f);
bsalomon40ef4852016-05-02 13:22:13 -07001020 SkMatrix matrix = GrTest::TestMatrixRectStaysRect(random);
Michael Ludwig72ab3462018-12-10 12:43:36 -05001021 return AAStrokeRectOp::Make(context, std::move(paint), matrix, rect, rec);
joshualitt9ff64252015-08-10 09:03:51 -07001022}
1023
1024#endif