blob: b120195db8bb12649e2d48b1c6c024d154381c21 [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "src/gpu/ops/GrStrokeRectOp.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"
22#include "src/gpu/ops/GrFillRectOp.h"
23#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.
31inline static 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 */
61static void init_nonaa_stroke_rect_strip(SkPoint verts[10], const SkRect& rect, SkScalar width) {
62 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,
Robert Phillips4133dc42020-03-11 15:55:55 -0400175 GrAppliedClip&& clip,
John Stiles52cb1d02021-06-02 11:58:05 -0400176 const GrDstProxyView& dstProxyView,
Greg Daniel42dbca52020-11-20 10:22:43 -0500177 GrXferBarrierFlags renderPassXferBarriers,
178 GrLoadOp colorLoadOp) override {
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500179 GrGeometryProcessor* gp;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500180 {
181 using namespace GrDefaultGeoProcFactory;
182 Color color(fColor);
183 LocalCoords::Type localCoordsType = fHelper.usesLocalCoords()
184 ? LocalCoords::kUsePosition_Type
185 : LocalCoords::kUnused_Type;
Brian Osmanf0aee742020-03-12 09:28:44 -0400186 gp = GrDefaultGeoProcFactory::Make(arena, color, Coverage::kSolid_Type, localCoordsType,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500187 fViewMatrix);
188 }
189
Robert Phillips4133dc42020-03-11 15:55:55 -0400190 GrPrimitiveType primType = (fStrokeWidth > 0) ? GrPrimitiveType::kTriangleStrip
191 : GrPrimitiveType::kLineStrip;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500192
Brian Salomon8afde5f2020-04-01 16:22:00 -0400193 fProgramInfo = fHelper.createProgramInfo(caps, arena, writeView, std::move(clip),
Greg Danield358cbe2020-09-11 09:33:54 -0400194 dstProxyView, gp, primType,
Greg Daniel42dbca52020-11-20 10:22:43 -0500195 renderPassXferBarriers, colorLoadOp);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500196 }
197
Robert Phillips71143952021-06-17 14:55:07 -0400198 void onPrepareDraws(GrMeshDrawTarget* target) override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500199 if (!fProgramInfo) {
Robert Phillips4133dc42020-03-11 15:55:55 -0400200 this->createProgramInfo(target);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500201 }
202
Robert Phillips787fd9d2021-03-22 14:48:09 -0400203 size_t kVertexStride = fProgramInfo->geomProc().vertexStride();
Michael Ludwig72ab3462018-12-10 12:43:36 -0500204 int vertexCount = kVertsPerHairlineRect;
205 if (fStrokeWidth > 0) {
206 vertexCount = kVertsPerStrokeRect;
207 }
208
Brian Salomon12d22642019-01-29 14:38:50 -0500209 sk_sp<const GrBuffer> vertexBuffer;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500210 int firstVertex;
211
212 void* verts =
213 target->makeVertexSpace(kVertexStride, vertexCount, &vertexBuffer, &firstVertex);
214
215 if (!verts) {
216 SkDebugf("Could not allocate vertices\n");
217 return;
218 }
219
220 SkPoint* vertex = reinterpret_cast<SkPoint*>(verts);
221
Michael Ludwig72ab3462018-12-10 12:43:36 -0500222 if (fStrokeWidth > 0) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500223 init_nonaa_stroke_rect_strip(vertex, fRect, fStrokeWidth);
224 } else {
225 // hairline
Michael Ludwig72ab3462018-12-10 12:43:36 -0500226 vertex[0].set(fRect.fLeft, fRect.fTop);
227 vertex[1].set(fRect.fRight, fRect.fTop);
228 vertex[2].set(fRect.fRight, fRect.fBottom);
229 vertex[3].set(fRect.fLeft, fRect.fBottom);
230 vertex[4].set(fRect.fLeft, fRect.fTop);
231 }
232
Robert Phillipsd2f18732020-03-04 16:12:08 -0500233 fMesh = target->allocMesh();
Chris Dalton37c7bdd2020-03-13 09:21:12 -0600234 fMesh->set(std::move(vertexBuffer), vertexCount, firstVertex);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700235 }
236
237 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500238 if (!fMesh) {
239 return;
240 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500241
Chris Dalton765ed362020-03-16 17:34:44 -0600242 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
Robert Phillips787fd9d2021-03-22 14:48:09 -0400243 flushState->bindTextures(fProgramInfo->geomProc(), nullptr, fProgramInfo->pipeline());
Chris Dalton765ed362020-03-16 17:34:44 -0600244 flushState->drawMesh(*fMesh);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500245 }
246
John Stilesaf366522020-08-13 09:57:34 -0400247#if GR_TEST_UTILS
248 SkString onDumpInfo() const override {
249 return SkStringPrintf("Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
250 "StrokeWidth: %.2f\n%s",
251 fColor.toBytes_RGBA(), fRect.fLeft, fRect.fTop, fRect.fRight,
252 fRect.fBottom, fStrokeWidth, fHelper.dumpInfo().c_str());
253 }
254#endif
255
Michael Ludwig72ab3462018-12-10 12:43:36 -0500256 // TODO: override onCombineIfPossible
257
Robert Phillipsd2f18732020-03-04 16:12:08 -0500258 Helper fHelper;
259 SkPMColor4f fColor;
260 SkMatrix fViewMatrix;
261 SkRect fRect;
262 SkScalar fStrokeWidth;
Chris Daltoneb694b72020-03-16 09:25:50 -0600263 GrSimpleMesh* fMesh = nullptr;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500264 GrProgramInfo* fProgramInfo = nullptr;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500265
266 const static int kVertsPerHairlineRect = 5;
267 const static int kVertsPerStrokeRect = 10;
268
John Stiles7571f9e2020-09-02 22:42:33 -0400269 using INHERITED = GrMeshDrawOp;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500270};
271
272///////////////////////////////////////////////////////////////////////////////////////////////////
273// AA Stroking
274///////////////////////////////////////////////////////////////////////////////////////////////////
275
276GR_DECLARE_STATIC_UNIQUE_KEY(gMiterIndexBufferKey);
277GR_DECLARE_STATIC_UNIQUE_KEY(gBevelIndexBufferKey);
278
279static void compute_aa_rects(SkRect* devOutside, SkRect* devOutsideAssist, SkRect* devInside,
280 bool* isDegenerate, const SkMatrix& viewMatrix, const SkRect& rect,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500281 SkScalar strokeWidth, bool miterStroke, SkVector* devHalfStrokeSize) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700282 SkRect devRect;
283 viewMatrix.mapRect(&devRect, rect);
284
285 SkVector devStrokeSize;
286 if (strokeWidth > 0) {
287 devStrokeSize.set(strokeWidth, strokeWidth);
288 viewMatrix.mapVectors(&devStrokeSize, 1);
289 devStrokeSize.setAbs(devStrokeSize);
290 } else {
291 devStrokeSize.set(SK_Scalar1, SK_Scalar1);
292 }
293
294 const SkScalar dx = devStrokeSize.fX;
295 const SkScalar dy = devStrokeSize.fY;
Mike Reed8be952a2017-02-13 20:44:33 -0500296 const SkScalar rx = SkScalarHalf(dx);
297 const SkScalar ry = SkScalarHalf(dy);
bsalomon8b7a9e12016-07-06 13:06:22 -0700298
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500299 devHalfStrokeSize->fX = rx;
300 devHalfStrokeSize->fY = ry;
301
bsalomon8b7a9e12016-07-06 13:06:22 -0700302 *devOutside = devRect;
303 *devOutsideAssist = devRect;
304 *devInside = devRect;
305
306 devOutside->outset(rx, ry);
307 devInside->inset(rx, ry);
308
309 // If we have a degenerate stroking rect(ie the stroke is larger than inner rect) then we
310 // make a degenerate inside rect to avoid double hitting. We will also jam all of the points
311 // together when we render these rects.
312 SkScalar spare;
313 {
314 SkScalar w = devRect.width() - dx;
315 SkScalar h = devRect.height() - dy;
Brian Osman788b9162020-02-07 10:36:46 -0500316 spare = std::min(w, h);
bsalomon8b7a9e12016-07-06 13:06:22 -0700317 }
318
319 *isDegenerate = spare <= 0;
320 if (*isDegenerate) {
321 devInside->fLeft = devInside->fRight = devRect.centerX();
322 devInside->fTop = devInside->fBottom = devRect.centerY();
323 }
324
325 // For bevel-stroke, use 2 SkRect instances(devOutside and devOutsideAssist)
326 // to draw the outside of the octagon. Because there are 8 vertices on the outer
327 // edge, while vertex number of inner edge is 4, the same as miter-stroke.
328 if (!miterStroke) {
329 devOutside->inset(0, ry);
330 devOutsideAssist->outset(0, ry);
331 }
332}
333
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500334static GrGeometryProcessor* create_aa_stroke_rect_gp(SkArenaAlloc* arena,
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500335 bool tweakAlphaForCoverage,
336 const SkMatrix& viewMatrix,
337 bool usesLocalCoords,
338 bool wideColor) {
joshualitt9ff64252015-08-10 09:03:51 -0700339 using namespace GrDefaultGeoProcFactory;
340
Brian Osman2a4c4df2018-12-20 14:06:54 -0500341 Coverage::Type coverageType =
342 tweakAlphaForCoverage ? Coverage::kSolid_Type : Coverage::kAttribute_Type;
Brian Salomon8c852be2017-01-04 10:44:42 -0500343 LocalCoords::Type localCoordsType =
Brian Osman2a4c4df2018-12-20 14:06:54 -0500344 usesLocalCoords ? LocalCoords::kUsePosition_Type : LocalCoords::kUnused_Type;
345 Color::Type colorType =
346 wideColor ? Color::kPremulWideColorAttribute_Type: Color::kPremulGrColorAttribute_Type;
347
Brian Osmanf0aee742020-03-12 09:28:44 -0400348 return MakeForDeviceSpace(arena, colorType, coverageType, localCoordsType, viewMatrix);
joshualitt9ff64252015-08-10 09:03:51 -0700349}
350
Brian Salomonbaaf4392017-06-15 09:59:23 -0400351class AAStrokeRectOp final : public GrMeshDrawOp {
352private:
353 using Helper = GrSimpleMeshDrawOpHelper;
354
joshualitt3566d442015-09-18 07:12:55 -0700355public:
Brian Salomon25a88092016-12-01 09:36:50 -0500356 DEFINE_OP_CLASS_ID
joshualitt3566d442015-09-18 07:12:55 -0700357
Herb Derbyc76d4092020-10-07 16:46:15 -0400358 static GrOp::Owner Make(GrRecordingContext* context,
359 GrPaint&& paint,
360 const SkMatrix& viewMatrix,
361 const SkRect& devOutside,
362 const SkRect& devInside,
363 const SkVector& devHalfStrokeSize) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400364 return Helper::FactoryHelper<AAStrokeRectOp>(context, std::move(paint), viewMatrix,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500365 devOutside, devInside, devHalfStrokeSize);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400366 }
367
Herb Derbyc76d4092020-10-07 16:46:15 -0400368 AAStrokeRectOp(GrProcessorSet* processorSet, const SkPMColor4f& color,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500369 const SkMatrix& viewMatrix, const SkRect& devOutside, const SkRect& devInside,
370 const SkVector& devHalfStrokeSize)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400371 : INHERITED(ClassID())
Herb Derbyc76d4092020-10-07 16:46:15 -0400372 , fHelper(processorSet, GrAAType::kCoverage)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400373 , fViewMatrix(viewMatrix) {
caryclarkd6562002016-07-27 12:02:07 -0700374 SkASSERT(!devOutside.isEmpty());
375 SkASSERT(!devInside.isEmpty());
joshualitt3566d442015-09-18 07:12:55 -0700376
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500377 fRects.emplace_back(RectInfo{color, devOutside, devOutside, devInside, devHalfStrokeSize, false});
Greg Daniel5faf4742019-10-01 15:14:44 -0400378 this->setBounds(devOutside, HasAABloat::kYes, IsHairline::kNo);
bsalomon8b7a9e12016-07-06 13:06:22 -0700379 fMiterStroke = true;
380 }
381
Herb Derbyc76d4092020-10-07 16:46:15 -0400382 static GrOp::Owner Make(GrRecordingContext* context,
383 GrPaint&& paint,
384 const SkMatrix& viewMatrix,
385 const SkRect& rect,
386 const SkStrokeRec& stroke) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700387 bool isMiter;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500388 if (!allowed_stroke(stroke, GrAA::kYes, &isMiter)) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700389 return nullptr;
390 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400391 return Helper::FactoryHelper<AAStrokeRectOp>(context, std::move(paint), viewMatrix, rect,
392 stroke, isMiter);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400393 }
bsalomon8b7a9e12016-07-06 13:06:22 -0700394
Herb Derbyc76d4092020-10-07 16:46:15 -0400395 AAStrokeRectOp(GrProcessorSet* processorSet, const SkPMColor4f& color,
Brian Osman936fe7d2018-10-30 15:30:35 -0400396 const SkMatrix& viewMatrix, const SkRect& rect, const SkStrokeRec& stroke,
397 bool isMiter)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400398 : INHERITED(ClassID())
Herb Derbyc76d4092020-10-07 16:46:15 -0400399 , fHelper(processorSet, GrAAType::kCoverage)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400400 , fViewMatrix(viewMatrix) {
401 fMiterStroke = isMiter;
402 RectInfo& info = fRects.push_back();
Michael Ludwig72ab3462018-12-10 12:43:36 -0500403 compute_aa_rects(&info.fDevOutside, &info.fDevOutsideAssist, &info.fDevInside,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500404 &info.fDegenerate, viewMatrix, rect, stroke.getWidth(), isMiter,
405 &info.fDevHalfStrokeSize);
Brian Salomon8c5bad32016-12-20 14:43:36 -0500406 info.fColor = color;
Brian Salomon510dd422017-03-16 12:15:22 -0400407 if (isMiter) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400408 this->setBounds(info.fDevOutside, HasAABloat::kYes, IsHairline::kNo);
Brian Salomon510dd422017-03-16 12:15:22 -0400409 } else {
410 // The outer polygon of the bevel stroke is an octagon specified by the points of a
411 // pair of overlapping rectangles where one is wide and the other is narrow.
412 SkRect bounds = info.fDevOutside;
413 bounds.joinPossiblyEmptyRect(info.fDevOutsideAssist);
Greg Daniel5faf4742019-10-01 15:14:44 -0400414 this->setBounds(bounds, HasAABloat::kYes, IsHairline::kNo);
Brian Salomon510dd422017-03-16 12:15:22 -0400415 }
joshualitt3566d442015-09-18 07:12:55 -0700416 }
417
418 const char* name() const override { return "AAStrokeRect"; }
419
Robert Phillips294723d2021-06-17 09:23:58 -0400420 void visitProxies(const GrVisitProxyFunc& func) const override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500421 if (fProgramInfo) {
Chris Daltonbe457422020-03-16 18:05:03 -0600422 fProgramInfo->visitFPProxies(func);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500423 } else {
424 fHelper.visitProxies(func);
425 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400426 }
427
Brian Salomonbaaf4392017-06-15 09:59:23 -0400428 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
Brian Salomona0485d92017-06-14 19:08:01 -0400429
Chris Dalton57ab06c2021-04-22 12:57:28 -0600430 GrProcessorSet::Analysis finalize(const GrCaps& caps, const GrAppliedClip* clip,
431 GrClampType clampType) override {
432 return fHelper.finalizeProcessors(caps, clip, clampType,
433 GrProcessorAnalysisCoverage::kSingleChannel,
434 &fRects.back().fColor, &fWideColor);
Brian Salomona0485d92017-06-14 19:08:01 -0400435 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400436
437private:
Robert Phillips2669a7b2020-03-12 12:07:19 -0400438 GrProgramInfo* programInfo() override { return fProgramInfo; }
439
Robert Phillips4133dc42020-03-11 15:55:55 -0400440 void onCreateProgramInfo(const GrCaps*,
441 SkArenaAlloc*,
Adlai Hollere2296f72020-11-19 13:41:26 -0500442 const GrSurfaceProxyView& writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400443 GrAppliedClip&&,
John Stiles52cb1d02021-06-02 11:58:05 -0400444 const GrDstProxyView&,
Greg Daniel42dbca52020-11-20 10:22:43 -0500445 GrXferBarrierFlags renderPassXferBarriers,
446 GrLoadOp colorLoadOp) override;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500447
Robert Phillips71143952021-06-17 14:55:07 -0400448 void onPrepareDraws(GrMeshDrawTarget*) override;
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700449 void onExecute(GrOpFlushState*, const SkRect& chainBounds) override;
joshualittaa37a962015-09-18 13:03:25 -0700450
John Stilesaf366522020-08-13 09:57:34 -0400451#if GR_TEST_UTILS
452 SkString onDumpInfo() const override {
453 SkString string;
454 for (const auto& info : fRects) {
455 string.appendf(
456 "Color: 0x%08x, ORect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
457 "AssistORect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
458 "IRect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], Degen: %d",
459 info.fColor.toBytes_RGBA(), info.fDevOutside.fLeft, info.fDevOutside.fTop,
460 info.fDevOutside.fRight, info.fDevOutside.fBottom, info.fDevOutsideAssist.fLeft,
461 info.fDevOutsideAssist.fTop, info.fDevOutsideAssist.fRight,
462 info.fDevOutsideAssist.fBottom, info.fDevInside.fLeft, info.fDevInside.fTop,
463 info.fDevInside.fRight, info.fDevInside.fBottom, info.fDegenerate);
464 }
465 string += fHelper.dumpInfo();
466 return string;
467 }
468#endif
469
joshualitt3566d442015-09-18 07:12:55 -0700470 static const int kMiterIndexCnt = 3 * 24;
471 static const int kMiterVertexCnt = 16;
472 static const int kNumMiterRectsInIndexBuffer = 256;
473
474 static const int kBevelIndexCnt = 48 + 36 + 24;
475 static const int kBevelVertexCnt = 24;
476 static const int kNumBevelRectsInIndexBuffer = 256;
477
Brian Salomondbf70722019-02-07 11:31:24 -0500478 static sk_sp<const GrGpuBuffer> GetIndexBuffer(GrResourceProvider*, bool miterStroke);
joshualitt3566d442015-09-18 07:12:55 -0700479
joshualittaa37a962015-09-18 13:03:25 -0700480 const SkMatrix& viewMatrix() const { return fViewMatrix; }
481 bool miterStroke() const { return fMiterStroke; }
joshualitt3566d442015-09-18 07:12:55 -0700482
Herb Derbye25c3002020-10-27 15:57:27 -0400483 CombineResult onCombineIfPossible(GrOp* t, SkArenaAlloc*, const GrCaps&) override;
joshualitt3566d442015-09-18 07:12:55 -0700484
Brian Osmancfec9d52018-11-20 11:39:15 -0500485 void generateAAStrokeRectGeometry(GrVertexWriter& vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500486 const SkPMColor4f& color,
487 bool wideColor,
joshualitt3566d442015-09-18 07:12:55 -0700488 const SkRect& devOutside,
489 const SkRect& devOutsideAssist,
490 const SkRect& devInside,
491 bool miterStroke,
joshualitt11edad92015-09-22 10:32:28 -0700492 bool degenerate,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500493 bool tweakAlphaForCoverage,
494 const SkVector& devHalfStrokeSize) const;
joshualitt3566d442015-09-18 07:12:55 -0700495
bsalomon8b7a9e12016-07-06 13:06:22 -0700496 // TODO support AA rotated stroke rects by copying around view matrices
Brian Salomon8c5bad32016-12-20 14:43:36 -0500497 struct RectInfo {
Brian Osmancf860852018-10-31 14:04:39 -0400498 SkPMColor4f fColor;
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500499 SkRect fDevOutside;
500 SkRect fDevOutsideAssist;
501 SkRect fDevInside;
502 SkVector fDevHalfStrokeSize;
503 bool fDegenerate;
bsalomon8b7a9e12016-07-06 13:06:22 -0700504 };
505
Robert Phillipsd2f18732020-03-04 16:12:08 -0500506 Helper fHelper;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500507 SkSTArray<1, RectInfo, true> fRects;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500508 SkMatrix fViewMatrix;
Chris Daltoneb694b72020-03-16 09:25:50 -0600509 GrSimpleMesh* fMesh = nullptr;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500510 GrProgramInfo* fProgramInfo = nullptr;
511 bool fMiterStroke;
512 bool fWideColor;
joshualitt3566d442015-09-18 07:12:55 -0700513
John Stiles7571f9e2020-09-02 22:42:33 -0400514 using INHERITED = GrMeshDrawOp;
joshualitt3566d442015-09-18 07:12:55 -0700515};
516
Robert Phillips4133dc42020-03-11 15:55:55 -0400517void AAStrokeRectOp::onCreateProgramInfo(const GrCaps* caps,
518 SkArenaAlloc* arena,
Adlai Hollere2296f72020-11-19 13:41:26 -0500519 const GrSurfaceProxyView& writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400520 GrAppliedClip&& appliedClip,
John Stiles52cb1d02021-06-02 11:58:05 -0400521 const GrDstProxyView& dstProxyView,
Greg Daniel42dbca52020-11-20 10:22:43 -0500522 GrXferBarrierFlags renderPassXferBarriers,
523 GrLoadOp colorLoadOp) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500524
525 GrGeometryProcessor* gp = create_aa_stroke_rect_gp(arena,
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500526 fHelper.compatibleWithCoverageAsAlpha(),
527 this->viewMatrix(),
528 fHelper.usesLocalCoords(),
529 fWideColor);
joshualitt9ff64252015-08-10 09:03:51 -0700530 if (!gp) {
531 SkDebugf("Couldn't create GrGeometryProcessor\n");
Robert Phillips4133dc42020-03-11 15:55:55 -0400532 return;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500533 }
534
Robert Phillips4133dc42020-03-11 15:55:55 -0400535 fProgramInfo = fHelper.createProgramInfo(caps,
536 arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400537 writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400538 std::move(appliedClip),
539 dstProxyView,
540 gp,
Greg Danield358cbe2020-09-11 09:33:54 -0400541 GrPrimitiveType::kTriangles,
Greg Daniel42dbca52020-11-20 10:22:43 -0500542 renderPassXferBarriers,
543 colorLoadOp);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500544}
545
Robert Phillips71143952021-06-17 14:55:07 -0400546void AAStrokeRectOp::onPrepareDraws(GrMeshDrawTarget* target) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500547
548 if (!fProgramInfo) {
Robert Phillips4133dc42020-03-11 15:55:55 -0400549 this->createProgramInfo(target);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500550 if (!fProgramInfo) {
551 return;
552 }
joshualitt9ff64252015-08-10 09:03:51 -0700553 }
554
joshualitt9ff64252015-08-10 09:03:51 -0700555 int innerVertexNum = 4;
556 int outerVertexNum = this->miterStroke() ? 4 : 8;
557 int verticesPerInstance = (outerVertexNum + innerVertexNum) * 2;
558 int indicesPerInstance = this->miterStroke() ? kMiterIndexCnt : kBevelIndexCnt;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500559 int instanceCount = fRects.count();
Robert Phillipsee08d522019-10-28 16:34:44 -0400560 int maxQuads = this->miterStroke() ? kNumMiterRectsInIndexBuffer : kNumBevelRectsInIndexBuffer;
joshualitt9ff64252015-08-10 09:03:51 -0700561
Brian Salomondbf70722019-02-07 11:31:24 -0500562 sk_sp<const GrGpuBuffer> indexBuffer =
Brian Salomon7eae3e02018-08-07 14:02:38 +0000563 GetIndexBuffer(target->resourceProvider(), this->miterStroke());
Brian Salomon12d22642019-01-29 14:38:50 -0500564 if (!indexBuffer) {
565 SkDebugf("Could not allocate indices\n");
566 return;
567 }
Robert Phillipsd2f18732020-03-04 16:12:08 -0500568 PatternHelper helper(target, GrPrimitiveType::kTriangles,
Robert Phillips787fd9d2021-03-22 14:48:09 -0400569 fProgramInfo->geomProc().vertexStride(), std::move(indexBuffer),
Robert Phillipsd2f18732020-03-04 16:12:08 -0500570 verticesPerInstance, indicesPerInstance, instanceCount, maxQuads);
Brian Osmancfec9d52018-11-20 11:39:15 -0500571 GrVertexWriter vertices{ helper.vertices() };
Brian Salomon12d22642019-01-29 14:38:50 -0500572 if (!vertices.fPtr) {
Brian Salomon6a639042016-12-14 11:08:17 -0500573 SkDebugf("Could not allocate vertices\n");
574 return;
575 }
joshualitt9ff64252015-08-10 09:03:51 -0700576
577 for (int i = 0; i < instanceCount; i++) {
Brian Salomon8c5bad32016-12-20 14:43:36 -0500578 const RectInfo& info = fRects[i];
joshualitt9ff64252015-08-10 09:03:51 -0700579 this->generateAAStrokeRectGeometry(vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500580 info.fColor,
581 fWideColor,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500582 info.fDevOutside,
583 info.fDevOutsideAssist,
584 info.fDevInside,
joshualittaa37a962015-09-18 13:03:25 -0700585 fMiterStroke,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500586 info.fDegenerate,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500587 fHelper.compatibleWithCoverageAsAlpha(),
588 info.fDevHalfStrokeSize);
joshualitt9ff64252015-08-10 09:03:51 -0700589 }
Robert Phillipsd2f18732020-03-04 16:12:08 -0500590 fMesh = helper.mesh();
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700591}
592
593void AAStrokeRectOp::onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500594 if (!fProgramInfo || !fMesh) {
595 return;
596 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500597
Chris Dalton765ed362020-03-16 17:34:44 -0600598 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
Robert Phillips787fd9d2021-03-22 14:48:09 -0400599 flushState->bindTextures(fProgramInfo->geomProc(), nullptr, fProgramInfo->pipeline());
Chris Dalton765ed362020-03-16 17:34:44 -0600600 flushState->drawMesh(*fMesh);
joshualitt9ff64252015-08-10 09:03:51 -0700601}
602
Brian Salomondbf70722019-02-07 11:31:24 -0500603sk_sp<const GrGpuBuffer> AAStrokeRectOp::GetIndexBuffer(GrResourceProvider* resourceProvider,
604 bool miterStroke) {
joshualitt9ff64252015-08-10 09:03:51 -0700605 if (miterStroke) {
Brian Salomon6a639042016-12-14 11:08:17 -0500606 // clang-format off
joshualitt9ff64252015-08-10 09:03:51 -0700607 static const uint16_t gMiterIndices[] = {
608 0 + 0, 1 + 0, 5 + 0, 5 + 0, 4 + 0, 0 + 0,
609 1 + 0, 2 + 0, 6 + 0, 6 + 0, 5 + 0, 1 + 0,
610 2 + 0, 3 + 0, 7 + 0, 7 + 0, 6 + 0, 2 + 0,
611 3 + 0, 0 + 0, 4 + 0, 4 + 0, 7 + 0, 3 + 0,
612
613 0 + 4, 1 + 4, 5 + 4, 5 + 4, 4 + 4, 0 + 4,
614 1 + 4, 2 + 4, 6 + 4, 6 + 4, 5 + 4, 1 + 4,
615 2 + 4, 3 + 4, 7 + 4, 7 + 4, 6 + 4, 2 + 4,
616 3 + 4, 0 + 4, 4 + 4, 4 + 4, 7 + 4, 3 + 4,
617
618 0 + 8, 1 + 8, 5 + 8, 5 + 8, 4 + 8, 0 + 8,
619 1 + 8, 2 + 8, 6 + 8, 6 + 8, 5 + 8, 1 + 8,
620 2 + 8, 3 + 8, 7 + 8, 7 + 8, 6 + 8, 2 + 8,
621 3 + 8, 0 + 8, 4 + 8, 4 + 8, 7 + 8, 3 + 8,
622 };
Brian Salomon6a639042016-12-14 11:08:17 -0500623 // clang-format on
Brian Salomon4dea72a2019-12-18 10:43:10 -0500624 static_assert(SK_ARRAY_COUNT(gMiterIndices) == kMiterIndexCnt);
joshualitt9ff64252015-08-10 09:03:51 -0700625 GR_DEFINE_STATIC_UNIQUE_KEY(gMiterIndexBufferKey);
Chris Daltonff926502017-05-03 14:36:54 -0400626 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -0500627 gMiterIndices, kMiterIndexCnt, kNumMiterRectsInIndexBuffer, kMiterVertexCnt,
628 gMiterIndexBufferKey);
joshualitt9ff64252015-08-10 09:03:51 -0700629 } else {
630 /**
631 * As in miter-stroke, index = a + b, and a is the current index, b is the shift
632 * from the first index. The index layout:
633 * outer AA line: 0~3, 4~7
634 * outer edge: 8~11, 12~15
635 * inner edge: 16~19
636 * inner AA line: 20~23
637 * Following comes a bevel-stroke rect and its indices:
638 *
639 * 4 7
640 * *********************************
641 * * ______________________________ *
642 * * / 12 15 \ *
643 * * / \ *
644 * 0 * |8 16_____________________19 11 | * 3
645 * * | | | | *
646 * * | | **************** | | *
647 * * | | * 20 23 * | | *
648 * * | | * * | | *
649 * * | | * 21 22 * | | *
650 * * | | **************** | | *
651 * * | |____________________| | *
652 * 1 * |9 17 18 10| * 2
653 * * \ / *
654 * * \13 __________________________14/ *
655 * * *
656 * **********************************
657 * 5 6
658 */
Brian Salomon6a639042016-12-14 11:08:17 -0500659 // clang-format off
joshualitt9ff64252015-08-10 09:03:51 -0700660 static const uint16_t gBevelIndices[] = {
661 // Draw outer AA, from outer AA line to outer edge, shift is 0.
662 0 + 0, 1 + 0, 9 + 0, 9 + 0, 8 + 0, 0 + 0,
663 1 + 0, 5 + 0, 13 + 0, 13 + 0, 9 + 0, 1 + 0,
664 5 + 0, 6 + 0, 14 + 0, 14 + 0, 13 + 0, 5 + 0,
665 6 + 0, 2 + 0, 10 + 0, 10 + 0, 14 + 0, 6 + 0,
666 2 + 0, 3 + 0, 11 + 0, 11 + 0, 10 + 0, 2 + 0,
667 3 + 0, 7 + 0, 15 + 0, 15 + 0, 11 + 0, 3 + 0,
668 7 + 0, 4 + 0, 12 + 0, 12 + 0, 15 + 0, 7 + 0,
669 4 + 0, 0 + 0, 8 + 0, 8 + 0, 12 + 0, 4 + 0,
670
671 // Draw the stroke, from outer edge to inner edge, shift is 8.
672 0 + 8, 1 + 8, 9 + 8, 9 + 8, 8 + 8, 0 + 8,
673 1 + 8, 5 + 8, 9 + 8,
674 5 + 8, 6 + 8, 10 + 8, 10 + 8, 9 + 8, 5 + 8,
675 6 + 8, 2 + 8, 10 + 8,
676 2 + 8, 3 + 8, 11 + 8, 11 + 8, 10 + 8, 2 + 8,
677 3 + 8, 7 + 8, 11 + 8,
678 7 + 8, 4 + 8, 8 + 8, 8 + 8, 11 + 8, 7 + 8,
679 4 + 8, 0 + 8, 8 + 8,
680
681 // Draw the inner AA, from inner edge to inner AA line, shift is 16.
682 0 + 16, 1 + 16, 5 + 16, 5 + 16, 4 + 16, 0 + 16,
683 1 + 16, 2 + 16, 6 + 16, 6 + 16, 5 + 16, 1 + 16,
684 2 + 16, 3 + 16, 7 + 16, 7 + 16, 6 + 16, 2 + 16,
685 3 + 16, 0 + 16, 4 + 16, 4 + 16, 7 + 16, 3 + 16,
686 };
Brian Salomon6a639042016-12-14 11:08:17 -0500687 // clang-format on
Brian Salomon4dea72a2019-12-18 10:43:10 -0500688 static_assert(SK_ARRAY_COUNT(gBevelIndices) == kBevelIndexCnt);
joshualitt9ff64252015-08-10 09:03:51 -0700689
690 GR_DEFINE_STATIC_UNIQUE_KEY(gBevelIndexBufferKey);
Chris Daltonff926502017-05-03 14:36:54 -0400691 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -0500692 gBevelIndices, kBevelIndexCnt, kNumBevelRectsInIndexBuffer, kBevelVertexCnt,
693 gBevelIndexBufferKey);
joshualitt9ff64252015-08-10 09:03:51 -0700694 }
695}
696
Herb Derbye25c3002020-10-27 15:57:27 -0400697GrOp::CombineResult AAStrokeRectOp::onCombineIfPossible(GrOp* t, SkArenaAlloc*, const GrCaps& caps)
698{
Brian Salomon6a639042016-12-14 11:08:17 -0500699 AAStrokeRectOp* that = t->cast<AAStrokeRectOp>();
bsalomonabd30f52015-08-13 13:34:48 -0700700
Brian Salomonbaaf4392017-06-15 09:59:23 -0400701 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000702 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700703 }
704
Brian Salomon53e4c3c2016-12-21 11:38:53 -0500705 // TODO combine across miterstroke changes
joshualitt9ff64252015-08-10 09:03:51 -0700706 if (this->miterStroke() != that->miterStroke()) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000707 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700708 }
709
710 // We apply the viewmatrix to the rect points on the cpu. However, if the pipeline uses
Brian Salomonbaaf4392017-06-15 09:59:23 -0400711 // local coords then we won't be able to combine. TODO: Upload local coords as an attribute.
Mike Reed2c383152019-12-18 16:47:47 -0500712 if (fHelper.usesLocalCoords() &&
713 !SkMatrixPriv::CheapEqual(this->viewMatrix(), that->viewMatrix()))
714 {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000715 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700716 }
717
Brian Salomon8c5bad32016-12-20 14:43:36 -0500718 fRects.push_back_n(that->fRects.count(), that->fRects.begin());
Brian Osman2a4c4df2018-12-20 14:06:54 -0500719 fWideColor |= that->fWideColor;
Brian Salomon7eae3e02018-08-07 14:02:38 +0000720 return CombineResult::kMerged;
joshualitt9ff64252015-08-10 09:03:51 -0700721}
722
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500723// Compute the coverage for the inner two rects.
724static float compute_inner_coverage(SkScalar maxDevHalfStrokeSize) {
725 if (maxDevHalfStrokeSize < SK_ScalarHalf) {
726 return 2.0f * maxDevHalfStrokeSize / (maxDevHalfStrokeSize + SK_ScalarHalf);
joshualitt11edad92015-09-22 10:32:28 -0700727 }
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500728
729 return 1.0f;
joshualitt11edad92015-09-22 10:32:28 -0700730}
731
Brian Osmancfec9d52018-11-20 11:39:15 -0500732void AAStrokeRectOp::generateAAStrokeRectGeometry(GrVertexWriter& vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500733 const SkPMColor4f& color,
734 bool wideColor,
Brian Salomon6a639042016-12-14 11:08:17 -0500735 const SkRect& devOutside,
736 const SkRect& devOutsideAssist,
737 const SkRect& devInside,
738 bool miterStroke,
739 bool degenerate,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500740 bool tweakAlphaForCoverage,
741 const SkVector& devHalfStrokeSize) const {
joshualitt9ff64252015-08-10 09:03:51 -0700742 // We create vertices for four nested rectangles. There are two ramps from 0 to full
743 // coverage, one on the exterior of the stroke and the other on the interior.
joshualitt9ff64252015-08-10 09:03:51 -0700744
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500745 // The following code only really works if either devStrokeSize's fX and fY are
746 // equal (in which case innerCoverage is same for all sides of the rects) or
747 // if devStrokeSize's fX and fY are both greater than 1.0 (in which case
748 // innerCoverage will always be 1). The most problematic case is when one of
749 // fX and fY is greater than 1.0 and the other is less than 1.0. In this case
750 // the smaller side should have a partial coverage but the larger side will
751 // force the coverage to be 1.0.
joshualitt9ff64252015-08-10 09:03:51 -0700752
Brian Osmancfec9d52018-11-20 11:39:15 -0500753 auto inset_fan = [](const SkRect& r, SkScalar dx, SkScalar dy) {
754 return GrVertexWriter::TriFanFromRect(r.makeInset(dx, dy));
755 };
joshualitt9ff64252015-08-10 09:03:51 -0700756
Brian Osmancfec9d52018-11-20 11:39:15 -0500757 auto maybe_coverage = [tweakAlphaForCoverage](float coverage) {
758 return GrVertexWriter::If(!tweakAlphaForCoverage, coverage);
759 };
760
Brian Osman2a4c4df2018-12-20 14:06:54 -0500761 GrVertexColor outerColor(tweakAlphaForCoverage ? SK_PMColor4fTRANSPARENT : color, wideColor);
Brian Osmancfec9d52018-11-20 11:39:15 -0500762
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500763 // For device-space stroke widths less than one we can't inset more than the original
764 // device space stroke width if we want to keep the sizing of all the rects correct.
Brian Osman788b9162020-02-07 10:36:46 -0500765 const SkScalar insetX = std::min(SK_ScalarHalf, devHalfStrokeSize.fX);
766 const SkScalar insetY = std::min(SK_ScalarHalf, devHalfStrokeSize.fY);
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500767
768 // But, correspondingly, we always want to keep the AA picture frame one pixel wide.
769 const SkScalar outsetX = SK_Scalar1 - insetX;
770 const SkScalar outsetY = SK_Scalar1 - insetY;
771
Brian Osmancfec9d52018-11-20 11:39:15 -0500772 // Outermost rect
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500773 vertices.writeQuad(inset_fan(devOutside, -outsetX, -outsetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500774 outerColor,
775 maybe_coverage(0.0f));
776
777 if (!miterStroke) {
778 // Second outermost
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500779 vertices.writeQuad(inset_fan(devOutsideAssist, -outsetX, -outsetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500780 outerColor,
781 maybe_coverage(0.0f));
joshualitt9ff64252015-08-10 09:03:51 -0700782 }
783
Brian Osman788b9162020-02-07 10:36:46 -0500784 float innerCoverage = compute_inner_coverage(std::max(devHalfStrokeSize.fX,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500785 devHalfStrokeSize.fY));
joshualitt9ff64252015-08-10 09:03:51 -0700786
Brian Osman2a4c4df2018-12-20 14:06:54 -0500787 SkPMColor4f scaledColor = color * innerCoverage;
788 GrVertexColor innerColor(tweakAlphaForCoverage ? scaledColor : color, wideColor);
joshualitt9ff64252015-08-10 09:03:51 -0700789
Brian Osmancfec9d52018-11-20 11:39:15 -0500790 // Inner rect
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500791 vertices.writeQuad(inset_fan(devOutside, insetX, insetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500792 innerColor,
793 maybe_coverage(innerCoverage));
794
795 if (!miterStroke) {
796 // Second inner
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500797 vertices.writeQuad(inset_fan(devOutsideAssist, insetX, insetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500798 innerColor,
799 maybe_coverage(innerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700800 }
801
joshualitt11edad92015-09-22 10:32:28 -0700802 if (!degenerate) {
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500803 vertices.writeQuad(inset_fan(devInside, -insetX, -insetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500804 innerColor,
805 maybe_coverage(innerCoverage));
joshualitt11edad92015-09-22 10:32:28 -0700806
Brian Osmancfec9d52018-11-20 11:39:15 -0500807 // The innermost rect has 0 coverage...
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500808 vertices.writeQuad(inset_fan(devInside, outsetX, outsetY),
Brian Salomon747b3402019-09-16 17:25:01 -0400809 outerColor,
Brian Osmancfec9d52018-11-20 11:39:15 -0500810 maybe_coverage(0.0f));
811 } else {
812 // When the interior rect has become degenerate we smoosh to a single point
813 SkASSERT(devInside.fLeft == devInside.fRight && devInside.fTop == devInside.fBottom);
814
815 vertices.writeQuad(GrVertexWriter::TriFanFromRect(devInside),
816 innerColor,
817 maybe_coverage(innerCoverage));
818
819 // ... unless we are degenerate, in which case we must apply the scaled coverage
820 vertices.writeQuad(GrVertexWriter::TriFanFromRect(devInside),
821 innerColor,
822 maybe_coverage(innerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700823 }
824}
825
Michael Ludwig72ab3462018-12-10 12:43:36 -0500826} // anonymous namespace
joshualitt3566d442015-09-18 07:12:55 -0700827
Michael Ludwig72ab3462018-12-10 12:43:36 -0500828namespace GrStrokeRectOp {
829
Herb Derbyc76d4092020-10-07 16:46:15 -0400830GrOp::Owner Make(GrRecordingContext* context,
831 GrPaint&& paint,
832 GrAAType aaType,
833 const SkMatrix& viewMatrix,
834 const SkRect& rect,
835 const SkStrokeRec& stroke) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500836 if (aaType == GrAAType::kCoverage) {
837 // The AA op only supports axis-aligned rectangles
838 if (!viewMatrix.rectStaysRect()) {
839 return nullptr;
840 }
841 return AAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, stroke);
842 } else {
843 return NonAAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, stroke, aaType);
844 }
845}
846
Herb Derbyc76d4092020-10-07 16:46:15 -0400847GrOp::Owner MakeNested(GrRecordingContext* context,
848 GrPaint&& paint,
849 const SkMatrix& viewMatrix,
850 const SkRect rects[2]) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400851 SkASSERT(viewMatrix.rectStaysRect());
852 SkASSERT(!rects[0].isEmpty() && !rects[1].isEmpty());
853
854 SkRect devOutside, devInside;
855 viewMatrix.mapRect(&devOutside, rects[0]);
856 viewMatrix.mapRect(&devInside, rects[1]);
857 if (devInside.isEmpty()) {
858 if (devOutside.isEmpty()) {
859 return nullptr;
860 }
Michael Ludwig6b45c5d2020-02-07 09:56:38 -0500861 DrawQuad quad{GrQuad::MakeFromRect(rects[0], viewMatrix), GrQuad(rects[0]),
862 GrQuadAAFlags::kAll};
863 return GrFillRectOp::Make(context, std::move(paint), GrAAType::kCoverage, &quad);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400864 }
865
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500866 SkVector devHalfStrokeSize{ SkScalarHalf(devOutside.fRight - devInside.fRight),
867 SkScalarHalf(devOutside.fBottom - devInside.fBottom) };
868 return AAStrokeRectOp::Make(context, std::move(paint), viewMatrix, devOutside,
869 devInside, devHalfStrokeSize);
joshualittaa37a962015-09-18 13:03:25 -0700870}
871
Michael Ludwig72ab3462018-12-10 12:43:36 -0500872} // namespace GrStrokeRectOp
joshualitt9ff64252015-08-10 09:03:51 -0700873
Hal Canary6f6961e2017-01-31 13:50:44 -0500874#if GR_TEST_UTILS
joshualitt9ff64252015-08-10 09:03:51 -0700875
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500876#include "src/gpu/GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700877
Michael Ludwig72ab3462018-12-10 12:43:36 -0500878GR_DRAW_OP_TEST_DEFINE(NonAAStrokeRectOp) {
879 SkMatrix viewMatrix = GrTest::TestMatrix(random);
880 SkRect rect = GrTest::TestRect(random);
881 SkScalar strokeWidth = random->nextBool() ? 0.0f : 2.0f;
882 SkPaint strokePaint;
883 strokePaint.setStrokeWidth(strokeWidth);
884 strokePaint.setStyle(SkPaint::kStroke_Style);
885 strokePaint.setStrokeJoin(SkPaint::kMiter_Join);
886 SkStrokeRec strokeRec(strokePaint);
887 GrAAType aaType = GrAAType::kNone;
Chris Dalton6ce447a2019-06-23 18:07:38 -0600888 if (numSamples > 1) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500889 aaType = random->nextBool() ? GrAAType::kMSAA : GrAAType::kNone;
890 }
891 return NonAAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, strokeRec, aaType);
892}
893
Brian Salomonbaaf4392017-06-15 09:59:23 -0400894GR_DRAW_OP_TEST_DEFINE(AAStrokeRectOp) {
joshualitt9ff64252015-08-10 09:03:51 -0700895 bool miterStroke = random->nextBool();
896
bsalomon40ef4852016-05-02 13:22:13 -0700897 // Create either a empty rect or a non-empty rect.
Brian Salomon6a639042016-12-14 11:08:17 -0500898 SkRect rect =
899 random->nextBool() ? SkRect::MakeXYWH(10, 10, 50, 40) : SkRect::MakeXYWH(6, 7, 0, 0);
Brian Osman116b33e2020-02-05 13:34:09 -0500900 SkScalar minDim = std::min(rect.width(), rect.height());
bsalomon40ef4852016-05-02 13:22:13 -0700901 SkScalar strokeWidth = random->nextUScalar1() * minDim;
joshualitt9ff64252015-08-10 09:03:51 -0700902
bsalomon40ef4852016-05-02 13:22:13 -0700903 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
904 rec.setStrokeStyle(strokeWidth);
905 rec.setStrokeParams(SkPaint::kButt_Cap,
Brian Salomon6a639042016-12-14 11:08:17 -0500906 miterStroke ? SkPaint::kMiter_Join : SkPaint::kBevel_Join, 1.f);
bsalomon40ef4852016-05-02 13:22:13 -0700907 SkMatrix matrix = GrTest::TestMatrixRectStaysRect(random);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500908 return AAStrokeRectOp::Make(context, std::move(paint), matrix, rect, rec);
joshualitt9ff64252015-08-10 09:03:51 -0700909}
910
911#endif