blob: fd09d91599219272fff7af77f52b8f1fd794bbb2 [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,
Brian Salomon8c852be2017-01-04 10:44:42 -0500106 bool usesLocalCoords) {
joshualittdf0c5572015-08-03 11:35:28 -0700107 using namespace GrDefaultGeoProcFactory;
joshualitte494a582015-08-03 09:32:36 -0700108
joshualittdf0c5572015-08-03 11:35:28 -0700109 Coverage::Type coverageType;
Brian Salomon8c852be2017-01-04 10:44:42 -0500110 if (tweakAlphaForCoverage) {
joshualittdf0c5572015-08-03 11:35:28 -0700111 coverageType = Coverage::kSolid_Type;
112 } else {
113 coverageType = Coverage::kAttribute_Type;
114 }
Brian Salomon8c852be2017-01-04 10:44:42 -0500115 LocalCoords::Type localCoordsType =
116 usesLocalCoords ? LocalCoords::kUsePosition_Type : LocalCoords::kUnused_Type;
Brian Salomon3de0aee2017-01-29 09:34:17 -0500117 return MakeForDeviceSpace(Color::kPremulGrColorAttribute_Type, coverageType, localCoordsType,
118 viewMatrix);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700119}
120
Brian Salomon780dad12016-12-15 18:08:40 -0500121class AAFlatteningConvexPathOp final : public GrMeshDrawOp {
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700122public:
Brian Salomon25a88092016-12-01 09:36:50 -0500123 DEFINE_OP_CLASS_ID
Brian Salomonf8334782017-01-03 09:42:58 -0500124 static std::unique_ptr<GrDrawOp> Make(GrColor color,
125 const SkMatrix& viewMatrix,
126 const SkPath& path,
127 SkScalar strokeWidth,
128 SkStrokeRec::Style style,
129 SkPaint::Join join,
130 SkScalar miterLimit) {
131 return std::unique_ptr<GrDrawOp>(new AAFlatteningConvexPathOp(
132 color, viewMatrix, path, strokeWidth, style, join, miterLimit));
Brian Salomon780dad12016-12-15 18:08:40 -0500133 }
134
135 const char* name() const override { return "AAFlatteningConvexPathOp"; }
136
137 SkString dumpInfo() const override {
138 SkString string;
139 for (const auto& path : fPaths) {
140 string.appendf(
141 "Color: 0x%08x, StrokeWidth: %.2f, Style: %d, Join: %d, "
142 "MiterLimit: %.2f\n",
143 path.fColor, path.fStrokeWidth, path.fStyle, path.fJoin, path.fMiterLimit);
144 }
145 string.append(DumpPipelineInfo(*this->pipeline()));
146 string.append(INHERITED::dumpInfo());
147 return string;
148 }
149
Brian Salomon780dad12016-12-15 18:08:40 -0500150private:
151 AAFlatteningConvexPathOp(GrColor color,
152 const SkMatrix& viewMatrix,
153 const SkPath& path,
154 SkScalar strokeWidth,
155 SkStrokeRec::Style style,
156 SkPaint::Join join,
157 SkScalar miterLimit)
158 : INHERITED(ClassID()) {
159 fPaths.emplace_back(
160 PathData{color, viewMatrix, path, strokeWidth, style, join, miterLimit});
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700161
bsalomon0432dd62016-06-30 07:19:27 -0700162 // compute bounds
bsalomon88cf17d2016-07-08 06:40:56 -0700163 SkRect bounds = path.getBounds();
bsalomon0432dd62016-06-30 07:19:27 -0700164 SkScalar w = strokeWidth;
165 if (w > 0) {
166 w /= 2;
167 // If the half stroke width is < 1 then we effectively fallback to bevel joins.
168 if (SkPaint::kMiter_Join == join && w > 1.f) {
169 w *= miterLimit;
170 }
bsalomon88cf17d2016-07-08 06:40:56 -0700171 bounds.outset(w, w);
bsalomon0432dd62016-06-30 07:19:27 -0700172 }
bsalomon88cf17d2016-07-08 06:40:56 -0700173 this->setTransformedBounds(bounds, viewMatrix, HasAABloat::kYes, IsZeroArea::kNo);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700174 }
175
Brian Salomon92aee3d2016-12-21 09:20:25 -0500176 void getPipelineAnalysisInput(GrPipelineAnalysisDrawOpInput* input) const override {
177 input->pipelineColorInput()->setKnownFourComponents(fPaths[0].fColor);
178 input->pipelineCoverageInput()->setUnknownSingleComponent();
179 }
180
181 void applyPipelineOptimizations(const GrPipelineOptimizations& optimizations) override {
Brian Salomon92aee3d2016-12-21 09:20:25 -0500182 optimizations.getOverrideColorIfSet(&fPaths[0].fColor);
Brian Salomon92aee3d2016-12-21 09:20:25 -0500183 fUsesLocalCoords = optimizations.readsLocalCoords();
Brian Salomon92aee3d2016-12-21 09:20:25 -0500184 fCanTweakAlphaForCoverage = optimizations.canTweakAlphaForCoverage();
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700185 }
186
Brian Salomondad29232016-12-01 16:40:24 -0500187 void draw(GrMeshDrawOp::Target* target, const GrGeometryProcessor* gp, int vertexCount,
joshualitt144c3c82015-11-30 12:30:13 -0800188 size_t vertexStride, void* vertices, int indexCount, uint16_t* indices) const {
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700189 if (vertexCount == 0 || indexCount == 0) {
190 return;
191 }
cdalton397536c2016-03-25 12:15:03 -0700192 const GrBuffer* vertexBuffer;
egdaniel0e1853c2016-03-17 11:35:45 -0700193 GrMesh mesh;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700194 int firstVertex;
mtklein002c2ce2015-08-26 05:43:22 -0700195 void* verts = target->makeVertexSpace(vertexStride, vertexCount, &vertexBuffer,
bsalomon75398562015-08-17 12:55:38 -0700196 &firstVertex);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700197 if (!verts) {
198 SkDebugf("Could not allocate vertices\n");
199 return;
200 }
201 memcpy(verts, vertices, vertexCount * vertexStride);
202
cdalton397536c2016-03-25 12:15:03 -0700203 const GrBuffer* indexBuffer;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700204 int firstIndex;
bsalomon75398562015-08-17 12:55:38 -0700205 uint16_t* idxs = target->makeIndexSpace(indexCount, &indexBuffer, &firstIndex);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700206 if (!idxs) {
207 SkDebugf("Could not allocate indices\n");
208 return;
209 }
210 memcpy(idxs, indices, indexCount * sizeof(uint16_t));
egdaniel0e1853c2016-03-17 11:35:45 -0700211 mesh.initIndexed(kTriangles_GrPrimitiveType, vertexBuffer, indexBuffer, firstVertex,
212 firstIndex, vertexCount, indexCount);
bsalomon342bfc22016-04-01 06:06:20 -0700213 target->draw(gp, mesh);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700214 }
mtklein002c2ce2015-08-26 05:43:22 -0700215
joshualitt144c3c82015-11-30 12:30:13 -0800216 void onPrepareDraws(Target* target) const override {
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700217 bool canTweakAlphaForCoverage = this->canTweakAlphaForCoverage();
218
joshualittdf0c5572015-08-03 11:35:28 -0700219 // Setup GrGeometryProcessor
Brian Salomon8c852be2017-01-04 10:44:42 -0500220 sk_sp<GrGeometryProcessor> gp(create_fill_gp(
221 canTweakAlphaForCoverage, this->viewMatrix(), this->usesLocalCoords()));
joshualittdf0c5572015-08-03 11:35:28 -0700222 if (!gp) {
223 SkDebugf("Couldn't create a GrGeometryProcessor\n");
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700224 return;
225 }
226
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700227 size_t vertexStride = gp->getVertexStride();
228
229 SkASSERT(canTweakAlphaForCoverage ?
230 vertexStride == sizeof(GrDefaultGeoProcFactory::PositionColorAttr) :
231 vertexStride == sizeof(GrDefaultGeoProcFactory::PositionColorCoverageAttr));
232
Brian Salomon780dad12016-12-15 18:08:40 -0500233 int instanceCount = fPaths.count();
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700234
235 int vertexCount = 0;
236 int indexCount = 0;
237 int maxVertices = DEFAULT_BUFFER_SIZE;
238 int maxIndices = DEFAULT_BUFFER_SIZE;
mtklein002c2ce2015-08-26 05:43:22 -0700239 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride);
240 uint16_t* indices = (uint16_t*) sk_malloc_throw(maxIndices * sizeof(uint16_t));
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700241 for (int i = 0; i < instanceCount; i++) {
Brian Salomon780dad12016-12-15 18:08:40 -0500242 const PathData& args = fPaths[i];
robertphillips8c170972016-09-22 12:42:30 -0700243 GrAAConvexTessellator tess(args.fStyle, args.fStrokeWidth,
244 args.fJoin, args.fMiterLimit);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700245
246 if (!tess.tessellate(args.fViewMatrix, args.fPath)) {
247 continue;
248 }
249
250 int currentIndices = tess.numIndices();
251 SkASSERT(currentIndices <= UINT16_MAX);
252 if (indexCount + currentIndices > UINT16_MAX) {
mtklein002c2ce2015-08-26 05:43:22 -0700253 // if we added the current instance, we would overflow the indices we can store in a
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700254 // uint16_t. Draw what we've got so far and reset.
bungeman06ca8ec2016-06-09 08:01:03 -0700255 this->draw(target, gp.get(),
256 vertexCount, vertexStride, vertices, indexCount, indices);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700257 vertexCount = 0;
258 indexCount = 0;
259 }
260 int currentVertices = tess.numPts();
261 if (vertexCount + currentVertices > maxVertices) {
262 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2);
mtklein002c2ce2015-08-26 05:43:22 -0700263 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700264 }
265 if (indexCount + currentIndices > maxIndices) {
266 maxIndices = SkTMax(indexCount + currentIndices, maxIndices * 2);
mtklein002c2ce2015-08-26 05:43:22 -0700267 indices = (uint16_t*) sk_realloc_throw(indices, maxIndices * sizeof(uint16_t));
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700268 }
269
mtklein002c2ce2015-08-26 05:43:22 -0700270 extract_verts(tess, vertices + vertexStride * vertexCount, vertexStride, args.fColor,
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700271 vertexCount, indices + indexCount, canTweakAlphaForCoverage);
272 vertexCount += currentVertices;
273 indexCount += currentIndices;
274 }
bungeman06ca8ec2016-06-09 08:01:03 -0700275 this->draw(target, gp.get(), vertexCount, vertexStride, vertices, indexCount, indices);
mtklein002c2ce2015-08-26 05:43:22 -0700276 sk_free(vertices);
277 sk_free(indices);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700278 }
279
Brian Salomon25a88092016-12-01 09:36:50 -0500280 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon780dad12016-12-15 18:08:40 -0500281 AAFlatteningConvexPathOp* that = t->cast<AAFlatteningConvexPathOp>();
bsalomonabd30f52015-08-13 13:34:48 -0700282 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
283 that->bounds(), caps)) {
joshualitt8cab9a72015-07-16 09:13:50 -0700284 return false;
285 }
286
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700287 SkASSERT(this->usesLocalCoords() == that->usesLocalCoords());
288 if (this->usesLocalCoords() && !this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
289 return false;
290 }
291
Brian Salomon780dad12016-12-15 18:08:40 -0500292 // In the event of two ops, one who can tweak, one who cannot, we just fall back to not
293 // tweaking
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700294 if (this->canTweakAlphaForCoverage() != that->canTweakAlphaForCoverage()) {
Brian Salomon780dad12016-12-15 18:08:40 -0500295 fCanTweakAlphaForCoverage = false;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700296 }
297
Brian Salomon780dad12016-12-15 18:08:40 -0500298 fPaths.push_back_n(that->fPaths.count(), that->fPaths.begin());
bsalomon88cf17d2016-07-08 06:40:56 -0700299 this->joinBounds(*that);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700300 return true;
301 }
302
Brian Salomon780dad12016-12-15 18:08:40 -0500303 bool usesLocalCoords() const { return fUsesLocalCoords; }
304 bool canTweakAlphaForCoverage() const { return fCanTweakAlphaForCoverage; }
305 const SkMatrix& viewMatrix() const { return fPaths[0].fViewMatrix; }
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700306
Brian Salomon780dad12016-12-15 18:08:40 -0500307 struct PathData {
bsalomon0432dd62016-06-30 07:19:27 -0700308 GrColor fColor;
309 SkMatrix fViewMatrix;
310 SkPath fPath;
311 SkScalar fStrokeWidth;
robertphillips8c170972016-09-22 12:42:30 -0700312 SkStrokeRec::Style fStyle;
bsalomon0432dd62016-06-30 07:19:27 -0700313 SkPaint::Join fJoin;
314 SkScalar fMiterLimit;
315 };
316
Brian Salomon780dad12016-12-15 18:08:40 -0500317 bool fUsesLocalCoords;
Brian Salomon780dad12016-12-15 18:08:40 -0500318 bool fCanTweakAlphaForCoverage;
319 SkSTArray<1, PathData, true> fPaths;
reed1b55a962015-09-17 20:16:13 -0700320
Brian Salomondad29232016-12-01 16:40:24 -0500321 typedef GrMeshDrawOp INHERITED;
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700322};
323
bsalomon0aff2fa2015-07-31 06:48:27 -0700324bool GrAALinearizingConvexPathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400325 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
joshualittde83b412016-01-14 09:58:36 -0800326 "GrAALinearizingConvexPathRenderer::onDrawPath");
Brian Osman11052242016-10-27 14:47:55 -0400327 SkASSERT(!args.fRenderTargetContext->isUnifiedMultisampled());
bsalomon8acedde2016-06-24 10:42:16 -0700328 SkASSERT(!args.fShape->isEmpty());
robertphillips8c170972016-09-22 12:42:30 -0700329 SkASSERT(!args.fShape->style().pathEffect());
csmartdaltonecbc12b2016-06-08 10:08:43 -0700330
bsalomon0432dd62016-06-30 07:19:27 -0700331 SkPath path;
332 args.fShape->asPath(&path);
bsalomon8acedde2016-06-24 10:42:16 -0700333 bool fill = args.fShape->style().isSimpleFill();
334 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
bsalomon0432dd62016-06-30 07:19:27 -0700335 SkScalar strokeWidth = fill ? -1.0f : stroke.getWidth();
336 SkPaint::Join join = fill ? SkPaint::Join::kMiter_Join : stroke.getJoin();
337 SkScalar miterLimit = stroke.getMiter();
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700338
Brian Salomonf8334782017-01-03 09:42:58 -0500339 std::unique_ptr<GrDrawOp> op =
Brian Salomon82f44312017-01-11 13:42:54 -0500340 AAFlatteningConvexPathOp::Make(args.fPaint.getColor(), *args.fViewMatrix, path,
Brian Salomon780dad12016-12-15 18:08:40 -0500341 strokeWidth, stroke.getStyle(), join, miterLimit);
robertphillips976f5f02016-06-03 10:59:20 -0700342
Brian Salomon82f44312017-01-11 13:42:54 -0500343 GrPipelineBuilder pipelineBuilder(std::move(args.fPaint), args.fAAType);
bsalomonbb243832016-07-22 07:10:19 -0700344 pipelineBuilder.setUserStencil(args.fUserStencilSettings);
345
Brian Salomon24f19782016-12-13 15:10:11 -0500346 args.fRenderTargetContext->addDrawOp(pipelineBuilder, *args.fClip, std::move(op));
bsalomonbb243832016-07-22 07:10:19 -0700347
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700348 return true;
349}
350
351///////////////////////////////////////////////////////////////////////////////////////////////////
352
353#ifdef GR_TEST_UTILS
354
Brian Salomon5ec9def2016-12-20 15:34:05 -0500355DRAW_OP_TEST_DEFINE(AAFlatteningConvexPathOp) {
bsalomon0432dd62016-06-30 07:19:27 -0700356 GrColor color = GrRandomColor(random);
Brian Salomon780dad12016-12-15 18:08:40 -0500357 SkMatrix viewMatrix = GrTest::TestMatrixPreservesRightAngles(random);
bsalomon0432dd62016-06-30 07:19:27 -0700358 SkPath path = GrTest::TestPathConvex(random);
robertphillips8c170972016-09-22 12:42:30 -0700359
360 SkStrokeRec::Style styles[3] = { SkStrokeRec::kFill_Style,
Herb Derby60c05f92016-12-13 15:18:55 -0500361 SkStrokeRec::kStroke_Style,
robertphillips8c170972016-09-22 12:42:30 -0700362 SkStrokeRec::kStrokeAndFill_Style };
363
364 SkStrokeRec::Style style = styles[random->nextU() % 3];
365
366 SkScalar strokeWidth = -1.f;
bsalomon0432dd62016-06-30 07:19:27 -0700367 SkPaint::Join join = SkPaint::kMiter_Join;
368 SkScalar miterLimit = 0.5f;
robertphillips8c170972016-09-22 12:42:30 -0700369
370 if (SkStrokeRec::kFill_Style != style) {
371 strokeWidth = random->nextRangeF(1.0f, 10.0f);
372 if (random->nextBool()) {
373 join = SkPaint::kMiter_Join;
374 } else {
375 join = SkPaint::kBevel_Join;
376 }
377 miterLimit = random->nextRangeF(0.5f, 2.0f);
378 }
379
Brian Salomon780dad12016-12-15 18:08:40 -0500380 return AAFlatteningConvexPathOp::Make(color, viewMatrix, path, strokeWidth, style, join,
Brian Salomon5ec9def2016-12-20 15:34:05 -0500381 miterLimit);
ethannicholas1a1b3ac2015-06-10 12:11:17 -0700382}
383
384#endif