blob: e3f144029e713fdf7da6098ad89f1a5fdea083cf [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"
13#include "src/gpu/GrCaps.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040014#include "src/gpu/GrColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "src/gpu/GrDefaultGeoProcFactory.h"
16#include "src/gpu/GrDrawOpTest.h"
17#include "src/gpu/GrOpFlushState.h"
Robert Phillipsd2f18732020-03-04 16:12:08 -050018#include "src/gpu/GrProgramInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/gpu/GrResourceProvider.h"
20#include "src/gpu/GrVertexWriter.h"
21#include "src/gpu/ops/GrFillRectOp.h"
22#include "src/gpu/ops/GrMeshDrawOp.h"
23#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
joshualitt9ff64252015-08-10 09:03:51 -070024
Michael Ludwig72ab3462018-12-10 12:43:36 -050025namespace {
joshualitt9ff64252015-08-10 09:03:51 -070026
bsalomon8b7a9e12016-07-06 13:06:22 -070027// We support all hairlines, bevels, and miters, but not round joins. Also, check whether the miter
Michael Ludwig72ab3462018-12-10 12:43:36 -050028// limit makes a miter join effectively beveled. If the miter is effectively beveled, it is only
29// supported when using an AA stroke.
30inline static bool allowed_stroke(const SkStrokeRec& stroke, GrAA aa, bool* isMiter) {
bsalomon8b7a9e12016-07-06 13:06:22 -070031 SkASSERT(stroke.getStyle() == SkStrokeRec::kStroke_Style ||
32 stroke.getStyle() == SkStrokeRec::kHairline_Style);
33 // For hairlines, make bevel and round joins appear the same as mitered ones.
34 if (!stroke.getWidth()) {
35 *isMiter = true;
36 return true;
37 }
38 if (stroke.getJoin() == SkPaint::kBevel_Join) {
39 *isMiter = false;
Michael Ludwig72ab3462018-12-10 12:43:36 -050040 return aa == GrAA::kYes; // bevel only supported with AA
bsalomon8b7a9e12016-07-06 13:06:22 -070041 }
42 if (stroke.getJoin() == SkPaint::kMiter_Join) {
43 *isMiter = stroke.getMiter() >= SK_ScalarSqrt2;
Michael Ludwig72ab3462018-12-10 12:43:36 -050044 // Supported under non-AA only if it remains mitered
45 return aa == GrAA::kYes || *isMiter;
bsalomon8b7a9e12016-07-06 13:06:22 -070046 }
47 return false;
48}
49
Michael Ludwig72ab3462018-12-10 12:43:36 -050050
51///////////////////////////////////////////////////////////////////////////////////////////////////
52// Non-AA Stroking
53///////////////////////////////////////////////////////////////////////////////////////////////////
54
55/* create a triangle strip that strokes the specified rect. There are 8
56 unique vertices, but we repeat the last 2 to close up. Alternatively we
57 could use an indices array, and then only send 8 verts, but not sure that
58 would be faster.
59 */
60static void init_nonaa_stroke_rect_strip(SkPoint verts[10], const SkRect& rect, SkScalar width) {
61 const SkScalar rad = SkScalarHalf(width);
62
63 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
64 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
65 verts[2].set(rect.fRight - rad, rect.fTop + rad);
66 verts[3].set(rect.fRight + rad, rect.fTop - rad);
67 verts[4].set(rect.fRight - rad, rect.fBottom - rad);
68 verts[5].set(rect.fRight + rad, rect.fBottom + rad);
69 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
70 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
71 verts[8] = verts[0];
72 verts[9] = verts[1];
73
74 // TODO: we should be catching this higher up the call stack and just draw a single
75 // non-AA rect
76 if (2*rad >= rect.width()) {
77 verts[0].fX = verts[2].fX = verts[4].fX = verts[6].fX = verts[8].fX = rect.centerX();
78 }
79 if (2*rad >= rect.height()) {
80 verts[0].fY = verts[2].fY = verts[4].fY = verts[6].fY = verts[8].fY = rect.centerY();
81 }
82}
83
84class NonAAStrokeRectOp final : public GrMeshDrawOp {
85private:
86 using Helper = GrSimpleMeshDrawOpHelper;
87
88public:
89 DEFINE_OP_CLASS_ID
90
91 const char* name() const override { return "NonAAStrokeRectOp"; }
92
Chris Dalton1706cbf2019-05-21 19:35:29 -060093 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillipsd2f18732020-03-04 16:12:08 -050094 if (fProgramInfo) {
Chris Daltonbe457422020-03-16 18:05:03 -060095 fProgramInfo->visitFPProxies(func);
Robert Phillipsd2f18732020-03-04 16:12:08 -050096 } else {
97 fHelper.visitProxies(func);
98 }
Michael Ludwig72ab3462018-12-10 12:43:36 -050099 }
100
101#ifdef SK_DEBUG
102 SkString dumpInfo() const override {
103 SkString string;
104 string.appendf(
105 "Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
106 "StrokeWidth: %.2f\n",
107 fColor.toBytes_RGBA(), fRect.fLeft, fRect.fTop, fRect.fRight, fRect.fBottom,
108 fStrokeWidth);
109 string += fHelper.dumpInfo();
110 string += INHERITED::dumpInfo();
111 return string;
112 }
113#endif
114
Robert Phillipsb97da532019-02-12 15:24:12 -0500115 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500116 GrPaint&& paint,
117 const SkMatrix& viewMatrix,
118 const SkRect& rect,
119 const SkStrokeRec& stroke,
120 GrAAType aaType) {
121 bool isMiter;
122 if (!allowed_stroke(stroke, GrAA::kNo, &isMiter)) {
123 return nullptr;
124 }
Chris Daltonbaa1b352019-04-03 12:03:00 -0600125 Helper::InputFlags inputFlags = Helper::InputFlags::kNone;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500126 // Depending on sub-pixel coordinates and the particular GPU, we may lose a corner of
127 // hairline rects. We jam all the vertices to pixel centers to avoid this, but not
128 // when MSAA is enabled because it can cause ugly artifacts.
129 if (stroke.getStyle() == SkStrokeRec::kHairline_Style && aaType != GrAAType::kMSAA) {
Chris Daltonbaa1b352019-04-03 12:03:00 -0600130 inputFlags |= Helper::InputFlags::kSnapVerticesToPixelCenters;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500131 }
Chris Daltonbaa1b352019-04-03 12:03:00 -0600132 return Helper::FactoryHelper<NonAAStrokeRectOp>(context, std::move(paint), inputFlags,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500133 viewMatrix, rect,
134 stroke, aaType);
135 }
136
137 NonAAStrokeRectOp(const Helper::MakeArgs& helperArgs, const SkPMColor4f& color,
Chris Daltonbaa1b352019-04-03 12:03:00 -0600138 Helper::InputFlags inputFlags, const SkMatrix& viewMatrix, const SkRect& rect,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500139 const SkStrokeRec& stroke, GrAAType aaType)
Robert Phillips4133dc42020-03-11 15:55:55 -0400140 : INHERITED(ClassID())
141 , fHelper(helperArgs, aaType, inputFlags) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500142 fColor = color;
143 fViewMatrix = viewMatrix;
144 fRect = rect;
145 // Sort the rect for hairlines
146 fRect.sort();
147 fStrokeWidth = stroke.getWidth();
148
Greg Daniel5faf4742019-10-01 15:14:44 -0400149 SkScalar rad = SkScalarHalf(fStrokeWidth);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500150 SkRect bounds = rect;
151 bounds.outset(rad, rad);
152
153 // If our caller snaps to pixel centers then we have to round out the bounds
Chris Daltonbaa1b352019-04-03 12:03:00 -0600154 if (inputFlags & Helper::InputFlags::kSnapVerticesToPixelCenters) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400155 SkASSERT(!fStrokeWidth || aaType == GrAAType::kNone);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500156 viewMatrix.mapRect(&bounds);
157 // We want to be consistent with how we snap non-aa lines. To match what we do in
158 // GrGLSLVertexShaderBuilder, we first floor all the vertex values and then add half a
159 // pixel to force us to pixel centers.
Mike Reed92b33352019-08-24 19:39:13 -0400160 bounds.setLTRB(SkScalarFloorToScalar(bounds.fLeft),
161 SkScalarFloorToScalar(bounds.fTop),
162 SkScalarFloorToScalar(bounds.fRight),
163 SkScalarFloorToScalar(bounds.fBottom));
Michael Ludwig72ab3462018-12-10 12:43:36 -0500164 bounds.offset(0.5f, 0.5f);
Greg Daniel5faf4742019-10-01 15:14:44 -0400165 this->setBounds(bounds, HasAABloat::kNo, IsHairline::kNo);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500166 } else {
Greg Daniel5faf4742019-10-01 15:14:44 -0400167 HasAABloat aaBloat = (aaType == GrAAType::kNone) ? HasAABloat ::kNo : HasAABloat::kYes;
168 this->setTransformedBounds(bounds, fViewMatrix, aaBloat,
169 fStrokeWidth ? IsHairline::kNo : IsHairline::kYes);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500170 }
171 }
172
173 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
174
Chris Dalton6ce447a2019-06-23 18:07:38 -0600175 GrProcessorSet::Analysis finalize(
176 const GrCaps& caps, const GrAppliedClip* clip, bool hasMixedSampledCoverage,
177 GrClampType clampType) override {
Brian Osman8fa7ab42019-03-18 10:22:42 -0400178 // This Op uses uniform (not vertex) color, so doesn't need to track wide color.
Chris Dalton6ce447a2019-06-23 18:07:38 -0600179 return fHelper.finalizeProcessors(caps, clip, hasMixedSampledCoverage, clampType,
Brian Osman8fa7ab42019-03-18 10:22:42 -0400180 GrProcessorAnalysisCoverage::kNone, &fColor, nullptr);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500181 }
182
183private:
Robert Phillips2669a7b2020-03-12 12:07:19 -0400184 GrProgramInfo* programInfo() override { return fProgramInfo; }
185
Robert Phillips4133dc42020-03-11 15:55:55 -0400186 void onCreateProgramInfo(const GrCaps* caps,
187 SkArenaAlloc* arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400188 const GrSurfaceProxyView* writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400189 GrAppliedClip&& clip,
190 const GrXferProcessor::DstProxyView& dstProxyView) override {
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500191 GrGeometryProcessor* gp;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500192 {
193 using namespace GrDefaultGeoProcFactory;
194 Color color(fColor);
195 LocalCoords::Type localCoordsType = fHelper.usesLocalCoords()
196 ? LocalCoords::kUsePosition_Type
197 : LocalCoords::kUnused_Type;
Brian Osmanf0aee742020-03-12 09:28:44 -0400198 gp = GrDefaultGeoProcFactory::Make(arena, color, Coverage::kSolid_Type, localCoordsType,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500199 fViewMatrix);
200 }
201
Robert Phillips4133dc42020-03-11 15:55:55 -0400202 GrPrimitiveType primType = (fStrokeWidth > 0) ? GrPrimitiveType::kTriangleStrip
203 : GrPrimitiveType::kLineStrip;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500204
Brian Salomon8afde5f2020-04-01 16:22:00 -0400205 fProgramInfo = fHelper.createProgramInfo(caps, arena, writeView, std::move(clip),
Robert Phillips4133dc42020-03-11 15:55:55 -0400206 dstProxyView, gp, primType);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500207 }
208
Robert Phillipsd2f18732020-03-04 16:12:08 -0500209 void onPrepareDraws(Target* target) override {
210 if (!fProgramInfo) {
Robert Phillips4133dc42020-03-11 15:55:55 -0400211 this->createProgramInfo(target);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500212 }
213
214 size_t kVertexStride = fProgramInfo->primProc().vertexStride();
Michael Ludwig72ab3462018-12-10 12:43:36 -0500215 int vertexCount = kVertsPerHairlineRect;
216 if (fStrokeWidth > 0) {
217 vertexCount = kVertsPerStrokeRect;
218 }
219
Brian Salomon12d22642019-01-29 14:38:50 -0500220 sk_sp<const GrBuffer> vertexBuffer;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500221 int firstVertex;
222
223 void* verts =
224 target->makeVertexSpace(kVertexStride, vertexCount, &vertexBuffer, &firstVertex);
225
226 if (!verts) {
227 SkDebugf("Could not allocate vertices\n");
228 return;
229 }
230
231 SkPoint* vertex = reinterpret_cast<SkPoint*>(verts);
232
Michael Ludwig72ab3462018-12-10 12:43:36 -0500233 if (fStrokeWidth > 0) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500234 init_nonaa_stroke_rect_strip(vertex, fRect, fStrokeWidth);
235 } else {
236 // hairline
Michael Ludwig72ab3462018-12-10 12:43:36 -0500237 vertex[0].set(fRect.fLeft, fRect.fTop);
238 vertex[1].set(fRect.fRight, fRect.fTop);
239 vertex[2].set(fRect.fRight, fRect.fBottom);
240 vertex[3].set(fRect.fLeft, fRect.fBottom);
241 vertex[4].set(fRect.fLeft, fRect.fTop);
242 }
243
Robert Phillipsd2f18732020-03-04 16:12:08 -0500244 fMesh = target->allocMesh();
Chris Dalton37c7bdd2020-03-13 09:21:12 -0600245 fMesh->set(std::move(vertexBuffer), vertexCount, firstVertex);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700246 }
247
248 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500249 if (!fMesh) {
250 return;
251 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500252
Chris Dalton765ed362020-03-16 17:34:44 -0600253 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
254 flushState->bindTextures(fProgramInfo->primProc(), nullptr, fProgramInfo->pipeline());
255 flushState->drawMesh(*fMesh);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500256 }
257
258 // TODO: override onCombineIfPossible
259
Robert Phillipsd2f18732020-03-04 16:12:08 -0500260 Helper fHelper;
261 SkPMColor4f fColor;
262 SkMatrix fViewMatrix;
263 SkRect fRect;
264 SkScalar fStrokeWidth;
Chris Daltoneb694b72020-03-16 09:25:50 -0600265 GrSimpleMesh* fMesh = nullptr;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500266 GrProgramInfo* fProgramInfo = nullptr;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500267
268 const static int kVertsPerHairlineRect = 5;
269 const static int kVertsPerStrokeRect = 10;
270
271 typedef GrMeshDrawOp INHERITED;
272};
273
274///////////////////////////////////////////////////////////////////////////////////////////////////
275// AA Stroking
276///////////////////////////////////////////////////////////////////////////////////////////////////
277
278GR_DECLARE_STATIC_UNIQUE_KEY(gMiterIndexBufferKey);
279GR_DECLARE_STATIC_UNIQUE_KEY(gBevelIndexBufferKey);
280
281static void compute_aa_rects(SkRect* devOutside, SkRect* devOutsideAssist, SkRect* devInside,
282 bool* isDegenerate, const SkMatrix& viewMatrix, const SkRect& rect,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500283 SkScalar strokeWidth, bool miterStroke, SkVector* devHalfStrokeSize) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700284 SkRect devRect;
285 viewMatrix.mapRect(&devRect, rect);
286
287 SkVector devStrokeSize;
288 if (strokeWidth > 0) {
289 devStrokeSize.set(strokeWidth, strokeWidth);
290 viewMatrix.mapVectors(&devStrokeSize, 1);
291 devStrokeSize.setAbs(devStrokeSize);
292 } else {
293 devStrokeSize.set(SK_Scalar1, SK_Scalar1);
294 }
295
296 const SkScalar dx = devStrokeSize.fX;
297 const SkScalar dy = devStrokeSize.fY;
Mike Reed8be952a2017-02-13 20:44:33 -0500298 const SkScalar rx = SkScalarHalf(dx);
299 const SkScalar ry = SkScalarHalf(dy);
bsalomon8b7a9e12016-07-06 13:06:22 -0700300
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500301 devHalfStrokeSize->fX = rx;
302 devHalfStrokeSize->fY = ry;
303
bsalomon8b7a9e12016-07-06 13:06:22 -0700304 *devOutside = devRect;
305 *devOutsideAssist = devRect;
306 *devInside = devRect;
307
308 devOutside->outset(rx, ry);
309 devInside->inset(rx, ry);
310
311 // If we have a degenerate stroking rect(ie the stroke is larger than inner rect) then we
312 // make a degenerate inside rect to avoid double hitting. We will also jam all of the points
313 // together when we render these rects.
314 SkScalar spare;
315 {
316 SkScalar w = devRect.width() - dx;
317 SkScalar h = devRect.height() - dy;
Brian Osman788b9162020-02-07 10:36:46 -0500318 spare = std::min(w, h);
bsalomon8b7a9e12016-07-06 13:06:22 -0700319 }
320
321 *isDegenerate = spare <= 0;
322 if (*isDegenerate) {
323 devInside->fLeft = devInside->fRight = devRect.centerX();
324 devInside->fTop = devInside->fBottom = devRect.centerY();
325 }
326
327 // For bevel-stroke, use 2 SkRect instances(devOutside and devOutsideAssist)
328 // to draw the outside of the octagon. Because there are 8 vertices on the outer
329 // edge, while vertex number of inner edge is 4, the same as miter-stroke.
330 if (!miterStroke) {
331 devOutside->inset(0, ry);
332 devOutsideAssist->outset(0, ry);
333 }
334}
335
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500336static GrGeometryProcessor* create_aa_stroke_rect_gp(SkArenaAlloc* arena,
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500337 bool tweakAlphaForCoverage,
338 const SkMatrix& viewMatrix,
339 bool usesLocalCoords,
340 bool wideColor) {
joshualitt9ff64252015-08-10 09:03:51 -0700341 using namespace GrDefaultGeoProcFactory;
342
Brian Osman2a4c4df2018-12-20 14:06:54 -0500343 Coverage::Type coverageType =
344 tweakAlphaForCoverage ? Coverage::kSolid_Type : Coverage::kAttribute_Type;
Brian Salomon8c852be2017-01-04 10:44:42 -0500345 LocalCoords::Type localCoordsType =
Brian Osman2a4c4df2018-12-20 14:06:54 -0500346 usesLocalCoords ? LocalCoords::kUsePosition_Type : LocalCoords::kUnused_Type;
347 Color::Type colorType =
348 wideColor ? Color::kPremulWideColorAttribute_Type: Color::kPremulGrColorAttribute_Type;
349
Brian Osmanf0aee742020-03-12 09:28:44 -0400350 return MakeForDeviceSpace(arena, colorType, coverageType, localCoordsType, viewMatrix);
joshualitt9ff64252015-08-10 09:03:51 -0700351}
352
Brian Salomonbaaf4392017-06-15 09:59:23 -0400353class AAStrokeRectOp final : public GrMeshDrawOp {
354private:
355 using Helper = GrSimpleMeshDrawOpHelper;
356
joshualitt3566d442015-09-18 07:12:55 -0700357public:
Brian Salomon25a88092016-12-01 09:36:50 -0500358 DEFINE_OP_CLASS_ID
joshualitt3566d442015-09-18 07:12:55 -0700359
Robert Phillipsb97da532019-02-12 15:24:12 -0500360 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Robert Phillips7c525e62018-06-12 10:11:12 -0400361 GrPaint&& paint,
362 const SkMatrix& viewMatrix,
363 const SkRect& devOutside,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500364 const SkRect& devInside,
365 const SkVector& devHalfStrokeSize) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400366 return Helper::FactoryHelper<AAStrokeRectOp>(context, std::move(paint), viewMatrix,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500367 devOutside, devInside, devHalfStrokeSize);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400368 }
369
Brian Osmancf860852018-10-31 14:04:39 -0400370 AAStrokeRectOp(const Helper::MakeArgs& helperArgs, const SkPMColor4f& color,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500371 const SkMatrix& viewMatrix, const SkRect& devOutside, const SkRect& devInside,
372 const SkVector& devHalfStrokeSize)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400373 : INHERITED(ClassID())
374 , fHelper(helperArgs, GrAAType::kCoverage)
375 , fViewMatrix(viewMatrix) {
caryclarkd6562002016-07-27 12:02:07 -0700376 SkASSERT(!devOutside.isEmpty());
377 SkASSERT(!devInside.isEmpty());
joshualitt3566d442015-09-18 07:12:55 -0700378
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500379 fRects.emplace_back(RectInfo{color, devOutside, devOutside, devInside, devHalfStrokeSize, false});
Greg Daniel5faf4742019-10-01 15:14:44 -0400380 this->setBounds(devOutside, HasAABloat::kYes, IsHairline::kNo);
bsalomon8b7a9e12016-07-06 13:06:22 -0700381 fMiterStroke = true;
382 }
383
Robert Phillipsb97da532019-02-12 15:24:12 -0500384 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Robert Phillips7c525e62018-06-12 10:11:12 -0400385 GrPaint&& paint,
386 const SkMatrix& viewMatrix,
387 const SkRect& rect,
388 const SkStrokeRec& stroke) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700389 bool isMiter;
Michael Ludwig72ab3462018-12-10 12:43:36 -0500390 if (!allowed_stroke(stroke, GrAA::kYes, &isMiter)) {
bsalomon8b7a9e12016-07-06 13:06:22 -0700391 return nullptr;
392 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400393 return Helper::FactoryHelper<AAStrokeRectOp>(context, std::move(paint), viewMatrix, rect,
394 stroke, isMiter);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400395 }
bsalomon8b7a9e12016-07-06 13:06:22 -0700396
Brian Osmancf860852018-10-31 14:04:39 -0400397 AAStrokeRectOp(const Helper::MakeArgs& helperArgs, const SkPMColor4f& color,
Brian Osman936fe7d2018-10-30 15:30:35 -0400398 const SkMatrix& viewMatrix, const SkRect& rect, const SkStrokeRec& stroke,
399 bool isMiter)
Brian Salomonbaaf4392017-06-15 09:59:23 -0400400 : INHERITED(ClassID())
401 , fHelper(helperArgs, GrAAType::kCoverage)
402 , fViewMatrix(viewMatrix) {
403 fMiterStroke = isMiter;
404 RectInfo& info = fRects.push_back();
Michael Ludwig72ab3462018-12-10 12:43:36 -0500405 compute_aa_rects(&info.fDevOutside, &info.fDevOutsideAssist, &info.fDevInside,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500406 &info.fDegenerate, viewMatrix, rect, stroke.getWidth(), isMiter,
407 &info.fDevHalfStrokeSize);
Brian Salomon8c5bad32016-12-20 14:43:36 -0500408 info.fColor = color;
Brian Salomon510dd422017-03-16 12:15:22 -0400409 if (isMiter) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400410 this->setBounds(info.fDevOutside, HasAABloat::kYes, IsHairline::kNo);
Brian Salomon510dd422017-03-16 12:15:22 -0400411 } else {
412 // The outer polygon of the bevel stroke is an octagon specified by the points of a
413 // pair of overlapping rectangles where one is wide and the other is narrow.
414 SkRect bounds = info.fDevOutside;
415 bounds.joinPossiblyEmptyRect(info.fDevOutsideAssist);
Greg Daniel5faf4742019-10-01 15:14:44 -0400416 this->setBounds(bounds, HasAABloat::kYes, IsHairline::kNo);
Brian Salomon510dd422017-03-16 12:15:22 -0400417 }
joshualitt3566d442015-09-18 07:12:55 -0700418 }
419
420 const char* name() const override { return "AAStrokeRect"; }
421
Chris Dalton1706cbf2019-05-21 19:35:29 -0600422 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500423 if (fProgramInfo) {
Chris Daltonbe457422020-03-16 18:05:03 -0600424 fProgramInfo->visitFPProxies(func);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500425 } else {
426 fHelper.visitProxies(func);
427 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400428 }
429
Brian Osman9a390ac2018-11-12 09:47:48 -0500430#ifdef SK_DEBUG
Brian Salomon7c3e7182016-12-01 09:35:30 -0500431 SkString dumpInfo() const override {
432 SkString string;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500433 for (const auto& info : fRects) {
Brian Salomon6a639042016-12-14 11:08:17 -0500434 string.appendf(
435 "Color: 0x%08x, ORect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
436 "AssistORect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], "
437 "IRect [L: %.2f, T: %.2f, R: %.2f, B: %.2f], Degen: %d",
Brian Osmancf860852018-10-31 14:04:39 -0400438 info.fColor.toBytes_RGBA(), info.fDevOutside.fLeft, info.fDevOutside.fTop,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500439 info.fDevOutside.fRight, info.fDevOutside.fBottom, info.fDevOutsideAssist.fLeft,
440 info.fDevOutsideAssist.fTop, info.fDevOutsideAssist.fRight,
441 info.fDevOutsideAssist.fBottom, info.fDevInside.fLeft, info.fDevInside.fTop,
442 info.fDevInside.fRight, info.fDevInside.fBottom, info.fDegenerate);
Brian Salomon7c3e7182016-12-01 09:35:30 -0500443 }
Brian Salomon82dfd3d2017-06-14 12:30:35 -0400444 string += fHelper.dumpInfo();
445 string += INHERITED::dumpInfo();
Brian Salomon7c3e7182016-12-01 09:35:30 -0500446 return string;
447 }
Brian Osman9a390ac2018-11-12 09:47:48 -0500448#endif
Brian Salomon7c3e7182016-12-01 09:35:30 -0500449
Brian Salomonbaaf4392017-06-15 09:59:23 -0400450 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
Brian Salomona0485d92017-06-14 19:08:01 -0400451
Chris Dalton6ce447a2019-06-23 18:07:38 -0600452 GrProcessorSet::Analysis finalize(
453 const GrCaps& caps, const GrAppliedClip* clip, bool hasMixedSampledCoverage,
454 GrClampType clampType) override {
Chris Daltonb8fff0d2019-03-05 10:11:58 -0700455 return fHelper.finalizeProcessors(
Chris Dalton6ce447a2019-06-23 18:07:38 -0600456 caps, clip, hasMixedSampledCoverage, clampType,
457 GrProcessorAnalysisCoverage::kSingleChannel, &fRects.back().fColor, &fWideColor);
Brian Salomona0485d92017-06-14 19:08:01 -0400458 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400459
460private:
Robert Phillips2669a7b2020-03-12 12:07:19 -0400461 GrProgramInfo* programInfo() override { return fProgramInfo; }
462
Robert Phillips4133dc42020-03-11 15:55:55 -0400463 void onCreateProgramInfo(const GrCaps*,
464 SkArenaAlloc*,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400465 const GrSurfaceProxyView* writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400466 GrAppliedClip&&,
467 const GrXferProcessor::DstProxyView&) override;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500468
Brian Salomon91326c32017-08-09 16:02:19 -0400469 void onPrepareDraws(Target*) override;
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700470 void onExecute(GrOpFlushState*, const SkRect& chainBounds) override;
joshualittaa37a962015-09-18 13:03:25 -0700471
joshualitt3566d442015-09-18 07:12:55 -0700472 static const int kMiterIndexCnt = 3 * 24;
473 static const int kMiterVertexCnt = 16;
474 static const int kNumMiterRectsInIndexBuffer = 256;
475
476 static const int kBevelIndexCnt = 48 + 36 + 24;
477 static const int kBevelVertexCnt = 24;
478 static const int kNumBevelRectsInIndexBuffer = 256;
479
Brian Salomondbf70722019-02-07 11:31:24 -0500480 static sk_sp<const GrGpuBuffer> GetIndexBuffer(GrResourceProvider*, bool miterStroke);
joshualitt3566d442015-09-18 07:12:55 -0700481
joshualittaa37a962015-09-18 13:03:25 -0700482 const SkMatrix& viewMatrix() const { return fViewMatrix; }
483 bool miterStroke() const { return fMiterStroke; }
joshualitt3566d442015-09-18 07:12:55 -0700484
Michael Ludwig28b0c5d2019-12-19 14:51:00 -0500485 CombineResult onCombineIfPossible(GrOp* t, GrRecordingContext::Arenas*, const GrCaps&) override;
joshualitt3566d442015-09-18 07:12:55 -0700486
Brian Osmancfec9d52018-11-20 11:39:15 -0500487 void generateAAStrokeRectGeometry(GrVertexWriter& vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500488 const SkPMColor4f& color,
489 bool wideColor,
joshualitt3566d442015-09-18 07:12:55 -0700490 const SkRect& devOutside,
491 const SkRect& devOutsideAssist,
492 const SkRect& devInside,
493 bool miterStroke,
joshualitt11edad92015-09-22 10:32:28 -0700494 bool degenerate,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500495 bool tweakAlphaForCoverage,
496 const SkVector& devHalfStrokeSize) const;
joshualitt3566d442015-09-18 07:12:55 -0700497
bsalomon8b7a9e12016-07-06 13:06:22 -0700498 // TODO support AA rotated stroke rects by copying around view matrices
Brian Salomon8c5bad32016-12-20 14:43:36 -0500499 struct RectInfo {
Brian Osmancf860852018-10-31 14:04:39 -0400500 SkPMColor4f fColor;
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500501 SkRect fDevOutside;
502 SkRect fDevOutsideAssist;
503 SkRect fDevInside;
504 SkVector fDevHalfStrokeSize;
505 bool fDegenerate;
bsalomon8b7a9e12016-07-06 13:06:22 -0700506 };
507
Robert Phillipsd2f18732020-03-04 16:12:08 -0500508 Helper fHelper;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500509 SkSTArray<1, RectInfo, true> fRects;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500510 SkMatrix fViewMatrix;
Chris Daltoneb694b72020-03-16 09:25:50 -0600511 GrSimpleMesh* fMesh = nullptr;
Robert Phillipsd2f18732020-03-04 16:12:08 -0500512 GrProgramInfo* fProgramInfo = nullptr;
513 bool fMiterStroke;
514 bool fWideColor;
joshualitt3566d442015-09-18 07:12:55 -0700515
Brian Salomonbaaf4392017-06-15 09:59:23 -0400516 typedef GrMeshDrawOp INHERITED;
joshualitt3566d442015-09-18 07:12:55 -0700517};
518
Robert Phillips4133dc42020-03-11 15:55:55 -0400519void AAStrokeRectOp::onCreateProgramInfo(const GrCaps* caps,
520 SkArenaAlloc* arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400521 const GrSurfaceProxyView* writeView,
Robert Phillips4133dc42020-03-11 15:55:55 -0400522 GrAppliedClip&& appliedClip,
523 const GrXferProcessor::DstProxyView& dstProxyView) {
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,
541 GrPrimitiveType::kTriangles);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500542}
543
Robert Phillipsd2f18732020-03-04 16:12:08 -0500544void AAStrokeRectOp::onPrepareDraws(Target* target) {
545
546 if (!fProgramInfo) {
Robert Phillips4133dc42020-03-11 15:55:55 -0400547 this->createProgramInfo(target);
Robert Phillipsd2f18732020-03-04 16:12:08 -0500548 if (!fProgramInfo) {
549 return;
550 }
joshualitt9ff64252015-08-10 09:03:51 -0700551 }
552
joshualitt9ff64252015-08-10 09:03:51 -0700553 int innerVertexNum = 4;
554 int outerVertexNum = this->miterStroke() ? 4 : 8;
555 int verticesPerInstance = (outerVertexNum + innerVertexNum) * 2;
556 int indicesPerInstance = this->miterStroke() ? kMiterIndexCnt : kBevelIndexCnt;
Brian Salomon8c5bad32016-12-20 14:43:36 -0500557 int instanceCount = fRects.count();
Robert Phillipsee08d522019-10-28 16:34:44 -0400558 int maxQuads = this->miterStroke() ? kNumMiterRectsInIndexBuffer : kNumBevelRectsInIndexBuffer;
joshualitt9ff64252015-08-10 09:03:51 -0700559
Brian Salomondbf70722019-02-07 11:31:24 -0500560 sk_sp<const GrGpuBuffer> indexBuffer =
Brian Salomon7eae3e02018-08-07 14:02:38 +0000561 GetIndexBuffer(target->resourceProvider(), this->miterStroke());
Brian Salomon12d22642019-01-29 14:38:50 -0500562 if (!indexBuffer) {
563 SkDebugf("Could not allocate indices\n");
564 return;
565 }
Robert Phillipsd2f18732020-03-04 16:12:08 -0500566 PatternHelper helper(target, GrPrimitiveType::kTriangles,
567 fProgramInfo->primProc().vertexStride(), std::move(indexBuffer),
568 verticesPerInstance, indicesPerInstance, instanceCount, maxQuads);
Brian Osmancfec9d52018-11-20 11:39:15 -0500569 GrVertexWriter vertices{ helper.vertices() };
Brian Salomon12d22642019-01-29 14:38:50 -0500570 if (!vertices.fPtr) {
Brian Salomon6a639042016-12-14 11:08:17 -0500571 SkDebugf("Could not allocate vertices\n");
572 return;
573 }
joshualitt9ff64252015-08-10 09:03:51 -0700574
575 for (int i = 0; i < instanceCount; i++) {
Brian Salomon8c5bad32016-12-20 14:43:36 -0500576 const RectInfo& info = fRects[i];
joshualitt9ff64252015-08-10 09:03:51 -0700577 this->generateAAStrokeRectGeometry(vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500578 info.fColor,
579 fWideColor,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500580 info.fDevOutside,
581 info.fDevOutsideAssist,
582 info.fDevInside,
joshualittaa37a962015-09-18 13:03:25 -0700583 fMiterStroke,
Brian Salomon8c5bad32016-12-20 14:43:36 -0500584 info.fDegenerate,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500585 fHelper.compatibleWithCoverageAsAlpha(),
586 info.fDevHalfStrokeSize);
joshualitt9ff64252015-08-10 09:03:51 -0700587 }
Robert Phillipsd2f18732020-03-04 16:12:08 -0500588 fMesh = helper.mesh();
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700589}
590
591void AAStrokeRectOp::onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) {
Robert Phillipsd2f18732020-03-04 16:12:08 -0500592 if (!fProgramInfo || !fMesh) {
593 return;
594 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500595
Chris Dalton765ed362020-03-16 17:34:44 -0600596 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
597 flushState->bindTextures(fProgramInfo->primProc(), nullptr, fProgramInfo->pipeline());
598 flushState->drawMesh(*fMesh);
joshualitt9ff64252015-08-10 09:03:51 -0700599}
600
Brian Salomondbf70722019-02-07 11:31:24 -0500601sk_sp<const GrGpuBuffer> AAStrokeRectOp::GetIndexBuffer(GrResourceProvider* resourceProvider,
602 bool miterStroke) {
joshualitt9ff64252015-08-10 09:03:51 -0700603 if (miterStroke) {
Brian Salomon6a639042016-12-14 11:08:17 -0500604 // clang-format off
joshualitt9ff64252015-08-10 09:03:51 -0700605 static const uint16_t gMiterIndices[] = {
606 0 + 0, 1 + 0, 5 + 0, 5 + 0, 4 + 0, 0 + 0,
607 1 + 0, 2 + 0, 6 + 0, 6 + 0, 5 + 0, 1 + 0,
608 2 + 0, 3 + 0, 7 + 0, 7 + 0, 6 + 0, 2 + 0,
609 3 + 0, 0 + 0, 4 + 0, 4 + 0, 7 + 0, 3 + 0,
610
611 0 + 4, 1 + 4, 5 + 4, 5 + 4, 4 + 4, 0 + 4,
612 1 + 4, 2 + 4, 6 + 4, 6 + 4, 5 + 4, 1 + 4,
613 2 + 4, 3 + 4, 7 + 4, 7 + 4, 6 + 4, 2 + 4,
614 3 + 4, 0 + 4, 4 + 4, 4 + 4, 7 + 4, 3 + 4,
615
616 0 + 8, 1 + 8, 5 + 8, 5 + 8, 4 + 8, 0 + 8,
617 1 + 8, 2 + 8, 6 + 8, 6 + 8, 5 + 8, 1 + 8,
618 2 + 8, 3 + 8, 7 + 8, 7 + 8, 6 + 8, 2 + 8,
619 3 + 8, 0 + 8, 4 + 8, 4 + 8, 7 + 8, 3 + 8,
620 };
Brian Salomon6a639042016-12-14 11:08:17 -0500621 // clang-format on
Brian Salomon4dea72a2019-12-18 10:43:10 -0500622 static_assert(SK_ARRAY_COUNT(gMiterIndices) == kMiterIndexCnt);
joshualitt9ff64252015-08-10 09:03:51 -0700623 GR_DEFINE_STATIC_UNIQUE_KEY(gMiterIndexBufferKey);
Chris Daltonff926502017-05-03 14:36:54 -0400624 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -0500625 gMiterIndices, kMiterIndexCnt, kNumMiterRectsInIndexBuffer, kMiterVertexCnt,
626 gMiterIndexBufferKey);
joshualitt9ff64252015-08-10 09:03:51 -0700627 } else {
628 /**
629 * As in miter-stroke, index = a + b, and a is the current index, b is the shift
630 * from the first index. The index layout:
631 * outer AA line: 0~3, 4~7
632 * outer edge: 8~11, 12~15
633 * inner edge: 16~19
634 * inner AA line: 20~23
635 * Following comes a bevel-stroke rect and its indices:
636 *
637 * 4 7
638 * *********************************
639 * * ______________________________ *
640 * * / 12 15 \ *
641 * * / \ *
642 * 0 * |8 16_____________________19 11 | * 3
643 * * | | | | *
644 * * | | **************** | | *
645 * * | | * 20 23 * | | *
646 * * | | * * | | *
647 * * | | * 21 22 * | | *
648 * * | | **************** | | *
649 * * | |____________________| | *
650 * 1 * |9 17 18 10| * 2
651 * * \ / *
652 * * \13 __________________________14/ *
653 * * *
654 * **********************************
655 * 5 6
656 */
Brian Salomon6a639042016-12-14 11:08:17 -0500657 // clang-format off
joshualitt9ff64252015-08-10 09:03:51 -0700658 static const uint16_t gBevelIndices[] = {
659 // Draw outer AA, from outer AA line to outer edge, shift is 0.
660 0 + 0, 1 + 0, 9 + 0, 9 + 0, 8 + 0, 0 + 0,
661 1 + 0, 5 + 0, 13 + 0, 13 + 0, 9 + 0, 1 + 0,
662 5 + 0, 6 + 0, 14 + 0, 14 + 0, 13 + 0, 5 + 0,
663 6 + 0, 2 + 0, 10 + 0, 10 + 0, 14 + 0, 6 + 0,
664 2 + 0, 3 + 0, 11 + 0, 11 + 0, 10 + 0, 2 + 0,
665 3 + 0, 7 + 0, 15 + 0, 15 + 0, 11 + 0, 3 + 0,
666 7 + 0, 4 + 0, 12 + 0, 12 + 0, 15 + 0, 7 + 0,
667 4 + 0, 0 + 0, 8 + 0, 8 + 0, 12 + 0, 4 + 0,
668
669 // Draw the stroke, from outer edge to inner edge, shift is 8.
670 0 + 8, 1 + 8, 9 + 8, 9 + 8, 8 + 8, 0 + 8,
671 1 + 8, 5 + 8, 9 + 8,
672 5 + 8, 6 + 8, 10 + 8, 10 + 8, 9 + 8, 5 + 8,
673 6 + 8, 2 + 8, 10 + 8,
674 2 + 8, 3 + 8, 11 + 8, 11 + 8, 10 + 8, 2 + 8,
675 3 + 8, 7 + 8, 11 + 8,
676 7 + 8, 4 + 8, 8 + 8, 8 + 8, 11 + 8, 7 + 8,
677 4 + 8, 0 + 8, 8 + 8,
678
679 // Draw the inner AA, from inner edge to inner AA line, shift is 16.
680 0 + 16, 1 + 16, 5 + 16, 5 + 16, 4 + 16, 0 + 16,
681 1 + 16, 2 + 16, 6 + 16, 6 + 16, 5 + 16, 1 + 16,
682 2 + 16, 3 + 16, 7 + 16, 7 + 16, 6 + 16, 2 + 16,
683 3 + 16, 0 + 16, 4 + 16, 4 + 16, 7 + 16, 3 + 16,
684 };
Brian Salomon6a639042016-12-14 11:08:17 -0500685 // clang-format on
Brian Salomon4dea72a2019-12-18 10:43:10 -0500686 static_assert(SK_ARRAY_COUNT(gBevelIndices) == kBevelIndexCnt);
joshualitt9ff64252015-08-10 09:03:51 -0700687
688 GR_DEFINE_STATIC_UNIQUE_KEY(gBevelIndexBufferKey);
Chris Daltonff926502017-05-03 14:36:54 -0400689 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -0500690 gBevelIndices, kBevelIndexCnt, kNumBevelRectsInIndexBuffer, kBevelVertexCnt,
691 gBevelIndexBufferKey);
joshualitt9ff64252015-08-10 09:03:51 -0700692 }
693}
694
Michael Ludwig28b0c5d2019-12-19 14:51:00 -0500695GrOp::CombineResult AAStrokeRectOp::onCombineIfPossible(GrOp* t, GrRecordingContext::Arenas*,
Michael Ludwigd0840ec2019-12-12 09:48:38 -0500696 const GrCaps& caps) {
Brian Salomon6a639042016-12-14 11:08:17 -0500697 AAStrokeRectOp* that = t->cast<AAStrokeRectOp>();
bsalomonabd30f52015-08-13 13:34:48 -0700698
Brian Salomonbaaf4392017-06-15 09:59:23 -0400699 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000700 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700701 }
702
Brian Salomon53e4c3c2016-12-21 11:38:53 -0500703 // TODO combine across miterstroke changes
joshualitt9ff64252015-08-10 09:03:51 -0700704 if (this->miterStroke() != that->miterStroke()) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000705 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700706 }
707
708 // We apply the viewmatrix to the rect points on the cpu. However, if the pipeline uses
Brian Salomonbaaf4392017-06-15 09:59:23 -0400709 // local coords then we won't be able to combine. TODO: Upload local coords as an attribute.
Mike Reed2c383152019-12-18 16:47:47 -0500710 if (fHelper.usesLocalCoords() &&
711 !SkMatrixPriv::CheapEqual(this->viewMatrix(), that->viewMatrix()))
712 {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000713 return CombineResult::kCannotCombine;
joshualitt9ff64252015-08-10 09:03:51 -0700714 }
715
Brian Salomon8c5bad32016-12-20 14:43:36 -0500716 fRects.push_back_n(that->fRects.count(), that->fRects.begin());
Brian Osman2a4c4df2018-12-20 14:06:54 -0500717 fWideColor |= that->fWideColor;
Brian Salomon7eae3e02018-08-07 14:02:38 +0000718 return CombineResult::kMerged;
joshualitt9ff64252015-08-10 09:03:51 -0700719}
720
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500721// Compute the coverage for the inner two rects.
722static float compute_inner_coverage(SkScalar maxDevHalfStrokeSize) {
723 if (maxDevHalfStrokeSize < SK_ScalarHalf) {
724 return 2.0f * maxDevHalfStrokeSize / (maxDevHalfStrokeSize + SK_ScalarHalf);
joshualitt11edad92015-09-22 10:32:28 -0700725 }
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500726
727 return 1.0f;
joshualitt11edad92015-09-22 10:32:28 -0700728}
729
Brian Osmancfec9d52018-11-20 11:39:15 -0500730void AAStrokeRectOp::generateAAStrokeRectGeometry(GrVertexWriter& vertices,
Brian Osman2a4c4df2018-12-20 14:06:54 -0500731 const SkPMColor4f& color,
732 bool wideColor,
Brian Salomon6a639042016-12-14 11:08:17 -0500733 const SkRect& devOutside,
734 const SkRect& devOutsideAssist,
735 const SkRect& devInside,
736 bool miterStroke,
737 bool degenerate,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500738 bool tweakAlphaForCoverage,
739 const SkVector& devHalfStrokeSize) const {
joshualitt9ff64252015-08-10 09:03:51 -0700740 // We create vertices for four nested rectangles. There are two ramps from 0 to full
741 // coverage, one on the exterior of the stroke and the other on the interior.
joshualitt9ff64252015-08-10 09:03:51 -0700742
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500743 // The following code only really works if either devStrokeSize's fX and fY are
744 // equal (in which case innerCoverage is same for all sides of the rects) or
745 // if devStrokeSize's fX and fY are both greater than 1.0 (in which case
746 // innerCoverage will always be 1). The most problematic case is when one of
747 // fX and fY is greater than 1.0 and the other is less than 1.0. In this case
748 // the smaller side should have a partial coverage but the larger side will
749 // force the coverage to be 1.0.
joshualitt9ff64252015-08-10 09:03:51 -0700750
Brian Osmancfec9d52018-11-20 11:39:15 -0500751 auto inset_fan = [](const SkRect& r, SkScalar dx, SkScalar dy) {
752 return GrVertexWriter::TriFanFromRect(r.makeInset(dx, dy));
753 };
joshualitt9ff64252015-08-10 09:03:51 -0700754
Brian Osmancfec9d52018-11-20 11:39:15 -0500755 auto maybe_coverage = [tweakAlphaForCoverage](float coverage) {
756 return GrVertexWriter::If(!tweakAlphaForCoverage, coverage);
757 };
758
Brian Osman2a4c4df2018-12-20 14:06:54 -0500759 GrVertexColor outerColor(tweakAlphaForCoverage ? SK_PMColor4fTRANSPARENT : color, wideColor);
Brian Osmancfec9d52018-11-20 11:39:15 -0500760
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500761 // For device-space stroke widths less than one we can't inset more than the original
762 // device space stroke width if we want to keep the sizing of all the rects correct.
Brian Osman788b9162020-02-07 10:36:46 -0500763 const SkScalar insetX = std::min(SK_ScalarHalf, devHalfStrokeSize.fX);
764 const SkScalar insetY = std::min(SK_ScalarHalf, devHalfStrokeSize.fY);
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500765
766 // But, correspondingly, we always want to keep the AA picture frame one pixel wide.
767 const SkScalar outsetX = SK_Scalar1 - insetX;
768 const SkScalar outsetY = SK_Scalar1 - insetY;
769
Brian Osmancfec9d52018-11-20 11:39:15 -0500770 // Outermost rect
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500771 vertices.writeQuad(inset_fan(devOutside, -outsetX, -outsetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500772 outerColor,
773 maybe_coverage(0.0f));
774
775 if (!miterStroke) {
776 // Second outermost
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500777 vertices.writeQuad(inset_fan(devOutsideAssist, -outsetX, -outsetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500778 outerColor,
779 maybe_coverage(0.0f));
joshualitt9ff64252015-08-10 09:03:51 -0700780 }
781
Brian Osman788b9162020-02-07 10:36:46 -0500782 float innerCoverage = compute_inner_coverage(std::max(devHalfStrokeSize.fX,
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500783 devHalfStrokeSize.fY));
joshualitt9ff64252015-08-10 09:03:51 -0700784
Brian Osman2a4c4df2018-12-20 14:06:54 -0500785 SkPMColor4f scaledColor = color * innerCoverage;
786 GrVertexColor innerColor(tweakAlphaForCoverage ? scaledColor : color, wideColor);
joshualitt9ff64252015-08-10 09:03:51 -0700787
Brian Osmancfec9d52018-11-20 11:39:15 -0500788 // Inner rect
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500789 vertices.writeQuad(inset_fan(devOutside, insetX, insetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500790 innerColor,
791 maybe_coverage(innerCoverage));
792
793 if (!miterStroke) {
794 // Second inner
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500795 vertices.writeQuad(inset_fan(devOutsideAssist, insetX, insetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500796 innerColor,
797 maybe_coverage(innerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700798 }
799
joshualitt11edad92015-09-22 10:32:28 -0700800 if (!degenerate) {
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500801 vertices.writeQuad(inset_fan(devInside, -insetX, -insetY),
Brian Osmancfec9d52018-11-20 11:39:15 -0500802 innerColor,
803 maybe_coverage(innerCoverage));
joshualitt11edad92015-09-22 10:32:28 -0700804
Brian Osmancfec9d52018-11-20 11:39:15 -0500805 // The innermost rect has 0 coverage...
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500806 vertices.writeQuad(inset_fan(devInside, outsetX, outsetY),
Brian Salomon747b3402019-09-16 17:25:01 -0400807 outerColor,
Brian Osmancfec9d52018-11-20 11:39:15 -0500808 maybe_coverage(0.0f));
809 } else {
810 // When the interior rect has become degenerate we smoosh to a single point
811 SkASSERT(devInside.fLeft == devInside.fRight && devInside.fTop == devInside.fBottom);
812
813 vertices.writeQuad(GrVertexWriter::TriFanFromRect(devInside),
814 innerColor,
815 maybe_coverage(innerCoverage));
816
817 // ... unless we are degenerate, in which case we must apply the scaled coverage
818 vertices.writeQuad(GrVertexWriter::TriFanFromRect(devInside),
819 innerColor,
820 maybe_coverage(innerCoverage));
joshualitt9ff64252015-08-10 09:03:51 -0700821 }
822}
823
Michael Ludwig72ab3462018-12-10 12:43:36 -0500824} // anonymous namespace
joshualitt3566d442015-09-18 07:12:55 -0700825
Michael Ludwig72ab3462018-12-10 12:43:36 -0500826namespace GrStrokeRectOp {
827
Robert Phillipsb97da532019-02-12 15:24:12 -0500828std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500829 GrPaint&& paint,
830 GrAAType aaType,
831 const SkMatrix& viewMatrix,
832 const SkRect& rect,
833 const SkStrokeRec& stroke) {
834 if (aaType == GrAAType::kCoverage) {
835 // The AA op only supports axis-aligned rectangles
836 if (!viewMatrix.rectStaysRect()) {
837 return nullptr;
838 }
839 return AAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, stroke);
840 } else {
841 return NonAAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, stroke, aaType);
842 }
843}
844
Robert Phillipsb97da532019-02-12 15:24:12 -0500845std::unique_ptr<GrDrawOp> MakeNested(GrRecordingContext* context,
Michael Ludwig72ab3462018-12-10 12:43:36 -0500846 GrPaint&& paint,
847 const SkMatrix& viewMatrix,
848 const SkRect rects[2]) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400849 SkASSERT(viewMatrix.rectStaysRect());
850 SkASSERT(!rects[0].isEmpty() && !rects[1].isEmpty());
851
852 SkRect devOutside, devInside;
853 viewMatrix.mapRect(&devOutside, rects[0]);
854 viewMatrix.mapRect(&devInside, rects[1]);
855 if (devInside.isEmpty()) {
856 if (devOutside.isEmpty()) {
857 return nullptr;
858 }
Michael Ludwig6b45c5d2020-02-07 09:56:38 -0500859 DrawQuad quad{GrQuad::MakeFromRect(rects[0], viewMatrix), GrQuad(rects[0]),
860 GrQuadAAFlags::kAll};
861 return GrFillRectOp::Make(context, std::move(paint), GrAAType::kCoverage, &quad);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400862 }
863
Robert Phillipsd5caeb82020-01-08 16:27:59 -0500864 SkVector devHalfStrokeSize{ SkScalarHalf(devOutside.fRight - devInside.fRight),
865 SkScalarHalf(devOutside.fBottom - devInside.fBottom) };
866 return AAStrokeRectOp::Make(context, std::move(paint), viewMatrix, devOutside,
867 devInside, devHalfStrokeSize);
joshualittaa37a962015-09-18 13:03:25 -0700868}
869
Michael Ludwig72ab3462018-12-10 12:43:36 -0500870} // namespace GrStrokeRectOp
joshualitt9ff64252015-08-10 09:03:51 -0700871
Hal Canary6f6961e2017-01-31 13:50:44 -0500872#if GR_TEST_UTILS
joshualitt9ff64252015-08-10 09:03:51 -0700873
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500874#include "src/gpu/GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700875
Michael Ludwig72ab3462018-12-10 12:43:36 -0500876GR_DRAW_OP_TEST_DEFINE(NonAAStrokeRectOp) {
877 SkMatrix viewMatrix = GrTest::TestMatrix(random);
878 SkRect rect = GrTest::TestRect(random);
879 SkScalar strokeWidth = random->nextBool() ? 0.0f : 2.0f;
880 SkPaint strokePaint;
881 strokePaint.setStrokeWidth(strokeWidth);
882 strokePaint.setStyle(SkPaint::kStroke_Style);
883 strokePaint.setStrokeJoin(SkPaint::kMiter_Join);
884 SkStrokeRec strokeRec(strokePaint);
885 GrAAType aaType = GrAAType::kNone;
Chris Dalton6ce447a2019-06-23 18:07:38 -0600886 if (numSamples > 1) {
Michael Ludwig72ab3462018-12-10 12:43:36 -0500887 aaType = random->nextBool() ? GrAAType::kMSAA : GrAAType::kNone;
888 }
889 return NonAAStrokeRectOp::Make(context, std::move(paint), viewMatrix, rect, strokeRec, aaType);
890}
891
Brian Salomonbaaf4392017-06-15 09:59:23 -0400892GR_DRAW_OP_TEST_DEFINE(AAStrokeRectOp) {
joshualitt9ff64252015-08-10 09:03:51 -0700893 bool miterStroke = random->nextBool();
894
bsalomon40ef4852016-05-02 13:22:13 -0700895 // Create either a empty rect or a non-empty rect.
Brian Salomon6a639042016-12-14 11:08:17 -0500896 SkRect rect =
897 random->nextBool() ? SkRect::MakeXYWH(10, 10, 50, 40) : SkRect::MakeXYWH(6, 7, 0, 0);
Brian Osman116b33e2020-02-05 13:34:09 -0500898 SkScalar minDim = std::min(rect.width(), rect.height());
bsalomon40ef4852016-05-02 13:22:13 -0700899 SkScalar strokeWidth = random->nextUScalar1() * minDim;
joshualitt9ff64252015-08-10 09:03:51 -0700900
bsalomon40ef4852016-05-02 13:22:13 -0700901 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
902 rec.setStrokeStyle(strokeWidth);
903 rec.setStrokeParams(SkPaint::kButt_Cap,
Brian Salomon6a639042016-12-14 11:08:17 -0500904 miterStroke ? SkPaint::kMiter_Join : SkPaint::kBevel_Join, 1.f);
bsalomon40ef4852016-05-02 13:22:13 -0700905 SkMatrix matrix = GrTest::TestMatrixRectStaysRect(random);
Michael Ludwig72ab3462018-12-10 12:43:36 -0500906 return AAStrokeRectOp::Make(context, std::move(paint), matrix, rect, rec);
joshualitt9ff64252015-08-10 09:03:51 -0700907}
908
909#endif