blob: f4d14cdf7160d5b83901a0ec998da1ad633d95a5 [file] [log] [blame]
ethannicholas6536ae52016-05-02 12:16:49 -07001/*
2 * Copyright 2016 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 "GrMSAAPathRenderer.h"
9
robertphillips976f5f02016-06-03 10:59:20 -070010#include "GrAuditTrail.h"
robertphillips976f5f02016-06-03 10:59:20 -070011#include "GrClip.h"
ethannicholas6536ae52016-05-02 12:16:49 -070012#include "GrDefaultGeoProcFactory.h"
csmartdalton02fa32c2016-08-19 13:29:27 -070013#include "GrFixedClip.h"
Brian Salomondad29232016-12-01 16:40:24 -050014#include "GrMesh.h"
Brian Salomon742e31d2016-12-07 17:06:19 -050015#include "GrOpFlushState.h"
ethannicholas6536ae52016-05-02 12:16:49 -070016#include "GrPathStencilSettings.h"
17#include "GrPathUtils.h"
bsalomonbb243832016-07-22 07:10:19 -070018#include "GrPipelineBuilder.h"
Hal Canary95e3c052017-01-11 12:44:43 -050019#include "SkAutoMalloc.h"
ethannicholas6536ae52016-05-02 12:16:49 -070020#include "SkGeometry.h"
21#include "SkTraceEvent.h"
Brian Salomondad29232016-12-01 16:40:24 -050022#include "gl/GrGLVaryingHandler.h"
ethannicholas6536ae52016-05-02 12:16:49 -070023#include "glsl/GrGLSLFragmentShaderBuilder.h"
Brian Salomondad29232016-12-01 16:40:24 -050024#include "glsl/GrGLSLGeometryProcessor.h"
ethannicholas6536ae52016-05-02 12:16:49 -070025#include "glsl/GrGLSLProgramDataManager.h"
26#include "glsl/GrGLSLUtil.h"
Brian Salomondad29232016-12-01 16:40:24 -050027#include "glsl/GrGLSLVertexShaderBuilder.h"
Brian Salomon89527432016-12-16 09:52:16 -050028#include "ops/GrMeshDrawOp.h"
29#include "ops/GrRectOpFactory.h"
ethannicholas6536ae52016-05-02 12:16:49 -070030
31static const float kTolerance = 0.5f;
32
33////////////////////////////////////////////////////////////////////////////////
34// Helpers for drawPath
35
bsalomon8acedde2016-06-24 10:42:16 -070036static inline bool single_pass_shape(const GrShape& shape) {
37 if (!shape.inverseFilled()) {
38 return shape.knownToBeConvex();
ethannicholas6536ae52016-05-02 12:16:49 -070039 }
40 return false;
41}
42
bsalomon8acedde2016-06-24 10:42:16 -070043GrPathRenderer::StencilSupport GrMSAAPathRenderer::onGetStencilSupport(const GrShape& shape) const {
44 if (single_pass_shape(shape)) {
ethannicholas6536ae52016-05-02 12:16:49 -070045 return GrPathRenderer::kNoRestriction_StencilSupport;
46 } else {
47 return GrPathRenderer::kStencilOnly_StencilSupport;
48 }
49}
50
51struct MSAALineVertices {
52 struct Vertex {
53 SkPoint fPosition;
54 SkColor fColor;
55 };
56 Vertex* vertices;
57 Vertex* nextVertex;
58#ifdef SK_DEBUG
59 Vertex* verticesEnd;
60#endif
61 uint16_t* indices;
62 uint16_t* nextIndex;
63};
64
65struct MSAAQuadVertices {
66 struct Vertex {
67 SkPoint fPosition;
68 SkPoint fUV;
69 SkColor fColor;
70 };
71 Vertex* vertices;
72 Vertex* nextVertex;
73#ifdef SK_DEBUG
74 Vertex* verticesEnd;
75#endif
76 uint16_t* indices;
77 uint16_t* nextIndex;
78};
79
80static inline void append_contour_edge_indices(uint16_t fanCenterIdx,
81 uint16_t edgeV0Idx,
82 MSAALineVertices& lines) {
83 *(lines.nextIndex++) = fanCenterIdx;
84 *(lines.nextIndex++) = edgeV0Idx;
85 *(lines.nextIndex++) = edgeV0Idx + 1;
86}
87
bungeman06ca8ec2016-06-09 08:01:03 -070088static inline void add_quad(MSAALineVertices& lines, MSAAQuadVertices& quads, const SkPoint pts[],
ethannicholas6536ae52016-05-02 12:16:49 -070089 SkColor color, bool indexed, uint16_t subpathLineIdxStart) {
90 SkASSERT(lines.nextVertex < lines.verticesEnd);
91 *lines.nextVertex = { pts[2], color };
92 if (indexed) {
93 int prevIdx = (uint16_t) (lines.nextVertex - lines.vertices - 1);
94 if (prevIdx > subpathLineIdxStart) {
95 append_contour_edge_indices(subpathLineIdxStart, prevIdx, lines);
96 }
97 }
98 lines.nextVertex++;
99
100 SkASSERT(quads.nextVertex + 2 < quads.verticesEnd);
101 // the texture coordinates are drawn from the Loop-Blinn rendering algorithm
102 *(quads.nextVertex++) = { pts[0], SkPoint::Make(0.0, 0.0), color };
103 *(quads.nextVertex++) = { pts[1], SkPoint::Make(0.5, 0.0), color };
104 *(quads.nextVertex++) = { pts[2], SkPoint::Make(1.0, 1.0), color };
105 if (indexed) {
106 uint16_t offset = (uint16_t) (quads.nextVertex - quads.vertices) - 3;
107 *(quads.nextIndex++) = offset++;
108 *(quads.nextIndex++) = offset++;
109 *(quads.nextIndex++) = offset++;
110 }
111}
112
113class MSAAQuadProcessor : public GrGeometryProcessor {
114public:
115 static GrGeometryProcessor* Create(const SkMatrix& viewMatrix) {
116 return new MSAAQuadProcessor(viewMatrix);
117 }
118
Brian Salomond3b65972017-03-22 12:05:03 -0400119 ~MSAAQuadProcessor() override {}
ethannicholas6536ae52016-05-02 12:16:49 -0700120
121 const char* name() const override { return "MSAAQuadProcessor"; }
122
123 const Attribute* inPosition() const { return fInPosition; }
124 const Attribute* inUV() const { return fInUV; }
125 const Attribute* inColor() const { return fInColor; }
126 const SkMatrix& viewMatrix() const { return fViewMatrix; }
ethannicholas6536ae52016-05-02 12:16:49 -0700127
128 class GLSLProcessor : public GrGLSLGeometryProcessor {
129 public:
130 GLSLProcessor(const GrGeometryProcessor& qpr) {}
131
132 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
133 const MSAAQuadProcessor& qp = args.fGP.cast<MSAAQuadProcessor>();
134 GrGLSLVertexBuilder* vsBuilder = args.fVertBuilder;
135 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
136 GrGLSLUniformHandler* uniformHandler = args.fUniformHandler;
137
138 // emit attributes
139 varyingHandler->emitAttributes(qp);
140 varyingHandler->addPassThroughAttribute(qp.inColor(), args.fOutputColor);
141
142 GrGLSLVertToFrag uv(kVec2f_GrSLType);
143 varyingHandler->addVarying("uv", &uv, kHigh_GrSLPrecision);
144 vsBuilder->codeAppendf("%s = %s;", uv.vsOut(), qp.inUV()->fName);
145
146 // Setup position
bungeman06ca8ec2016-06-09 08:01:03 -0700147 this->setupPosition(vsBuilder, uniformHandler, gpArgs, qp.inPosition()->fName,
ethannicholas6536ae52016-05-02 12:16:49 -0700148 qp.viewMatrix(), &fViewMatrixUniform);
149
150 // emit transforms
bungeman06ca8ec2016-06-09 08:01:03 -0700151 this->emitTransforms(vsBuilder, varyingHandler, uniformHandler, gpArgs->fPositionVar,
bsalomona624bf32016-09-20 09:12:47 -0700152 qp.inPosition()->fName, SkMatrix::I(),
153 args.fFPCoordTransformHandler);
ethannicholas6536ae52016-05-02 12:16:49 -0700154
155 GrGLSLPPFragmentBuilder* fsBuilder = args.fFragBuilder;
bungeman06ca8ec2016-06-09 08:01:03 -0700156 fsBuilder->codeAppendf("if (%s.x * %s.x >= %s.y) discard;", uv.fsIn(), uv.fsIn(),
ethannicholas6536ae52016-05-02 12:16:49 -0700157 uv.fsIn());
158 fsBuilder->codeAppendf("%s = vec4(1.0);", args.fOutputCoverage);
159 }
160
161 static inline void GenKey(const GrGeometryProcessor& gp,
Brian Salomon94efbf52016-11-29 13:43:05 -0500162 const GrShaderCaps&,
ethannicholas6536ae52016-05-02 12:16:49 -0700163 GrProcessorKeyBuilder* b) {
164 const MSAAQuadProcessor& qp = gp.cast<MSAAQuadProcessor>();
165 uint32_t key = 0;
166 key |= qp.viewMatrix().hasPerspective() ? 0x1 : 0x0;
167 key |= qp.viewMatrix().isIdentity() ? 0x2: 0x0;
168 b->add32(key);
169 }
170
bsalomona624bf32016-09-20 09:12:47 -0700171 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor& gp,
172 FPCoordTransformIter&& transformIter) override {
ethannicholas6536ae52016-05-02 12:16:49 -0700173 const MSAAQuadProcessor& qp = gp.cast<MSAAQuadProcessor>();
174 if (!qp.viewMatrix().isIdentity()) {
175 float viewMatrix[3 * 3];
176 GrGLSLGetMatrix<3>(viewMatrix, qp.viewMatrix());
177 pdman.setMatrix3f(fViewMatrixUniform, viewMatrix);
178 }
bsalomona624bf32016-09-20 09:12:47 -0700179 this->setTransformDataHelper(SkMatrix::I(), pdman, &transformIter);
ethannicholas6536ae52016-05-02 12:16:49 -0700180 }
181
ethannicholas6536ae52016-05-02 12:16:49 -0700182 private:
183 typedef GrGLSLGeometryProcessor INHERITED;
184
185 UniformHandle fViewMatrixUniform;
186 };
187
Brian Salomon94efbf52016-11-29 13:43:05 -0500188 virtual void getGLSLProcessorKey(const GrShaderCaps& caps,
ethannicholas6536ae52016-05-02 12:16:49 -0700189 GrProcessorKeyBuilder* b) const override {
190 GLSLProcessor::GenKey(*this, caps, b);
191 }
192
Brian Salomon94efbf52016-11-29 13:43:05 -0500193 virtual GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const override {
ethannicholas6536ae52016-05-02 12:16:49 -0700194 return new GLSLProcessor(*this);
195 }
196
197private:
198 MSAAQuadProcessor(const SkMatrix& viewMatrix)
199 : fViewMatrix(viewMatrix) {
200 this->initClassID<MSAAQuadProcessor>();
bsalomon6cb807b2016-08-17 11:33:39 -0700201 fInPosition = &this->addVertexAttrib("inPosition", kVec2f_GrVertexAttribType,
202 kHigh_GrSLPrecision);
203 fInUV = &this->addVertexAttrib("inUV", kVec2f_GrVertexAttribType, kHigh_GrSLPrecision);
204 fInColor = &this->addVertexAttrib("inColor", kVec4ub_GrVertexAttribType);
ethannicholas6536ae52016-05-02 12:16:49 -0700205 this->setSampleShading(1.0f);
206 }
207
208 const Attribute* fInPosition;
209 const Attribute* fInUV;
210 const Attribute* fInColor;
211 SkMatrix fViewMatrix;
bungeman06ca8ec2016-06-09 08:01:03 -0700212
ethannicholas6536ae52016-05-02 12:16:49 -0700213 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
214
215 typedef GrGeometryProcessor INHERITED;
216};
217
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400218class MSAAPathOp final : public GrLegacyMeshDrawOp {
ethannicholas6536ae52016-05-02 12:16:49 -0700219public:
Brian Salomon25a88092016-12-01 09:36:50 -0500220 DEFINE_OP_CLASS_ID
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400221 static std::unique_ptr<GrLegacyMeshDrawOp> Make(GrColor color, const SkPath& path,
222 const SkMatrix& viewMatrix,
223 const SkRect& devBounds) {
bsalomon50c56a32016-06-30 12:05:32 -0700224 int contourCount;
Brian Salomon780dad12016-12-15 18:08:40 -0500225 int maxLineVertices;
226 int maxQuadVertices;
Brian Salomon32ebaba2017-03-30 10:22:28 -0400227 ComputeWorstCasePointCount(path, viewMatrix, &contourCount, &maxLineVertices,
228 &maxQuadVertices);
Brian Salomon780dad12016-12-15 18:08:40 -0500229 bool isIndexed = contourCount > 1;
230 if (isIndexed &&
231 (maxLineVertices > kMaxIndexedVertexCnt || maxQuadVertices > kMaxIndexedVertexCnt)) {
232 return nullptr;
233 }
234
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400235 return std::unique_ptr<GrLegacyMeshDrawOp>(new MSAAPathOp(
Brian Salomonf8334782017-01-03 09:42:58 -0500236 color, path, viewMatrix, devBounds, maxLineVertices, maxQuadVertices, isIndexed));
ethannicholas6536ae52016-05-02 12:16:49 -0700237 }
238
Brian Salomon780dad12016-12-15 18:08:40 -0500239 const char* name() const override { return "MSAAPathOp"; }
ethannicholas6536ae52016-05-02 12:16:49 -0700240
Brian Salomon7c3e7182016-12-01 09:35:30 -0500241 SkString dumpInfo() const override {
242 SkString string;
243 string.appendf("Indexed: %d\n", fIsIndexed);
244 for (const auto& path : fPaths) {
245 string.appendf("Color: 0x%08x\n", path.fColor);
246 }
247 string.append(DumpPipelineInfo(*this->pipeline()));
248 string.append(INHERITED::dumpInfo());
249 return string;
250 }
251
Brian Salomon780dad12016-12-15 18:08:40 -0500252private:
253 MSAAPathOp(GrColor color, const SkPath& path, const SkMatrix& viewMatrix,
254 const SkRect& devBounds, int maxLineVertices, int maxQuadVertices, bool isIndexed)
255 : INHERITED(ClassID())
256 , fViewMatrix(viewMatrix)
257 , fMaxLineVertices(maxLineVertices)
258 , fMaxQuadVertices(maxQuadVertices)
259 , fIsIndexed(isIndexed) {
260 fPaths.emplace_back(PathInfo{color, path});
261 this->setBounds(devBounds, HasAABloat::kNo, IsZeroArea::kNo);
ethannicholas6536ae52016-05-02 12:16:49 -0700262 }
263
Brian Salomona811b122017-03-30 08:21:32 -0400264 void getProcessorAnalysisInputs(GrProcessorAnalysisColor* color,
265 GrProcessorAnalysisCoverage* coverage) const override {
Brian Salomonc0b642c2017-03-27 13:09:36 -0400266 color->setToConstant(fPaths[0].fColor);
Brian Salomona811b122017-03-30 08:21:32 -0400267 *coverage = GrProcessorAnalysisCoverage::kNone;
Brian Salomon92aee3d2016-12-21 09:20:25 -0500268 }
269
Brian Salomone7d30482017-03-29 12:09:15 -0400270 void applyPipelineOptimizations(const PipelineOptimizations& optimizations) override {
Brian Salomon92aee3d2016-12-21 09:20:25 -0500271 optimizations.getOverrideColorIfSet(&fPaths[0].fColor);
ethannicholas6536ae52016-05-02 12:16:49 -0700272 }
273
Brian Salomon32ebaba2017-03-30 10:22:28 -0400274 static void ComputeWorstCasePointCount(const SkPath& path, const SkMatrix& m, int* subpaths,
Brian Salomon780dad12016-12-15 18:08:40 -0500275 int* outLinePointCount, int* outQuadPointCount) {
Brian Salomon32ebaba2017-03-30 10:22:28 -0400276 SkScalar tolerance = GrPathUtils::scaleToleranceToSrc(kTolerance, m, path.getBounds());
ethannicholas6536ae52016-05-02 12:16:49 -0700277 int linePointCount = 0;
278 int quadPointCount = 0;
279 *subpaths = 1;
280
281 bool first = true;
282
bsalomon8eb43e52016-09-21 07:47:34 -0700283 SkPath::Iter iter(path, true);
ethannicholas6536ae52016-05-02 12:16:49 -0700284 SkPath::Verb verb;
285
286 SkPoint pts[4];
287 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
288 switch (verb) {
289 case SkPath::kLine_Verb:
290 linePointCount += 1;
291 break;
292 case SkPath::kConic_Verb: {
293 SkScalar weight = iter.conicWeight();
294 SkAutoConicToQuads converter;
Brian Salomon32ebaba2017-03-30 10:22:28 -0400295 converter.computeQuads(pts, weight, tolerance);
ethannicholas6536ae52016-05-02 12:16:49 -0700296 int quadPts = converter.countQuads();
297 linePointCount += quadPts;
298 quadPointCount += 3 * quadPts;
299 }
300 case SkPath::kQuad_Verb:
301 linePointCount += 1;
302 quadPointCount += 3;
303 break;
304 case SkPath::kCubic_Verb: {
305 SkSTArray<15, SkPoint, true> quadPts;
Brian Salomon32ebaba2017-03-30 10:22:28 -0400306 GrPathUtils::convertCubicToQuads(pts, tolerance, &quadPts);
ethannicholas6536ae52016-05-02 12:16:49 -0700307 int count = quadPts.count();
308 linePointCount += count / 3;
309 quadPointCount += count;
310 break;
311 }
312 case SkPath::kMove_Verb:
313 linePointCount += 1;
314 if (!first) {
315 ++(*subpaths);
316 }
317 break;
318 default:
319 break;
320 }
321 first = false;
322 }
323 *outLinePointCount = linePointCount;
324 *outQuadPointCount = quadPointCount;
325 }
326
327 void onPrepareDraws(Target* target) const override {
ethannicholas6536ae52016-05-02 12:16:49 -0700328 if (fMaxLineVertices == 0) {
329 SkASSERT(fMaxQuadVertices == 0);
330 return;
331 }
332
bungeman06ca8ec2016-06-09 08:01:03 -0700333 GrPrimitiveType primitiveType = fIsIndexed ? kTriangles_GrPrimitiveType
ethannicholas6536ae52016-05-02 12:16:49 -0700334 : kTriangleFan_GrPrimitiveType;
335
336 // allocate vertex / index buffers
337 const GrBuffer* lineVertexBuffer;
338 int firstLineVertex;
339 MSAALineVertices lines;
340 size_t lineVertexStride = sizeof(MSAALineVertices::Vertex);
bungeman06ca8ec2016-06-09 08:01:03 -0700341 lines.vertices = (MSAALineVertices::Vertex*) target->makeVertexSpace(lineVertexStride,
ethannicholas6536ae52016-05-02 12:16:49 -0700342 fMaxLineVertices,
bungeman06ca8ec2016-06-09 08:01:03 -0700343 &lineVertexBuffer,
ethannicholas6536ae52016-05-02 12:16:49 -0700344 &firstLineVertex);
345 if (!lines.vertices) {
346 SkDebugf("Could not allocate vertices\n");
347 return;
348 }
349 lines.nextVertex = lines.vertices;
350 SkDEBUGCODE(lines.verticesEnd = lines.vertices + fMaxLineVertices;)
351
352 MSAAQuadVertices quads;
353 size_t quadVertexStride = sizeof(MSAAQuadVertices::Vertex);
Hal Canary95e3c052017-01-11 12:44:43 -0500354 SkAutoMalloc quadVertexPtr(fMaxQuadVertices * quadVertexStride);
ethannicholas6536ae52016-05-02 12:16:49 -0700355 quads.vertices = (MSAAQuadVertices::Vertex*) quadVertexPtr.get();
356 quads.nextVertex = quads.vertices;
357 SkDEBUGCODE(quads.verticesEnd = quads.vertices + fMaxQuadVertices;)
358
359 const GrBuffer* lineIndexBuffer = nullptr;
360 int firstLineIndex;
361 if (fIsIndexed) {
Brian Salomon780dad12016-12-15 18:08:40 -0500362 lines.indices =
363 target->makeIndexSpace(3 * fMaxLineVertices, &lineIndexBuffer, &firstLineIndex);
ethannicholas6536ae52016-05-02 12:16:49 -0700364 if (!lines.indices) {
365 SkDebugf("Could not allocate indices\n");
366 return;
367 }
368 lines.nextIndex = lines.indices;
369 } else {
370 lines.indices = nullptr;
371 lines.nextIndex = nullptr;
372 }
373
374 SkAutoFree quadIndexPtr;
375 if (fIsIndexed) {
Brian Salomon780dad12016-12-15 18:08:40 -0500376 quads.indices = (uint16_t*)sk_malloc_throw(3 * fMaxQuadVertices * sizeof(uint16_t));
Hal Canary95e3c052017-01-11 12:44:43 -0500377 quadIndexPtr.reset(quads.indices);
ethannicholas6536ae52016-05-02 12:16:49 -0700378 quads.nextIndex = quads.indices;
379 } else {
380 quads.indices = nullptr;
381 quads.nextIndex = nullptr;
382 }
383
384 // fill buffers
bsalomon50c56a32016-06-30 12:05:32 -0700385 for (int i = 0; i < fPaths.count(); i++) {
386 const PathInfo& pathInfo = fPaths[i];
ethannicholas6536ae52016-05-02 12:16:49 -0700387
388 if (!this->createGeom(lines,
389 quads,
bsalomon50c56a32016-06-30 12:05:32 -0700390 pathInfo.fPath,
ethannicholas6536ae52016-05-02 12:16:49 -0700391 fViewMatrix,
bsalomon50c56a32016-06-30 12:05:32 -0700392 pathInfo.fColor,
ethannicholas6536ae52016-05-02 12:16:49 -0700393 fIsIndexed)) {
394 return;
395 }
396 }
397 int lineVertexOffset = (int) (lines.nextVertex - lines.vertices);
398 int lineIndexOffset = (int) (lines.nextIndex - lines.indices);
Brian Salomon780dad12016-12-15 18:08:40 -0500399 SkASSERT(lineVertexOffset <= fMaxLineVertices && lineIndexOffset <= 3 * fMaxLineVertices);
ethannicholas6536ae52016-05-02 12:16:49 -0700400 int quadVertexOffset = (int) (quads.nextVertex - quads.vertices);
401 int quadIndexOffset = (int) (quads.nextIndex - quads.indices);
Brian Salomon780dad12016-12-15 18:08:40 -0500402 SkASSERT(quadVertexOffset <= fMaxQuadVertices && quadIndexOffset <= 3 * fMaxQuadVertices);
ethannicholas6536ae52016-05-02 12:16:49 -0700403
404 if (lineVertexOffset) {
bungeman06ca8ec2016-06-09 08:01:03 -0700405 sk_sp<GrGeometryProcessor> lineGP;
ethannicholas6536ae52016-05-02 12:16:49 -0700406 {
407 using namespace GrDefaultGeoProcFactory;
Brian Salomon3de0aee2017-01-29 09:34:17 -0500408 lineGP = GrDefaultGeoProcFactory::Make(Color(Color::kPremulGrColorAttribute_Type),
Brian Salomon8c852be2017-01-04 10:44:42 -0500409 Coverage::kSolid_Type,
bungeman06ca8ec2016-06-09 08:01:03 -0700410 LocalCoords(LocalCoords::kUnused_Type),
411 fViewMatrix);
ethannicholas6536ae52016-05-02 12:16:49 -0700412 }
413 SkASSERT(lineVertexStride == lineGP->getVertexStride());
414
415 GrMesh lineMeshes;
Chris Daltonff926502017-05-03 14:36:54 -0400416 lineMeshes.fPrimitiveType = primitiveType;
ethannicholas6536ae52016-05-02 12:16:49 -0700417 if (fIsIndexed) {
Chris Daltonff926502017-05-03 14:36:54 -0400418 lineMeshes.fIndexBuffer.reset(lineIndexBuffer);
419 lineMeshes.fIndexCount = lineIndexOffset;
420 lineMeshes.fBaseIndex = firstLineIndex;
ethannicholas6536ae52016-05-02 12:16:49 -0700421 }
Chris Daltonff926502017-05-03 14:36:54 -0400422 lineMeshes.fVertexBuffer.reset(lineVertexBuffer);
423 lineMeshes.fVertexCount = lineVertexOffset;
424 lineMeshes.fBaseVertex = firstLineVertex;
425
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400426 target->draw(lineGP.get(), this->pipeline(), lineMeshes);
ethannicholas6536ae52016-05-02 12:16:49 -0700427 }
428
429 if (quadVertexOffset) {
Hal Canary144caf52016-11-07 17:57:18 -0500430 sk_sp<const GrGeometryProcessor> quadGP(MSAAQuadProcessor::Create(fViewMatrix));
ethannicholas6536ae52016-05-02 12:16:49 -0700431 SkASSERT(quadVertexStride == quadGP->getVertexStride());
432
433 const GrBuffer* quadVertexBuffer;
434 int firstQuadVertex;
bungeman06ca8ec2016-06-09 08:01:03 -0700435 MSAAQuadVertices::Vertex* quadVertices = (MSAAQuadVertices::Vertex*)
ethannicholas6536ae52016-05-02 12:16:49 -0700436 target->makeVertexSpace(quadVertexStride, quadVertexOffset, &quadVertexBuffer,
437 &firstQuadVertex);
438 memcpy(quadVertices, quads.vertices, quadVertexStride * quadVertexOffset);
439 GrMesh quadMeshes;
Chris Daltonff926502017-05-03 14:36:54 -0400440 quadMeshes.fPrimitiveType = kTriangles_GrPrimitiveType;
ethannicholas6536ae52016-05-02 12:16:49 -0700441 if (fIsIndexed) {
442 const GrBuffer* quadIndexBuffer;
bungeman06ca8ec2016-06-09 08:01:03 -0700443 uint16_t* quadIndices = (uint16_t*) target->makeIndexSpace(quadIndexOffset,
444 &quadIndexBuffer,
Chris Daltonff926502017-05-03 14:36:54 -0400445 &quadMeshes.fBaseIndex);
446 quadMeshes.fIndexBuffer.reset(quadIndexBuffer);
447 quadMeshes.fIndexCount = quadIndexOffset;
ethannicholas6536ae52016-05-02 12:16:49 -0700448 memcpy(quadIndices, quads.indices, sizeof(uint16_t) * quadIndexOffset);
ethannicholas6536ae52016-05-02 12:16:49 -0700449 }
Chris Daltonff926502017-05-03 14:36:54 -0400450 quadMeshes.fVertexBuffer.reset(quadVertexBuffer);
451 quadMeshes.fVertexCount = quadVertexOffset;
452 quadMeshes.fBaseVertex = firstQuadVertex;
453
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400454 target->draw(quadGP.get(), this->pipeline(), quadMeshes);
ethannicholas6536ae52016-05-02 12:16:49 -0700455 }
456 }
457
Brian Salomon25a88092016-12-01 09:36:50 -0500458 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon780dad12016-12-15 18:08:40 -0500459 MSAAPathOp* that = t->cast<MSAAPathOp>();
ethannicholas6536ae52016-05-02 12:16:49 -0700460 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
Brian Salomon9e50f7b2017-03-06 12:02:34 -0500461 that->bounds(), caps)) {
ethannicholas6536ae52016-05-02 12:16:49 -0700462 return false;
463 }
464
Jim Van Verth9d01fbc2017-02-22 14:50:52 -0500465 if (this->bounds().intersects(that->bounds())) {
466 return false;
467 }
468
ethannicholas6536ae52016-05-02 12:16:49 -0700469 if (!fViewMatrix.cheapEqualTo(that->fViewMatrix)) {
470 return false;
471 }
472
Brian Salomon780dad12016-12-15 18:08:40 -0500473 // If we grow to include 2+ paths we will be indexed.
474 if (((fMaxLineVertices + that->fMaxLineVertices) > kMaxIndexedVertexCnt) ||
475 ((fMaxQuadVertices + that->fMaxQuadVertices) > kMaxIndexedVertexCnt)) {
ethannicholas6536ae52016-05-02 12:16:49 -0700476 return false;
477 }
478
bsalomon50c56a32016-06-30 12:05:32 -0700479 fPaths.push_back_n(that->fPaths.count(), that->fPaths.begin());
bsalomon88cf17d2016-07-08 06:40:56 -0700480 this->joinBounds(*that);
ethannicholas6536ae52016-05-02 12:16:49 -0700481 fIsIndexed = true;
482 fMaxLineVertices += that->fMaxLineVertices;
483 fMaxQuadVertices += that->fMaxQuadVertices;
ethannicholas6536ae52016-05-02 12:16:49 -0700484 return true;
485 }
486
487 bool createGeom(MSAALineVertices& lines,
488 MSAAQuadVertices& quads,
489 const SkPath& path,
ethannicholas6536ae52016-05-02 12:16:49 -0700490 const SkMatrix& m,
491 SkColor color,
492 bool isIndexed) const {
493 {
Brian Salomon32ebaba2017-03-30 10:22:28 -0400494 const SkScalar tolerance = GrPathUtils::scaleToleranceToSrc(kTolerance, m,
495 path.getBounds());
ethannicholas6536ae52016-05-02 12:16:49 -0700496 uint16_t subpathIdxStart = (uint16_t) (lines.nextVertex - lines.vertices);
497
498 SkPoint pts[4];
499
500 bool first = true;
bsalomon8eb43e52016-09-21 07:47:34 -0700501 SkPath::Iter iter(path, true);
ethannicholas6536ae52016-05-02 12:16:49 -0700502
503 bool done = false;
504 while (!done) {
505 SkPath::Verb verb = iter.next(pts);
506 switch (verb) {
507 case SkPath::kMove_Verb:
508 if (!first) {
509 uint16_t currIdx = (uint16_t) (lines.nextVertex - lines.vertices);
510 subpathIdxStart = currIdx;
511 }
512 SkASSERT(lines.nextVertex < lines.verticesEnd);
513 *(lines.nextVertex++) = { pts[0], color };
514 break;
515 case SkPath::kLine_Verb:
516 if (isIndexed) {
517 uint16_t prevIdx = (uint16_t) (lines.nextVertex - lines.vertices - 1);
518 if (prevIdx > subpathIdxStart) {
519 append_contour_edge_indices(subpathIdxStart, prevIdx, lines);
520 }
521 }
522 SkASSERT(lines.nextVertex < lines.verticesEnd);
523 *(lines.nextVertex++) = { pts[1], color };
524 break;
525 case SkPath::kConic_Verb: {
526 SkScalar weight = iter.conicWeight();
527 SkAutoConicToQuads converter;
Brian Salomon32ebaba2017-03-30 10:22:28 -0400528 const SkPoint* quadPts = converter.computeQuads(pts, weight, tolerance);
ethannicholas6536ae52016-05-02 12:16:49 -0700529 for (int i = 0; i < converter.countQuads(); ++i) {
bungeman06ca8ec2016-06-09 08:01:03 -0700530 add_quad(lines, quads, quadPts + i * 2, color, isIndexed,
ethannicholas6536ae52016-05-02 12:16:49 -0700531 subpathIdxStart);
532 }
533 break;
534 }
535 case SkPath::kQuad_Verb: {
536 add_quad(lines, quads, pts, color, isIndexed, subpathIdxStart);
bungeman06ca8ec2016-06-09 08:01:03 -0700537 break;
ethannicholas6536ae52016-05-02 12:16:49 -0700538 }
539 case SkPath::kCubic_Verb: {
540 SkSTArray<15, SkPoint, true> quadPts;
Brian Salomon32ebaba2017-03-30 10:22:28 -0400541 GrPathUtils::convertCubicToQuads(pts, tolerance, &quadPts);
ethannicholas6536ae52016-05-02 12:16:49 -0700542 int count = quadPts.count();
543 for (int i = 0; i < count; i += 3) {
544 add_quad(lines, quads, &quadPts[i], color, isIndexed, subpathIdxStart);
545 }
546 break;
547 }
548 case SkPath::kClose_Verb:
549 break;
550 case SkPath::kDone_Verb:
551 done = true;
552 }
553 first = false;
554 }
555 }
556 return true;
557 }
558
Brian Salomon780dad12016-12-15 18:08:40 -0500559 // Lines and quads may render with an index buffer. However, we don't have any support for
560 // overflowing the max index.
561 static constexpr int kMaxIndexedVertexCnt = SK_MaxU16 / 3;
bsalomon50c56a32016-06-30 12:05:32 -0700562 struct PathInfo {
563 GrColor fColor;
564 SkPath fPath;
565 };
566
567 SkSTArray<1, PathInfo, true> fPaths;
ethannicholas6536ae52016-05-02 12:16:49 -0700568
569 SkMatrix fViewMatrix;
570 int fMaxLineVertices;
571 int fMaxQuadVertices;
ethannicholas6536ae52016-05-02 12:16:49 -0700572 bool fIsIndexed;
573
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400574 typedef GrLegacyMeshDrawOp INHERITED;
ethannicholas6536ae52016-05-02 12:16:49 -0700575};
576
Brian Osman11052242016-10-27 14:47:55 -0400577bool GrMSAAPathRenderer::internalDrawPath(GrRenderTargetContext* renderTargetContext,
Brian Salomon82f44312017-01-11 13:42:54 -0500578 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500579 GrAAType aaType,
robertphillipsd2b6d642016-07-21 08:55:08 -0700580 const GrUserStencilSettings& userStencilSettings,
cdalton862cff32016-05-12 15:09:48 -0700581 const GrClip& clip,
ethannicholas6536ae52016-05-02 12:16:49 -0700582 const SkMatrix& viewMatrix,
bsalomon8acedde2016-06-24 10:42:16 -0700583 const GrShape& shape,
ethannicholas6536ae52016-05-02 12:16:49 -0700584 bool stencilOnly) {
bsalomon8acedde2016-06-24 10:42:16 -0700585 SkASSERT(shape.style().isSimpleFill());
586 SkPath path;
587 shape.asPath(&path);
588
Brian Salomon82f44312017-01-11 13:42:54 -0500589 const GrUserStencilSettings* passes[2] = {nullptr, nullptr};
cdalton93a379b2016-05-11 13:58:08 -0700590 bool reverse = false;
ethannicholas6536ae52016-05-02 12:16:49 -0700591
bsalomon8acedde2016-06-24 10:42:16 -0700592 if (single_pass_shape(shape)) {
ethannicholas6536ae52016-05-02 12:16:49 -0700593 if (stencilOnly) {
594 passes[0] = &gDirectToStencil;
595 } else {
robertphillipsd2b6d642016-07-21 08:55:08 -0700596 passes[0] = &userStencilSettings;
ethannicholas6536ae52016-05-02 12:16:49 -0700597 }
ethannicholas6536ae52016-05-02 12:16:49 -0700598 } else {
599 switch (path.getFillType()) {
600 case SkPath::kInverseEvenOdd_FillType:
601 reverse = true;
602 // fallthrough
603 case SkPath::kEvenOdd_FillType:
604 passes[0] = &gEOStencilPass;
Brian Salomon82f44312017-01-11 13:42:54 -0500605 if (!stencilOnly) {
606 passes[1] = reverse ? &gInvEOColorPass : &gEOColorPass;
ethannicholas6536ae52016-05-02 12:16:49 -0700607 }
ethannicholas6536ae52016-05-02 12:16:49 -0700608 break;
609
610 case SkPath::kInverseWinding_FillType:
611 reverse = true;
612 // fallthrough
613 case SkPath::kWinding_FillType:
614 passes[0] = &gWindStencilSeparateWithWrap;
Brian Salomon82f44312017-01-11 13:42:54 -0500615 if (!stencilOnly) {
616 passes[1] = reverse ? &gInvWindColorPass : &gWindColorPass;
ethannicholas6536ae52016-05-02 12:16:49 -0700617 }
618 break;
619 default:
620 SkDEBUGFAIL("Unknown path fFill!");
621 return false;
622 }
623 }
624
625 SkRect devBounds;
Brian Osman11052242016-10-27 14:47:55 -0400626 GetPathDevBounds(path, renderTargetContext->width(), renderTargetContext->height(), viewMatrix,
627 &devBounds);
ethannicholas6536ae52016-05-02 12:16:49 -0700628
Brian Salomond4652ca2017-01-13 12:11:36 -0500629 SkASSERT(passes[0]);
630 { // First pass
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400631 std::unique_ptr<GrLegacyMeshDrawOp> op =
Brian Salomond4652ca2017-01-13 12:11:36 -0500632 MSAAPathOp::Make(paint.getColor(), path, viewMatrix, devBounds);
633 if (!op) {
634 return false;
635 }
636 bool firstPassIsStencil = stencilOnly || passes[1];
637 // If we have a cover pass then we ignore the paint in the first pass and apply it in the
638 // second.
639 GrPaint::MoveOrNew firstPassPaint(paint, firstPassIsStencil);
640 if (firstPassIsStencil) {
641 firstPassPaint.paint().setXPFactory(GrDisableColorXPFactory::Get());
642 }
643 GrPipelineBuilder pipelineBuilder(std::move(firstPassPaint), aaType);
644 pipelineBuilder.setUserStencil(passes[0]);
Brian Salomone14bd802017-04-04 15:13:25 -0400645 renderTargetContext->addLegacyMeshDrawOp(std::move(pipelineBuilder), clip, std::move(op));
Brian Salomon82f44312017-01-11 13:42:54 -0500646 }
robertphillips8e375302016-07-11 10:43:58 -0700647
Brian Salomon82f44312017-01-11 13:42:54 -0500648 if (passes[1]) {
649 SkRect bounds;
650 SkMatrix localMatrix = SkMatrix::I();
651 if (reverse) {
652 // draw over the dev bounds (which will be the whole dst surface for inv fill).
653 bounds = devBounds;
654 SkMatrix vmi;
655 // mapRect through persp matrix may not be correct
656 if (!viewMatrix.hasPerspective() && viewMatrix.invert(&vmi)) {
657 vmi.mapRect(&bounds);
ethannicholas6536ae52016-05-02 12:16:49 -0700658 } else {
Brian Salomon82f44312017-01-11 13:42:54 -0500659 if (!viewMatrix.invert(&localMatrix)) {
660 return false;
661 }
ethannicholas6536ae52016-05-02 12:16:49 -0700662 }
robertphillips976f5f02016-06-03 10:59:20 -0700663 } else {
Brian Salomon82f44312017-01-11 13:42:54 -0500664 bounds = path.getBounds();
ethannicholas6536ae52016-05-02 12:16:49 -0700665 }
Brian Salomon82f44312017-01-11 13:42:54 -0500666 const SkMatrix& viewM =
667 (reverse && viewMatrix.hasPerspective()) ? SkMatrix::I() : viewMatrix;
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400668 std::unique_ptr<GrLegacyMeshDrawOp> op(GrRectOpFactory::MakeNonAAFill(
Brian Salomon649a3412017-03-09 13:50:43 -0500669 paint.getColor(), viewM, bounds, nullptr, &localMatrix));
Brian Salomon82f44312017-01-11 13:42:54 -0500670
671 GrPipelineBuilder pipelineBuilder(std::move(paint), aaType);
672 pipelineBuilder.setUserStencil(passes[1]);
673
Brian Salomone14bd802017-04-04 15:13:25 -0400674 renderTargetContext->addLegacyMeshDrawOp(std::move(pipelineBuilder), clip, std::move(op));
ethannicholas6536ae52016-05-02 12:16:49 -0700675 }
676 return true;
677}
678
679bool GrMSAAPathRenderer::onCanDrawPath(const CanDrawPathArgs& args) const {
bsalomonee432412016-06-27 07:18:18 -0700680 // This path renderer only fills and relies on MSAA for antialiasing. Stroked shapes are
681 // handled by passing on the original shape and letting the caller compute the stroked shape
682 // which will have a fill style.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500683 return args.fShape->style().isSimpleFill() && (GrAAType::kCoverage != args.fAAType);
ethannicholas6536ae52016-05-02 12:16:49 -0700684}
685
686bool GrMSAAPathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400687 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
robertphillips976f5f02016-06-03 10:59:20 -0700688 "GrMSAAPathRenderer::onDrawPath");
bsalomon8acedde2016-06-24 10:42:16 -0700689 SkTLazy<GrShape> tmpShape;
690 const GrShape* shape = args.fShape;
691 if (shape->style().applies()) {
bsalomon6663acf2016-05-10 09:14:17 -0700692 SkScalar styleScale = GrStyle::MatrixToScaleFactor(*args.fViewMatrix);
bsalomon8acedde2016-06-24 10:42:16 -0700693 tmpShape.init(args.fShape->applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec, styleScale));
694 shape = tmpShape.get();
ethannicholas6536ae52016-05-02 12:16:49 -0700695 }
Brian Osman11052242016-10-27 14:47:55 -0400696 return this->internalDrawPath(args.fRenderTargetContext,
Brian Salomon82f44312017-01-11 13:42:54 -0500697 std::move(args.fPaint),
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500698 args.fAAType,
robertphillipsd2b6d642016-07-21 08:55:08 -0700699 *args.fUserStencilSettings,
cdalton862cff32016-05-12 15:09:48 -0700700 *args.fClip,
ethannicholas6536ae52016-05-02 12:16:49 -0700701 *args.fViewMatrix,
bsalomon8acedde2016-06-24 10:42:16 -0700702 *shape,
ethannicholas6536ae52016-05-02 12:16:49 -0700703 false);
704}
705
706void GrMSAAPathRenderer::onStencilPath(const StencilPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400707 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
robertphillips976f5f02016-06-03 10:59:20 -0700708 "GrMSAAPathRenderer::onStencilPath");
bsalomon8acedde2016-06-24 10:42:16 -0700709 SkASSERT(args.fShape->style().isSimpleFill());
710 SkASSERT(!args.fShape->mayBeInverseFilledAfterStyling());
robertphillips976f5f02016-06-03 10:59:20 -0700711
712 GrPaint paint;
Brian Salomona1633922017-01-09 11:46:10 -0500713 paint.setXPFactory(GrDisableColorXPFactory::Get());
robertphillips976f5f02016-06-03 10:59:20 -0700714
Brian Salomon82f44312017-01-11 13:42:54 -0500715 this->internalDrawPath(args.fRenderTargetContext, std::move(paint), args.fAAType,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500716 GrUserStencilSettings::kUnused, *args.fClip, *args.fViewMatrix,
717 *args.fShape, true);
ethannicholas6536ae52016-05-02 12:16:49 -0700718}
719
720///////////////////////////////////////////////////////////////////////////////////////////////////