blob: 40d6083b505e6aefb5180a06e4653d6e461a3fdb [file] [log] [blame]
ethannicholas1a1b3ac2015-06-10 12:11:17 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrAALinearizingConvexPathRenderer.h"
9
10#include "GrAAConvexTessellator.h"
ethannicholas1a1b3ac2015-06-10 12:11:17 -070011#include "GrContext.h"
12#include "GrDefaultGeoProcFactory.h"
Brian Salomon5ec9def2016-12-20 15:34:05 -050013#include "GrDrawOpTest.h"
ethannicholas1a1b3ac2015-06-10 12:11:17 -070014#include "GrGeometryProcessor.h"
15#include "GrInvariantOutput.h"
Brian Salomon742e31d2016-12-07 17:06:19 -050016#include "GrOpFlushState.h"
ethannicholas1a1b3ac2015-06-10 12:11:17 -070017#include "GrPathUtils.h"
bsalomonbb243832016-07-22 07:10:19 -070018#include "GrPipelineBuilder.h"
Brian Salomondad29232016-12-01 16:40:24 -050019#include "GrProcessor.h"
bsalomon6663acf2016-05-10 09:14:17 -070020#include "GrStyle.h"
ethannicholas1a1b3ac2015-06-10 12:11:17 -070021#include "SkGeometry.h"
Brian Salomondad29232016-12-01 16:40:24 -050022#include "SkPathPriv.h"
ethannicholas1a1b3ac2015-06-10 12:11:17 -070023#include "SkString.h"
24#include "SkTraceEvent.h"
egdaniele659a582015-11-13 09:55:43 -080025#include "glsl/GrGLSLGeometryProcessor.h"
Brian Salomon89527432016-12-16 09:52:16 -050026#include "ops/GrMeshDrawOp.h"
ethannicholas1a1b3ac2015-06-10 12:11:17 -070027
fmalitabd5d7e72015-06-26 07:18:24 -070028static const int DEFAULT_BUFFER_SIZE = 100;
29
30// The thicker the stroke, the harder it is to produce high-quality results using tessellation. For
31// the time being, we simply drop back to software rendering above this stroke width.
32static const SkScalar kMaxStrokeWidth = 20.0;
ethannicholas1a1b3ac2015-06-10 12:11:17 -070033
34GrAALinearizingConvexPathRenderer::GrAALinearizingConvexPathRenderer() {
35}
36
37///////////////////////////////////////////////////////////////////////////////
38
bsalomon0aff2fa2015-07-31 06:48:27 -070039bool GrAALinearizingConvexPathRenderer::onCanDrawPath(const CanDrawPathArgs& args) const {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050040 if (GrAAType::kCoverage != args.fAAType) {
fmalitabd5d7e72015-06-26 07:18:24 -070041 return false;
42 }
bsalomon8acedde2016-06-24 10:42:16 -070043 if (!args.fShape->knownToBeConvex()) {
fmalitabd5d7e72015-06-26 07:18:24 -070044 return false;
45 }
bsalomon8acedde2016-06-24 10:42:16 -070046 if (args.fShape->style().pathEffect()) {
fmalitabd5d7e72015-06-26 07:18:24 -070047 return false;
48 }
bsalomon8acedde2016-06-24 10:42:16 -070049 if (args.fShape->inverseFilled()) {
bsalomon6663acf2016-05-10 09:14:17 -070050 return false;
51 }
bsalomon8acedde2016-06-24 10:42:16 -070052 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
robertphillips8c170972016-09-22 12:42:30 -070053
54 if (stroke.getStyle() == SkStrokeRec::kStroke_Style ||
55 stroke.getStyle() == SkStrokeRec::kStrokeAndFill_Style) {
ethannicholasfea77632015-08-19 12:09:12 -070056 if (!args.fViewMatrix->isSimilarity()) {
57 return false;
58 }
bsalomon6663acf2016-05-10 09:14:17 -070059 SkScalar strokeWidth = args.fViewMatrix->getMaxScale() * stroke.getWidth();
robertphillips8c170972016-09-22 12:42:30 -070060 if (strokeWidth < 1.0f && stroke.getStyle() == SkStrokeRec::kStroke_Style) {
61 return false;
62 }
63 return strokeWidth <= kMaxStrokeWidth &&
bsalomon8acedde2016-06-24 10:42:16 -070064 args.fShape->knownToBeClosed() &&
bsalomon6663acf2016-05-10 09:14:17 -070065 stroke.getJoin() != SkPaint::Join::kRound_Join;
fmalitabd5d7e72015-06-26 07:18:24 -070066 }
bsalomon6663acf2016-05-10 09:14:17 -070067 return stroke.getStyle() == SkStrokeRec::kFill_Style;
ethannicholas1a1b3ac2015-06-10 12:11:17 -070068}
69
70// extract the result vertices and indices from the GrAAConvexTessellator
71static void extract_verts(const GrAAConvexTessellator& tess,
72 void* vertices,
73 size_t vertexStride,
74 GrColor color,
75 uint16_t firstIndex,
76 uint16_t* idxs,
77 bool tweakAlphaForCoverage) {
78 intptr_t verts = reinterpret_cast<intptr_t>(vertices);
79
80 for (int i = 0; i < tess.numPts(); ++i) {
81 *((SkPoint*)((intptr_t)verts + i * vertexStride)) = tess.point(i);
82 }
83
84 // Make 'verts' point to the colors
85 verts += sizeof(SkPoint);
86 for (int i = 0; i < tess.numPts(); ++i) {
ethannicholas1a1b3ac2015-06-10 12:11:17 -070087 if (tweakAlphaForCoverage) {
fmalitabd5d7e72015-06-26 07:18:24 -070088 SkASSERT(SkScalarRoundToInt(255.0f * tess.coverage(i)) <= 255);
89 unsigned scale = SkScalarRoundToInt(255.0f * tess.coverage(i));
ethannicholas1a1b3ac2015-06-10 12:11:17 -070090 GrColor scaledColor = (0xff == scale) ? color : SkAlphaMulQ(color, scale);
91 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = scaledColor;
92 } else {
93 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = color;
mtklein002c2ce2015-08-26 05:43:22 -070094 *reinterpret_cast<float*>(verts + i * vertexStride + sizeof(GrColor)) =
fmalitabd5d7e72015-06-26 07:18:24 -070095 tess.coverage(i);
ethannicholas1a1b3ac2015-06-10 12:11:17 -070096 }
97 }
98
99 for (int i = 0; i < tess.numIndices(); ++i) {
100 idxs[i] = tess.index(i) + firstIndex;
101 }
102}
103
bungeman06ca8ec2016-06-09 08:01:03 -0700104static sk_sp<GrGeometryProcessor> create_fill_gp(bool tweakAlphaForCoverage,
joshualittdf0c5572015-08-03 11:35:28 -0700105 const SkMatrix& viewMatrix,
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700106 bool usesLocalCoords,
107 bool coverageIgnored) {
joshualittdf0c5572015-08-03 11:35:28 -0700108 using namespace GrDefaultGeoProcFactory;
joshualitte494a582015-08-03 09:32:36 -0700109
joshualittdf0c5572015-08-03 11:35:28 -0700110 Color color(Color::kAttribute_Type);
111 Coverage::Type coverageType;
112 // TODO remove coverage if coverage is ignored
113 /*if (coverageIgnored) {
114 coverageType = Coverage::kNone_Type;
115 } else*/ if (tweakAlphaForCoverage) {
116 coverageType = Coverage::kSolid_Type;
117 } else {
118 coverageType = Coverage::kAttribute_Type;
119 }
120 Coverage coverage(coverageType);
121 LocalCoords localCoords(usesLocalCoords ? LocalCoords::kUsePosition_Type :
122 LocalCoords::kUnused_Type);
bungeman06ca8ec2016-06-09 08:01:03 -0700123 return MakeForDeviceSpace(color, coverage, localCoords, viewMatrix);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700124}
125
Brian Salomon780dad12016-12-15 18:08:40 -0500126class AAFlatteningConvexPathOp final : public GrMeshDrawOp {
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700127public:
Brian Salomon25a88092016-12-01 09:36:50 -0500128 DEFINE_OP_CLASS_ID
Brian Salomon780dad12016-12-15 18:08:40 -0500129 static sk_sp<GrDrawOp> Make(GrColor color,
bsalomon0432dd62016-06-30 07:19:27 -0700130 const SkMatrix& viewMatrix,
131 const SkPath& path,
132 SkScalar strokeWidth,
robertphillips8c170972016-09-22 12:42:30 -0700133 SkStrokeRec::Style style,
bsalomon0432dd62016-06-30 07:19:27 -0700134 SkPaint::Join join,
Brian Salomon780dad12016-12-15 18:08:40 -0500135 SkScalar miterLimit) {
136 return sk_sp<GrDrawOp>(new AAFlatteningConvexPathOp(color, viewMatrix, path, strokeWidth,
137 style, join, miterLimit));
138 }
139
140 const char* name() const override { return "AAFlatteningConvexPathOp"; }
141
142 SkString dumpInfo() const override {
143 SkString string;
144 for (const auto& path : fPaths) {
145 string.appendf(
146 "Color: 0x%08x, StrokeWidth: %.2f, Style: %d, Join: %d, "
147 "MiterLimit: %.2f\n",
148 path.fColor, path.fStrokeWidth, path.fStyle, path.fJoin, path.fMiterLimit);
149 }
150 string.append(DumpPipelineInfo(*this->pipeline()));
151 string.append(INHERITED::dumpInfo());
152 return string;
153 }
154
Brian Salomon780dad12016-12-15 18:08:40 -0500155private:
156 AAFlatteningConvexPathOp(GrColor color,
157 const SkMatrix& viewMatrix,
158 const SkPath& path,
159 SkScalar strokeWidth,
160 SkStrokeRec::Style style,
161 SkPaint::Join join,
162 SkScalar miterLimit)
163 : INHERITED(ClassID()) {
164 fPaths.emplace_back(
165 PathData{color, viewMatrix, path, strokeWidth, style, join, miterLimit});
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700166
bsalomon0432dd62016-06-30 07:19:27 -0700167 // compute bounds
bsalomon88cf17d2016-07-08 06:40:56 -0700168 SkRect bounds = path.getBounds();
bsalomon0432dd62016-06-30 07:19:27 -0700169 SkScalar w = strokeWidth;
170 if (w > 0) {
171 w /= 2;
172 // If the half stroke width is < 1 then we effectively fallback to bevel joins.
173 if (SkPaint::kMiter_Join == join && w > 1.f) {
174 w *= miterLimit;
175 }
bsalomon88cf17d2016-07-08 06:40:56 -0700176 bounds.outset(w, w);
bsalomon0432dd62016-06-30 07:19:27 -0700177 }
bsalomon88cf17d2016-07-08 06:40:56 -0700178 this->setTransformedBounds(bounds, viewMatrix, HasAABloat::kYes, IsZeroArea::kNo);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700179 }
180
Brian Salomon92aee3d2016-12-21 09:20:25 -0500181 void getPipelineAnalysisInput(GrPipelineAnalysisDrawOpInput* input) const override {
182 input->pipelineColorInput()->setKnownFourComponents(fPaths[0].fColor);
183 input->pipelineCoverageInput()->setUnknownSingleComponent();
184 }
185
186 void applyPipelineOptimizations(const GrPipelineOptimizations& optimizations) override {
187 if (!optimizations.readsColor()) {
Brian Salomon780dad12016-12-15 18:08:40 -0500188 fPaths[0].fColor = GrColor_ILLEGAL;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700189 }
Brian Salomon92aee3d2016-12-21 09:20:25 -0500190 optimizations.getOverrideColorIfSet(&fPaths[0].fColor);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700191
192 // setup batch properties
Brian Salomon780dad12016-12-15 18:08:40 -0500193 fColor = fPaths[0].fColor;
Brian Salomon92aee3d2016-12-21 09:20:25 -0500194 fUsesLocalCoords = optimizations.readsLocalCoords();
195 fCoverageIgnored = !optimizations.readsCoverage();
196 fCanTweakAlphaForCoverage = optimizations.canTweakAlphaForCoverage();
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700197 }
198
Brian Salomondad29232016-12-01 16:40:24 -0500199 void draw(GrMeshDrawOp::Target* target, const GrGeometryProcessor* gp, int vertexCount,
joshualitt144c3c82015-11-30 12:30:13 -0800200 size_t vertexStride, void* vertices, int indexCount, uint16_t* indices) const {
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700201 if (vertexCount == 0 || indexCount == 0) {
202 return;
203 }
cdalton397536c2016-03-25 12:15:03 -0700204 const GrBuffer* vertexBuffer;
egdaniel0e1853c2016-03-17 11:35:45 -0700205 GrMesh mesh;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700206 int firstVertex;
mtklein002c2ce2015-08-26 05:43:22 -0700207 void* verts = target->makeVertexSpace(vertexStride, vertexCount, &vertexBuffer,
bsalomon75398562015-08-17 12:55:38 -0700208 &firstVertex);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700209 if (!verts) {
210 SkDebugf("Could not allocate vertices\n");
211 return;
212 }
213 memcpy(verts, vertices, vertexCount * vertexStride);
214
cdalton397536c2016-03-25 12:15:03 -0700215 const GrBuffer* indexBuffer;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700216 int firstIndex;
bsalomon75398562015-08-17 12:55:38 -0700217 uint16_t* idxs = target->makeIndexSpace(indexCount, &indexBuffer, &firstIndex);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700218 if (!idxs) {
219 SkDebugf("Could not allocate indices\n");
220 return;
221 }
222 memcpy(idxs, indices, indexCount * sizeof(uint16_t));
egdaniel0e1853c2016-03-17 11:35:45 -0700223 mesh.initIndexed(kTriangles_GrPrimitiveType, vertexBuffer, indexBuffer, firstVertex,
224 firstIndex, vertexCount, indexCount);
bsalomon342bfc22016-04-01 06:06:20 -0700225 target->draw(gp, mesh);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700226 }
mtklein002c2ce2015-08-26 05:43:22 -0700227
joshualitt144c3c82015-11-30 12:30:13 -0800228 void onPrepareDraws(Target* target) const override {
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700229 bool canTweakAlphaForCoverage = this->canTweakAlphaForCoverage();
230
joshualittdf0c5572015-08-03 11:35:28 -0700231 // Setup GrGeometryProcessor
bungeman06ca8ec2016-06-09 08:01:03 -0700232 sk_sp<GrGeometryProcessor> gp(create_fill_gp(canTweakAlphaForCoverage,
233 this->viewMatrix(),
234 this->usesLocalCoords(),
235 this->coverageIgnored()));
joshualittdf0c5572015-08-03 11:35:28 -0700236 if (!gp) {
237 SkDebugf("Couldn't create a GrGeometryProcessor\n");
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700238 return;
239 }
240
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700241 size_t vertexStride = gp->getVertexStride();
242
243 SkASSERT(canTweakAlphaForCoverage ?
244 vertexStride == sizeof(GrDefaultGeoProcFactory::PositionColorAttr) :
245 vertexStride == sizeof(GrDefaultGeoProcFactory::PositionColorCoverageAttr));
246
Brian Salomon780dad12016-12-15 18:08:40 -0500247 int instanceCount = fPaths.count();
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700248
249 int vertexCount = 0;
250 int indexCount = 0;
251 int maxVertices = DEFAULT_BUFFER_SIZE;
252 int maxIndices = DEFAULT_BUFFER_SIZE;
mtklein002c2ce2015-08-26 05:43:22 -0700253 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride);
254 uint16_t* indices = (uint16_t*) sk_malloc_throw(maxIndices * sizeof(uint16_t));
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700255 for (int i = 0; i < instanceCount; i++) {
Brian Salomon780dad12016-12-15 18:08:40 -0500256 const PathData& args = fPaths[i];
robertphillips8c170972016-09-22 12:42:30 -0700257 GrAAConvexTessellator tess(args.fStyle, args.fStrokeWidth,
258 args.fJoin, args.fMiterLimit);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700259
260 if (!tess.tessellate(args.fViewMatrix, args.fPath)) {
261 continue;
262 }
263
264 int currentIndices = tess.numIndices();
265 SkASSERT(currentIndices <= UINT16_MAX);
266 if (indexCount + currentIndices > UINT16_MAX) {
mtklein002c2ce2015-08-26 05:43:22 -0700267 // if we added the current instance, we would overflow the indices we can store in a
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700268 // uint16_t. Draw what we've got so far and reset.
bungeman06ca8ec2016-06-09 08:01:03 -0700269 this->draw(target, gp.get(),
270 vertexCount, vertexStride, vertices, indexCount, indices);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700271 vertexCount = 0;
272 indexCount = 0;
273 }
274 int currentVertices = tess.numPts();
275 if (vertexCount + currentVertices > maxVertices) {
276 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2);
mtklein002c2ce2015-08-26 05:43:22 -0700277 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700278 }
279 if (indexCount + currentIndices > maxIndices) {
280 maxIndices = SkTMax(indexCount + currentIndices, maxIndices * 2);
mtklein002c2ce2015-08-26 05:43:22 -0700281 indices = (uint16_t*) sk_realloc_throw(indices, maxIndices * sizeof(uint16_t));
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700282 }
283
mtklein002c2ce2015-08-26 05:43:22 -0700284 extract_verts(tess, vertices + vertexStride * vertexCount, vertexStride, args.fColor,
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700285 vertexCount, indices + indexCount, canTweakAlphaForCoverage);
286 vertexCount += currentVertices;
287 indexCount += currentIndices;
288 }
bungeman06ca8ec2016-06-09 08:01:03 -0700289 this->draw(target, gp.get(), vertexCount, vertexStride, vertices, indexCount, indices);
mtklein002c2ce2015-08-26 05:43:22 -0700290 sk_free(vertices);
291 sk_free(indices);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700292 }
293
Brian Salomon25a88092016-12-01 09:36:50 -0500294 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon780dad12016-12-15 18:08:40 -0500295 AAFlatteningConvexPathOp* that = t->cast<AAFlatteningConvexPathOp>();
bsalomonabd30f52015-08-13 13:34:48 -0700296 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
297 that->bounds(), caps)) {
joshualitt8cab9a72015-07-16 09:13:50 -0700298 return false;
299 }
300
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700301 SkASSERT(this->usesLocalCoords() == that->usesLocalCoords());
302 if (this->usesLocalCoords() && !this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
303 return false;
304 }
305
Brian Salomon780dad12016-12-15 18:08:40 -0500306 // In the event of two ops, one who can tweak, one who cannot, we just fall back to not
307 // tweaking
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700308 if (this->canTweakAlphaForCoverage() != that->canTweakAlphaForCoverage()) {
Brian Salomon780dad12016-12-15 18:08:40 -0500309 fCanTweakAlphaForCoverage = false;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700310 }
311
Brian Salomon780dad12016-12-15 18:08:40 -0500312 fPaths.push_back_n(that->fPaths.count(), that->fPaths.begin());
bsalomon88cf17d2016-07-08 06:40:56 -0700313 this->joinBounds(*that);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700314 return true;
315 }
316
Brian Salomon780dad12016-12-15 18:08:40 -0500317 GrColor color() const { return fColor; }
318 bool usesLocalCoords() const { return fUsesLocalCoords; }
319 bool canTweakAlphaForCoverage() const { return fCanTweakAlphaForCoverage; }
320 const SkMatrix& viewMatrix() const { return fPaths[0].fViewMatrix; }
321 bool coverageIgnored() const { return fCoverageIgnored; }
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700322
Brian Salomon780dad12016-12-15 18:08:40 -0500323 struct PathData {
bsalomon0432dd62016-06-30 07:19:27 -0700324 GrColor fColor;
325 SkMatrix fViewMatrix;
326 SkPath fPath;
327 SkScalar fStrokeWidth;
robertphillips8c170972016-09-22 12:42:30 -0700328 SkStrokeRec::Style fStyle;
bsalomon0432dd62016-06-30 07:19:27 -0700329 SkPaint::Join fJoin;
330 SkScalar fMiterLimit;
331 };
332
Brian Salomon780dad12016-12-15 18:08:40 -0500333 GrColor fColor;
334 bool fUsesLocalCoords;
335 bool fCoverageIgnored;
336 bool fCanTweakAlphaForCoverage;
337 SkSTArray<1, PathData, true> fPaths;
reed1b55a962015-09-17 20:16:13 -0700338
Brian Salomondad29232016-12-01 16:40:24 -0500339 typedef GrMeshDrawOp INHERITED;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700340};
341
bsalomon0aff2fa2015-07-31 06:48:27 -0700342bool GrAALinearizingConvexPathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400343 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
joshualittde83b412016-01-14 09:58:36 -0800344 "GrAALinearizingConvexPathRenderer::onDrawPath");
Brian Osman11052242016-10-27 14:47:55 -0400345 SkASSERT(!args.fRenderTargetContext->isUnifiedMultisampled());
bsalomon8acedde2016-06-24 10:42:16 -0700346 SkASSERT(!args.fShape->isEmpty());
robertphillips8c170972016-09-22 12:42:30 -0700347 SkASSERT(!args.fShape->style().pathEffect());
csmartdaltonecbc12b2016-06-08 10:08:43 -0700348
bsalomon0432dd62016-06-30 07:19:27 -0700349 SkPath path;
350 args.fShape->asPath(&path);
bsalomon8acedde2016-06-24 10:42:16 -0700351 bool fill = args.fShape->style().isSimpleFill();
352 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
bsalomon0432dd62016-06-30 07:19:27 -0700353 SkScalar strokeWidth = fill ? -1.0f : stroke.getWidth();
354 SkPaint::Join join = fill ? SkPaint::Join::kMiter_Join : stroke.getJoin();
355 SkScalar miterLimit = stroke.getMiter();
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700356
Brian Salomon780dad12016-12-15 18:08:40 -0500357 sk_sp<GrDrawOp> op =
358 AAFlatteningConvexPathOp::Make(args.fPaint->getColor(), *args.fViewMatrix, path,
359 strokeWidth, stroke.getStyle(), join, miterLimit);
robertphillips976f5f02016-06-03 10:59:20 -0700360
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500361 GrPipelineBuilder pipelineBuilder(*args.fPaint, args.fAAType);
bsalomonbb243832016-07-22 07:10:19 -0700362 pipelineBuilder.setUserStencil(args.fUserStencilSettings);
363
Brian Salomon24f19782016-12-13 15:10:11 -0500364 args.fRenderTargetContext->addDrawOp(pipelineBuilder, *args.fClip, std::move(op));
bsalomonbb243832016-07-22 07:10:19 -0700365
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700366 return true;
367}
368
369///////////////////////////////////////////////////////////////////////////////////////////////////
370
371#ifdef GR_TEST_UTILS
372
Brian Salomon5ec9def2016-12-20 15:34:05 -0500373DRAW_OP_TEST_DEFINE(AAFlatteningConvexPathOp) {
bsalomon0432dd62016-06-30 07:19:27 -0700374 GrColor color = GrRandomColor(random);
Brian Salomon780dad12016-12-15 18:08:40 -0500375 SkMatrix viewMatrix = GrTest::TestMatrixPreservesRightAngles(random);
bsalomon0432dd62016-06-30 07:19:27 -0700376 SkPath path = GrTest::TestPathConvex(random);
robertphillips8c170972016-09-22 12:42:30 -0700377
378 SkStrokeRec::Style styles[3] = { SkStrokeRec::kFill_Style,
Herb Derby60c05f92016-12-13 15:18:55 -0500379 SkStrokeRec::kStroke_Style,
robertphillips8c170972016-09-22 12:42:30 -0700380 SkStrokeRec::kStrokeAndFill_Style };
381
382 SkStrokeRec::Style style = styles[random->nextU() % 3];
383
384 SkScalar strokeWidth = -1.f;
bsalomon0432dd62016-06-30 07:19:27 -0700385 SkPaint::Join join = SkPaint::kMiter_Join;
386 SkScalar miterLimit = 0.5f;
robertphillips8c170972016-09-22 12:42:30 -0700387
388 if (SkStrokeRec::kFill_Style != style) {
389 strokeWidth = random->nextRangeF(1.0f, 10.0f);
390 if (random->nextBool()) {
391 join = SkPaint::kMiter_Join;
392 } else {
393 join = SkPaint::kBevel_Join;
394 }
395 miterLimit = random->nextRangeF(0.5f, 2.0f);
396 }
397
Brian Salomon780dad12016-12-15 18:08:40 -0500398 return AAFlatteningConvexPathOp::Make(color, viewMatrix, path, strokeWidth, style, join,
Brian Salomon5ec9def2016-12-20 15:34:05 -0500399 miterLimit);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700400}
401
402#endif