blob: 85970825d56118e50b7d5f06a91cd077a3687a15 [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"
ethannicholas6536ae52016-05-02 12:16:49 -070011#include "GrBatchFlushState.h"
robertphillips976f5f02016-06-03 10:59:20 -070012#include "GrClip.h"
ethannicholas6536ae52016-05-02 12:16:49 -070013#include "GrDefaultGeoProcFactory.h"
csmartdalton02fa32c2016-08-19 13:29:27 -070014#include "GrFixedClip.h"
ethannicholas6536ae52016-05-02 12:16:49 -070015#include "GrPathStencilSettings.h"
16#include "GrPathUtils.h"
bsalomonbb243832016-07-22 07:10:19 -070017#include "GrPipelineBuilder.h"
ethannicholas6536ae52016-05-02 12:16:49 -070018#include "GrMesh.h"
19#include "SkGeometry.h"
20#include "SkTraceEvent.h"
21#include "glsl/GrGLSLGeometryProcessor.h"
22#include "glsl/GrGLSLFragmentShaderBuilder.h"
23#include "glsl/GrGLSLVertexShaderBuilder.h"
24#include "glsl/GrGLSLProgramDataManager.h"
25#include "glsl/GrGLSLUtil.h"
26#include "gl/GrGLVaryingHandler.h"
27#include "batches/GrRectBatchFactory.h"
28#include "batches/GrVertexBatch.h"
29
30static const float kTolerance = 0.5f;
31
32////////////////////////////////////////////////////////////////////////////////
33// Helpers for drawPath
34
bsalomon8acedde2016-06-24 10:42:16 -070035static inline bool single_pass_shape(const GrShape& shape) {
36 if (!shape.inverseFilled()) {
37 return shape.knownToBeConvex();
ethannicholas6536ae52016-05-02 12:16:49 -070038 }
39 return false;
40}
41
bsalomon8acedde2016-06-24 10:42:16 -070042GrPathRenderer::StencilSupport GrMSAAPathRenderer::onGetStencilSupport(const GrShape& shape) const {
43 if (single_pass_shape(shape)) {
ethannicholas6536ae52016-05-02 12:16:49 -070044 return GrPathRenderer::kNoRestriction_StencilSupport;
45 } else {
46 return GrPathRenderer::kStencilOnly_StencilSupport;
47 }
48}
49
50struct MSAALineVertices {
51 struct Vertex {
52 SkPoint fPosition;
53 SkColor fColor;
54 };
55 Vertex* vertices;
56 Vertex* nextVertex;
57#ifdef SK_DEBUG
58 Vertex* verticesEnd;
59#endif
60 uint16_t* indices;
61 uint16_t* nextIndex;
62};
63
64struct MSAAQuadVertices {
65 struct Vertex {
66 SkPoint fPosition;
67 SkPoint fUV;
68 SkColor fColor;
69 };
70 Vertex* vertices;
71 Vertex* nextVertex;
72#ifdef SK_DEBUG
73 Vertex* verticesEnd;
74#endif
75 uint16_t* indices;
76 uint16_t* nextIndex;
77};
78
79static inline void append_contour_edge_indices(uint16_t fanCenterIdx,
80 uint16_t edgeV0Idx,
81 MSAALineVertices& lines) {
82 *(lines.nextIndex++) = fanCenterIdx;
83 *(lines.nextIndex++) = edgeV0Idx;
84 *(lines.nextIndex++) = edgeV0Idx + 1;
85}
86
bungeman06ca8ec2016-06-09 08:01:03 -070087static inline void add_quad(MSAALineVertices& lines, MSAAQuadVertices& quads, const SkPoint pts[],
ethannicholas6536ae52016-05-02 12:16:49 -070088 SkColor color, bool indexed, uint16_t subpathLineIdxStart) {
89 SkASSERT(lines.nextVertex < lines.verticesEnd);
90 *lines.nextVertex = { pts[2], color };
91 if (indexed) {
92 int prevIdx = (uint16_t) (lines.nextVertex - lines.vertices - 1);
93 if (prevIdx > subpathLineIdxStart) {
94 append_contour_edge_indices(subpathLineIdxStart, prevIdx, lines);
95 }
96 }
97 lines.nextVertex++;
98
99 SkASSERT(quads.nextVertex + 2 < quads.verticesEnd);
100 // the texture coordinates are drawn from the Loop-Blinn rendering algorithm
101 *(quads.nextVertex++) = { pts[0], SkPoint::Make(0.0, 0.0), color };
102 *(quads.nextVertex++) = { pts[1], SkPoint::Make(0.5, 0.0), color };
103 *(quads.nextVertex++) = { pts[2], SkPoint::Make(1.0, 1.0), color };
104 if (indexed) {
105 uint16_t offset = (uint16_t) (quads.nextVertex - quads.vertices) - 3;
106 *(quads.nextIndex++) = offset++;
107 *(quads.nextIndex++) = offset++;
108 *(quads.nextIndex++) = offset++;
109 }
110}
111
112class MSAAQuadProcessor : public GrGeometryProcessor {
113public:
114 static GrGeometryProcessor* Create(const SkMatrix& viewMatrix) {
115 return new MSAAQuadProcessor(viewMatrix);
116 }
117
118 virtual ~MSAAQuadProcessor() {}
119
120 const char* name() const override { return "MSAAQuadProcessor"; }
121
122 const Attribute* inPosition() const { return fInPosition; }
123 const Attribute* inUV() const { return fInUV; }
124 const Attribute* inColor() const { return fInColor; }
125 const SkMatrix& viewMatrix() const { return fViewMatrix; }
ethannicholas6536ae52016-05-02 12:16:49 -0700126
127 class GLSLProcessor : public GrGLSLGeometryProcessor {
128 public:
129 GLSLProcessor(const GrGeometryProcessor& qpr) {}
130
131 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
132 const MSAAQuadProcessor& qp = args.fGP.cast<MSAAQuadProcessor>();
133 GrGLSLVertexBuilder* vsBuilder = args.fVertBuilder;
134 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
135 GrGLSLUniformHandler* uniformHandler = args.fUniformHandler;
136
137 // emit attributes
138 varyingHandler->emitAttributes(qp);
139 varyingHandler->addPassThroughAttribute(qp.inColor(), args.fOutputColor);
140
141 GrGLSLVertToFrag uv(kVec2f_GrSLType);
142 varyingHandler->addVarying("uv", &uv, kHigh_GrSLPrecision);
143 vsBuilder->codeAppendf("%s = %s;", uv.vsOut(), qp.inUV()->fName);
144
145 // Setup position
bungeman06ca8ec2016-06-09 08:01:03 -0700146 this->setupPosition(vsBuilder, uniformHandler, gpArgs, qp.inPosition()->fName,
ethannicholas6536ae52016-05-02 12:16:49 -0700147 qp.viewMatrix(), &fViewMatrixUniform);
148
149 // emit transforms
bungeman06ca8ec2016-06-09 08:01:03 -0700150 this->emitTransforms(vsBuilder, varyingHandler, uniformHandler, gpArgs->fPositionVar,
bsalomona624bf32016-09-20 09:12:47 -0700151 qp.inPosition()->fName, SkMatrix::I(),
152 args.fFPCoordTransformHandler);
ethannicholas6536ae52016-05-02 12:16:49 -0700153
154 GrGLSLPPFragmentBuilder* fsBuilder = args.fFragBuilder;
bungeman06ca8ec2016-06-09 08:01:03 -0700155 fsBuilder->codeAppendf("if (%s.x * %s.x >= %s.y) discard;", uv.fsIn(), uv.fsIn(),
ethannicholas6536ae52016-05-02 12:16:49 -0700156 uv.fsIn());
157 fsBuilder->codeAppendf("%s = vec4(1.0);", args.fOutputCoverage);
158 }
159
160 static inline void GenKey(const GrGeometryProcessor& gp,
161 const GrGLSLCaps&,
162 GrProcessorKeyBuilder* b) {
163 const MSAAQuadProcessor& qp = gp.cast<MSAAQuadProcessor>();
164 uint32_t key = 0;
165 key |= qp.viewMatrix().hasPerspective() ? 0x1 : 0x0;
166 key |= qp.viewMatrix().isIdentity() ? 0x2: 0x0;
167 b->add32(key);
168 }
169
bsalomona624bf32016-09-20 09:12:47 -0700170 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor& gp,
171 FPCoordTransformIter&& transformIter) override {
ethannicholas6536ae52016-05-02 12:16:49 -0700172 const MSAAQuadProcessor& qp = gp.cast<MSAAQuadProcessor>();
173 if (!qp.viewMatrix().isIdentity()) {
174 float viewMatrix[3 * 3];
175 GrGLSLGetMatrix<3>(viewMatrix, qp.viewMatrix());
176 pdman.setMatrix3f(fViewMatrixUniform, viewMatrix);
177 }
bsalomona624bf32016-09-20 09:12:47 -0700178 this->setTransformDataHelper(SkMatrix::I(), pdman, &transformIter);
ethannicholas6536ae52016-05-02 12:16:49 -0700179 }
180
ethannicholas6536ae52016-05-02 12:16:49 -0700181 private:
182 typedef GrGLSLGeometryProcessor INHERITED;
183
184 UniformHandle fViewMatrixUniform;
185 };
186
187 virtual void getGLSLProcessorKey(const GrGLSLCaps& caps,
188 GrProcessorKeyBuilder* b) const override {
189 GLSLProcessor::GenKey(*this, caps, b);
190 }
191
192 virtual GrGLSLPrimitiveProcessor* createGLSLInstance(const GrGLSLCaps&) const override {
193 return new GLSLProcessor(*this);
194 }
195
196private:
197 MSAAQuadProcessor(const SkMatrix& viewMatrix)
198 : fViewMatrix(viewMatrix) {
199 this->initClassID<MSAAQuadProcessor>();
bsalomon6cb807b2016-08-17 11:33:39 -0700200 fInPosition = &this->addVertexAttrib("inPosition", kVec2f_GrVertexAttribType,
201 kHigh_GrSLPrecision);
202 fInUV = &this->addVertexAttrib("inUV", kVec2f_GrVertexAttribType, kHigh_GrSLPrecision);
203 fInColor = &this->addVertexAttrib("inColor", kVec4ub_GrVertexAttribType);
ethannicholas6536ae52016-05-02 12:16:49 -0700204 this->setSampleShading(1.0f);
205 }
206
207 const Attribute* fInPosition;
208 const Attribute* fInUV;
209 const Attribute* fInColor;
210 SkMatrix fViewMatrix;
bungeman06ca8ec2016-06-09 08:01:03 -0700211
ethannicholas6536ae52016-05-02 12:16:49 -0700212 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
213
214 typedef GrGeometryProcessor INHERITED;
215};
216
217class MSAAPathBatch : public GrVertexBatch {
218public:
219 DEFINE_BATCH_CLASS_ID
220
bsalomon8e9e45a2016-07-08 09:14:07 -0700221 MSAAPathBatch(GrColor color, const SkPath& path, const SkMatrix& viewMatrix,
222 const SkRect& devBounds)
bsalomon50c56a32016-06-30 12:05:32 -0700223 : INHERITED(ClassID())
224 , fViewMatrix(viewMatrix) {
225 fPaths.emplace_back(PathInfo{color, path});
bsalomon8e9e45a2016-07-08 09:14:07 -0700226 this->setBounds(devBounds, HasAABloat::kNo, IsZeroArea::kNo);
bsalomon50c56a32016-06-30 12:05:32 -0700227 int contourCount;
228 this->computeWorstCasePointCount(path, &contourCount, &fMaxLineVertices, &fMaxQuadVertices);
229 fMaxLineIndices = fMaxLineVertices * 3;
230 fMaxQuadIndices = fMaxQuadVertices * 3;
231 fIsIndexed = contourCount > 1;
ethannicholas6536ae52016-05-02 12:16:49 -0700232 }
233
234 const char* name() const override { return "MSAAPathBatch"; }
235
bungeman06ca8ec2016-06-09 08:01:03 -0700236 void computePipelineOptimizations(GrInitInvariantOutput* color,
ethannicholas6536ae52016-05-02 12:16:49 -0700237 GrInitInvariantOutput* coverage,
238 GrBatchToXPOverrides* overrides) const override {
bsalomon50c56a32016-06-30 12:05:32 -0700239 // When this is called on a batch, there is only one path
240 color->setKnownFourComponents(fPaths[0].fColor);
ethannicholas6536ae52016-05-02 12:16:49 -0700241 coverage->setKnownSingleComponent(0xff);
242 }
243
244 bool isValid() const {
245 return !fIsIndexed || fMaxLineIndices <= SK_MaxU16;
246 }
247
248private:
249 void initBatchTracker(const GrXPOverridesForBatch& overrides) override {
250 // Handle any color overrides
251 if (!overrides.readsColor()) {
bsalomon50c56a32016-06-30 12:05:32 -0700252 fPaths[0].fColor = GrColor_ILLEGAL;
ethannicholas6536ae52016-05-02 12:16:49 -0700253 }
bsalomon50c56a32016-06-30 12:05:32 -0700254 overrides.getOverrideColorIfSet(&fPaths[0].fColor);
ethannicholas6536ae52016-05-02 12:16:49 -0700255 }
256
bsalomon50c56a32016-06-30 12:05:32 -0700257 void computeWorstCasePointCount(const SkPath& path, int* subpaths, int* outLinePointCount,
258 int* outQuadPointCount) const {
ethannicholas6536ae52016-05-02 12:16:49 -0700259 int linePointCount = 0;
260 int quadPointCount = 0;
261 *subpaths = 1;
262
263 bool first = true;
264
bsalomon8eb43e52016-09-21 07:47:34 -0700265 SkPath::Iter iter(path, true);
ethannicholas6536ae52016-05-02 12:16:49 -0700266 SkPath::Verb verb;
267
268 SkPoint pts[4];
269 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
270 switch (verb) {
271 case SkPath::kLine_Verb:
272 linePointCount += 1;
273 break;
274 case SkPath::kConic_Verb: {
275 SkScalar weight = iter.conicWeight();
276 SkAutoConicToQuads converter;
277 converter.computeQuads(pts, weight, kTolerance);
278 int quadPts = converter.countQuads();
279 linePointCount += quadPts;
280 quadPointCount += 3 * quadPts;
281 }
282 case SkPath::kQuad_Verb:
283 linePointCount += 1;
284 quadPointCount += 3;
285 break;
286 case SkPath::kCubic_Verb: {
287 SkSTArray<15, SkPoint, true> quadPts;
288 GrPathUtils::convertCubicToQuads(pts, kTolerance, &quadPts);
289 int count = quadPts.count();
290 linePointCount += count / 3;
291 quadPointCount += count;
292 break;
293 }
294 case SkPath::kMove_Verb:
295 linePointCount += 1;
296 if (!first) {
297 ++(*subpaths);
298 }
299 break;
300 default:
301 break;
302 }
303 first = false;
304 }
305 *outLinePointCount = linePointCount;
306 *outQuadPointCount = quadPointCount;
307 }
308
309 void onPrepareDraws(Target* target) const override {
310 SkASSERT(this->isValid());
311 if (fMaxLineVertices == 0) {
312 SkASSERT(fMaxQuadVertices == 0);
313 return;
314 }
315
bungeman06ca8ec2016-06-09 08:01:03 -0700316 GrPrimitiveType primitiveType = fIsIndexed ? kTriangles_GrPrimitiveType
ethannicholas6536ae52016-05-02 12:16:49 -0700317 : kTriangleFan_GrPrimitiveType;
318
319 // allocate vertex / index buffers
320 const GrBuffer* lineVertexBuffer;
321 int firstLineVertex;
322 MSAALineVertices lines;
323 size_t lineVertexStride = sizeof(MSAALineVertices::Vertex);
bungeman06ca8ec2016-06-09 08:01:03 -0700324 lines.vertices = (MSAALineVertices::Vertex*) target->makeVertexSpace(lineVertexStride,
ethannicholas6536ae52016-05-02 12:16:49 -0700325 fMaxLineVertices,
bungeman06ca8ec2016-06-09 08:01:03 -0700326 &lineVertexBuffer,
ethannicholas6536ae52016-05-02 12:16:49 -0700327 &firstLineVertex);
328 if (!lines.vertices) {
329 SkDebugf("Could not allocate vertices\n");
330 return;
331 }
332 lines.nextVertex = lines.vertices;
333 SkDEBUGCODE(lines.verticesEnd = lines.vertices + fMaxLineVertices;)
334
335 MSAAQuadVertices quads;
336 size_t quadVertexStride = sizeof(MSAAQuadVertices::Vertex);
337 SkAutoFree quadVertexPtr(sk_malloc_throw(fMaxQuadVertices * quadVertexStride));
338 quads.vertices = (MSAAQuadVertices::Vertex*) quadVertexPtr.get();
339 quads.nextVertex = quads.vertices;
340 SkDEBUGCODE(quads.verticesEnd = quads.vertices + fMaxQuadVertices;)
341
342 const GrBuffer* lineIndexBuffer = nullptr;
343 int firstLineIndex;
344 if (fIsIndexed) {
bungeman06ca8ec2016-06-09 08:01:03 -0700345 lines.indices = target->makeIndexSpace(fMaxLineIndices, &lineIndexBuffer,
ethannicholas6536ae52016-05-02 12:16:49 -0700346 &firstLineIndex);
347 if (!lines.indices) {
348 SkDebugf("Could not allocate indices\n");
349 return;
350 }
351 lines.nextIndex = lines.indices;
352 } else {
353 lines.indices = nullptr;
354 lines.nextIndex = nullptr;
355 }
356
357 SkAutoFree quadIndexPtr;
358 if (fIsIndexed) {
359 quads.indices = (uint16_t*) sk_malloc_throw(fMaxQuadIndices * sizeof(uint16_t));
360 quadIndexPtr.set(quads.indices);
361 quads.nextIndex = quads.indices;
362 } else {
363 quads.indices = nullptr;
364 quads.nextIndex = nullptr;
365 }
366
367 // fill buffers
bsalomon50c56a32016-06-30 12:05:32 -0700368 for (int i = 0; i < fPaths.count(); i++) {
369 const PathInfo& pathInfo = fPaths[i];
ethannicholas6536ae52016-05-02 12:16:49 -0700370
371 if (!this->createGeom(lines,
372 quads,
bsalomon50c56a32016-06-30 12:05:32 -0700373 pathInfo.fPath,
ethannicholas6536ae52016-05-02 12:16:49 -0700374 fViewMatrix,
bsalomon50c56a32016-06-30 12:05:32 -0700375 pathInfo.fColor,
ethannicholas6536ae52016-05-02 12:16:49 -0700376 fIsIndexed)) {
377 return;
378 }
379 }
380 int lineVertexOffset = (int) (lines.nextVertex - lines.vertices);
381 int lineIndexOffset = (int) (lines.nextIndex - lines.indices);
382 SkASSERT(lineVertexOffset <= fMaxLineVertices && lineIndexOffset <= fMaxLineIndices);
383 int quadVertexOffset = (int) (quads.nextVertex - quads.vertices);
384 int quadIndexOffset = (int) (quads.nextIndex - quads.indices);
385 SkASSERT(quadVertexOffset <= fMaxQuadVertices && quadIndexOffset <= fMaxQuadIndices);
386
387 if (lineVertexOffset) {
bungeman06ca8ec2016-06-09 08:01:03 -0700388 sk_sp<GrGeometryProcessor> lineGP;
ethannicholas6536ae52016-05-02 12:16:49 -0700389 {
390 using namespace GrDefaultGeoProcFactory;
bungeman06ca8ec2016-06-09 08:01:03 -0700391 lineGP = GrDefaultGeoProcFactory::Make(Color(Color::kAttribute_Type),
392 Coverage(255),
393 LocalCoords(LocalCoords::kUnused_Type),
394 fViewMatrix);
ethannicholas6536ae52016-05-02 12:16:49 -0700395 }
396 SkASSERT(lineVertexStride == lineGP->getVertexStride());
397
398 GrMesh lineMeshes;
399 if (fIsIndexed) {
bungeman06ca8ec2016-06-09 08:01:03 -0700400 lineMeshes.initIndexed(primitiveType, lineVertexBuffer, lineIndexBuffer,
401 firstLineVertex, firstLineIndex, lineVertexOffset,
ethannicholas6536ae52016-05-02 12:16:49 -0700402 lineIndexOffset);
403 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700404 lineMeshes.init(primitiveType, lineVertexBuffer, firstLineVertex,
ethannicholas6536ae52016-05-02 12:16:49 -0700405 lineVertexOffset);
406 }
bungeman06ca8ec2016-06-09 08:01:03 -0700407 target->draw(lineGP.get(), lineMeshes);
ethannicholas6536ae52016-05-02 12:16:49 -0700408 }
409
410 if (quadVertexOffset) {
411 SkAutoTUnref<const GrGeometryProcessor> quadGP(MSAAQuadProcessor::Create(fViewMatrix));
412 SkASSERT(quadVertexStride == quadGP->getVertexStride());
413
414 const GrBuffer* quadVertexBuffer;
415 int firstQuadVertex;
bungeman06ca8ec2016-06-09 08:01:03 -0700416 MSAAQuadVertices::Vertex* quadVertices = (MSAAQuadVertices::Vertex*)
ethannicholas6536ae52016-05-02 12:16:49 -0700417 target->makeVertexSpace(quadVertexStride, quadVertexOffset, &quadVertexBuffer,
418 &firstQuadVertex);
419 memcpy(quadVertices, quads.vertices, quadVertexStride * quadVertexOffset);
420 GrMesh quadMeshes;
421 if (fIsIndexed) {
422 const GrBuffer* quadIndexBuffer;
423 int firstQuadIndex;
bungeman06ca8ec2016-06-09 08:01:03 -0700424 uint16_t* quadIndices = (uint16_t*) target->makeIndexSpace(quadIndexOffset,
425 &quadIndexBuffer,
ethannicholas6536ae52016-05-02 12:16:49 -0700426 &firstQuadIndex);
427 memcpy(quadIndices, quads.indices, sizeof(uint16_t) * quadIndexOffset);
bungeman06ca8ec2016-06-09 08:01:03 -0700428 quadMeshes.initIndexed(kTriangles_GrPrimitiveType, quadVertexBuffer,
429 quadIndexBuffer, firstQuadVertex, firstQuadIndex,
ethannicholas6536ae52016-05-02 12:16:49 -0700430 quadVertexOffset, quadIndexOffset);
431 } else {
bungeman06ca8ec2016-06-09 08:01:03 -0700432 quadMeshes.init(kTriangles_GrPrimitiveType, quadVertexBuffer, firstQuadVertex,
ethannicholas6536ae52016-05-02 12:16:49 -0700433 quadVertexOffset);
434 }
435 target->draw(quadGP, quadMeshes);
436 }
437 }
438
ethannicholas6536ae52016-05-02 12:16:49 -0700439 bool onCombineIfPossible(GrBatch* t, const GrCaps& caps) override {
440 MSAAPathBatch* that = t->cast<MSAAPathBatch>();
441 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
442 that->bounds(), caps)) {
443 return false;
444 }
445
446 if (!fViewMatrix.cheapEqualTo(that->fViewMatrix)) {
447 return false;
448 }
449
bungeman06ca8ec2016-06-09 08:01:03 -0700450 if ((fMaxLineIndices + that->fMaxLineIndices > SK_MaxU16) ||
ethannicholas6536ae52016-05-02 12:16:49 -0700451 (fMaxQuadIndices + that->fMaxQuadIndices > SK_MaxU16)) {
452 return false;
453 }
454
bsalomon50c56a32016-06-30 12:05:32 -0700455 fPaths.push_back_n(that->fPaths.count(), that->fPaths.begin());
bsalomon88cf17d2016-07-08 06:40:56 -0700456 this->joinBounds(*that);
ethannicholas6536ae52016-05-02 12:16:49 -0700457 fIsIndexed = true;
458 fMaxLineVertices += that->fMaxLineVertices;
459 fMaxQuadVertices += that->fMaxQuadVertices;
460 fMaxLineIndices += that->fMaxLineIndices;
461 fMaxQuadIndices += that->fMaxQuadIndices;
462 return true;
463 }
464
465 bool createGeom(MSAALineVertices& lines,
466 MSAAQuadVertices& quads,
467 const SkPath& path,
ethannicholas6536ae52016-05-02 12:16:49 -0700468 const SkMatrix& m,
469 SkColor color,
470 bool isIndexed) const {
471 {
472 uint16_t subpathIdxStart = (uint16_t) (lines.nextVertex - lines.vertices);
473
474 SkPoint pts[4];
475
476 bool first = true;
bsalomon8eb43e52016-09-21 07:47:34 -0700477 SkPath::Iter iter(path, true);
ethannicholas6536ae52016-05-02 12:16:49 -0700478
479 bool done = false;
480 while (!done) {
481 SkPath::Verb verb = iter.next(pts);
482 switch (verb) {
483 case SkPath::kMove_Verb:
484 if (!first) {
485 uint16_t currIdx = (uint16_t) (lines.nextVertex - lines.vertices);
486 subpathIdxStart = currIdx;
487 }
488 SkASSERT(lines.nextVertex < lines.verticesEnd);
489 *(lines.nextVertex++) = { pts[0], color };
490 break;
491 case SkPath::kLine_Verb:
492 if (isIndexed) {
493 uint16_t prevIdx = (uint16_t) (lines.nextVertex - lines.vertices - 1);
494 if (prevIdx > subpathIdxStart) {
495 append_contour_edge_indices(subpathIdxStart, prevIdx, lines);
496 }
497 }
498 SkASSERT(lines.nextVertex < lines.verticesEnd);
499 *(lines.nextVertex++) = { pts[1], color };
500 break;
501 case SkPath::kConic_Verb: {
502 SkScalar weight = iter.conicWeight();
503 SkAutoConicToQuads converter;
bsalomon50c56a32016-06-30 12:05:32 -0700504 const SkPoint* quadPts = converter.computeQuads(pts, weight, kTolerance);
ethannicholas6536ae52016-05-02 12:16:49 -0700505 for (int i = 0; i < converter.countQuads(); ++i) {
bungeman06ca8ec2016-06-09 08:01:03 -0700506 add_quad(lines, quads, quadPts + i * 2, color, isIndexed,
ethannicholas6536ae52016-05-02 12:16:49 -0700507 subpathIdxStart);
508 }
509 break;
510 }
511 case SkPath::kQuad_Verb: {
512 add_quad(lines, quads, pts, color, isIndexed, subpathIdxStart);
bungeman06ca8ec2016-06-09 08:01:03 -0700513 break;
ethannicholas6536ae52016-05-02 12:16:49 -0700514 }
515 case SkPath::kCubic_Verb: {
516 SkSTArray<15, SkPoint, true> quadPts;
517 GrPathUtils::convertCubicToQuads(pts, kTolerance, &quadPts);
518 int count = quadPts.count();
519 for (int i = 0; i < count; i += 3) {
520 add_quad(lines, quads, &quadPts[i], color, isIndexed, subpathIdxStart);
521 }
522 break;
523 }
524 case SkPath::kClose_Verb:
525 break;
526 case SkPath::kDone_Verb:
527 done = true;
528 }
529 first = false;
530 }
531 }
532 return true;
533 }
534
bsalomon50c56a32016-06-30 12:05:32 -0700535 struct PathInfo {
536 GrColor fColor;
537 SkPath fPath;
538 };
539
540 SkSTArray<1, PathInfo, true> fPaths;
ethannicholas6536ae52016-05-02 12:16:49 -0700541
542 SkMatrix fViewMatrix;
543 int fMaxLineVertices;
544 int fMaxQuadVertices;
545 int fMaxLineIndices;
546 int fMaxQuadIndices;
547 bool fIsIndexed;
548
549 typedef GrVertexBatch INHERITED;
550};
551
Brian Osman11052242016-10-27 14:47:55 -0400552bool GrMSAAPathRenderer::internalDrawPath(GrRenderTargetContext* renderTargetContext,
robertphillips976f5f02016-06-03 10:59:20 -0700553 const GrPaint& paint,
robertphillipsd2b6d642016-07-21 08:55:08 -0700554 const GrUserStencilSettings& userStencilSettings,
cdalton862cff32016-05-12 15:09:48 -0700555 const GrClip& clip,
ethannicholas6536ae52016-05-02 12:16:49 -0700556 const SkMatrix& viewMatrix,
bsalomon8acedde2016-06-24 10:42:16 -0700557 const GrShape& shape,
ethannicholas6536ae52016-05-02 12:16:49 -0700558 bool stencilOnly) {
bsalomon8acedde2016-06-24 10:42:16 -0700559 SkASSERT(shape.style().isSimpleFill());
560 SkPath path;
561 shape.asPath(&path);
562
robertphillips8e375302016-07-11 10:43:58 -0700563 static const int kMaxNumPasses = 2;
564
cdalton93a379b2016-05-11 13:58:08 -0700565 int passCount = 0;
robertphillips8e375302016-07-11 10:43:58 -0700566 const GrUserStencilSettings* passes[kMaxNumPasses];
cdalton93a379b2016-05-11 13:58:08 -0700567 bool reverse = false;
568 bool lastPassIsBounds;
ethannicholas6536ae52016-05-02 12:16:49 -0700569
bsalomon8acedde2016-06-24 10:42:16 -0700570 if (single_pass_shape(shape)) {
ethannicholas6536ae52016-05-02 12:16:49 -0700571 passCount = 1;
572 if (stencilOnly) {
573 passes[0] = &gDirectToStencil;
574 } else {
robertphillipsd2b6d642016-07-21 08:55:08 -0700575 passes[0] = &userStencilSettings;
ethannicholas6536ae52016-05-02 12:16:49 -0700576 }
ethannicholas6536ae52016-05-02 12:16:49 -0700577 lastPassIsBounds = false;
578 } else {
579 switch (path.getFillType()) {
580 case SkPath::kInverseEvenOdd_FillType:
581 reverse = true;
582 // fallthrough
583 case SkPath::kEvenOdd_FillType:
584 passes[0] = &gEOStencilPass;
585 if (stencilOnly) {
586 passCount = 1;
587 lastPassIsBounds = false;
588 } else {
589 passCount = 2;
590 lastPassIsBounds = true;
591 if (reverse) {
592 passes[1] = &gInvEOColorPass;
593 } else {
594 passes[1] = &gEOColorPass;
595 }
596 }
ethannicholas6536ae52016-05-02 12:16:49 -0700597 break;
598
599 case SkPath::kInverseWinding_FillType:
600 reverse = true;
601 // fallthrough
602 case SkPath::kWinding_FillType:
603 passes[0] = &gWindStencilSeparateWithWrap;
604 passCount = 2;
ethannicholas6536ae52016-05-02 12:16:49 -0700605 if (stencilOnly) {
606 lastPassIsBounds = false;
robertphillips8e375302016-07-11 10:43:58 -0700607 passCount = 1;
ethannicholas6536ae52016-05-02 12:16:49 -0700608 } else {
609 lastPassIsBounds = true;
ethannicholas6536ae52016-05-02 12:16:49 -0700610 if (reverse) {
robertphillips8e375302016-07-11 10:43:58 -0700611 passes[1] = &gInvWindColorPass;
ethannicholas6536ae52016-05-02 12:16:49 -0700612 } else {
robertphillips8e375302016-07-11 10:43:58 -0700613 passes[1] = &gWindColorPass;
ethannicholas6536ae52016-05-02 12:16:49 -0700614 }
615 }
616 break;
617 default:
618 SkDEBUGFAIL("Unknown path fFill!");
619 return false;
620 }
621 }
622
623 SkRect devBounds;
Brian Osman11052242016-10-27 14:47:55 -0400624 GetPathDevBounds(path, renderTargetContext->width(), renderTargetContext->height(), viewMatrix,
625 &devBounds);
ethannicholas6536ae52016-05-02 12:16:49 -0700626
robertphillips8e375302016-07-11 10:43:58 -0700627 SkASSERT(passCount <= kMaxNumPasses);
628
ethannicholas6536ae52016-05-02 12:16:49 -0700629 for (int p = 0; p < passCount; ++p) {
ethannicholas6536ae52016-05-02 12:16:49 -0700630 if (lastPassIsBounds && (p == passCount-1)) {
ethannicholas6536ae52016-05-02 12:16:49 -0700631 SkRect bounds;
632 SkMatrix localMatrix = SkMatrix::I();
633 if (reverse) {
ethannicholas6536ae52016-05-02 12:16:49 -0700634 // draw over the dev bounds (which will be the whole dst surface for inv fill).
635 bounds = devBounds;
636 SkMatrix vmi;
637 // mapRect through persp matrix may not be correct
638 if (!viewMatrix.hasPerspective() && viewMatrix.invert(&vmi)) {
639 vmi.mapRect(&bounds);
640 } else {
641 if (!viewMatrix.invert(&localMatrix)) {
642 return false;
643 }
644 }
645 } else {
646 bounds = path.getBounds();
647 }
648 const SkMatrix& viewM = (reverse && viewMatrix.hasPerspective()) ? SkMatrix::I() :
649 viewMatrix;
650 SkAutoTUnref<GrDrawBatch> batch(
robertphillips3950f0d2016-07-07 07:33:13 -0700651 GrRectBatchFactory::CreateNonAAFill(paint.getColor(), viewM, bounds, nullptr,
ethannicholas6536ae52016-05-02 12:16:49 -0700652 &localMatrix));
robertphillips976f5f02016-06-03 10:59:20 -0700653
Brian Osman11052242016-10-27 14:47:55 -0400654 GrPipelineBuilder pipelineBuilder(paint, renderTargetContext->mustUseHWAA(paint));
bsalomonbb243832016-07-22 07:10:19 -0700655 pipelineBuilder.setUserStencil(passes[p]);
656
Brian Osman11052242016-10-27 14:47:55 -0400657 renderTargetContext->drawBatch(pipelineBuilder, clip, batch);
robertphillips976f5f02016-06-03 10:59:20 -0700658 } else {
bsalomon88cf17d2016-07-08 06:40:56 -0700659 SkAutoTUnref<MSAAPathBatch> batch(new MSAAPathBatch(paint.getColor(), path,
bsalomon8e9e45a2016-07-08 09:14:07 -0700660 viewMatrix, devBounds));
robertphillips976f5f02016-06-03 10:59:20 -0700661 if (!batch->isValid()) {
ethannicholas6536ae52016-05-02 12:16:49 -0700662 return false;
663 }
robertphillips976f5f02016-06-03 10:59:20 -0700664
Brian Osman11052242016-10-27 14:47:55 -0400665 GrPipelineBuilder pipelineBuilder(paint, renderTargetContext->mustUseHWAA(paint));
bsalomonbb243832016-07-22 07:10:19 -0700666 pipelineBuilder.setUserStencil(passes[p]);
robertphillips976f5f02016-06-03 10:59:20 -0700667 if (passCount > 1) {
bsalomonbb243832016-07-22 07:10:19 -0700668 pipelineBuilder.setDisableColorXPFactory();
robertphillips976f5f02016-06-03 10:59:20 -0700669 }
670
Brian Osman11052242016-10-27 14:47:55 -0400671 renderTargetContext->drawBatch(pipelineBuilder, clip, batch);
ethannicholas6536ae52016-05-02 12:16:49 -0700672 }
673 }
674 return true;
675}
676
677bool GrMSAAPathRenderer::onCanDrawPath(const CanDrawPathArgs& args) const {
bsalomonee432412016-06-27 07:18:18 -0700678 // This path renderer only fills and relies on MSAA for antialiasing. Stroked shapes are
679 // handled by passing on the original shape and letting the caller compute the stroked shape
680 // which will have a fill style.
681 return args.fShape->style().isSimpleFill() && !args.fAntiAlias;
ethannicholas6536ae52016-05-02 12:16:49 -0700682}
683
684bool GrMSAAPathRenderer::onDrawPath(const DrawPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400685 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
robertphillips976f5f02016-06-03 10:59:20 -0700686 "GrMSAAPathRenderer::onDrawPath");
bsalomon8acedde2016-06-24 10:42:16 -0700687 SkTLazy<GrShape> tmpShape;
688 const GrShape* shape = args.fShape;
689 if (shape->style().applies()) {
bsalomon6663acf2016-05-10 09:14:17 -0700690 SkScalar styleScale = GrStyle::MatrixToScaleFactor(*args.fViewMatrix);
bsalomon8acedde2016-06-24 10:42:16 -0700691 tmpShape.init(args.fShape->applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec, styleScale));
692 shape = tmpShape.get();
ethannicholas6536ae52016-05-02 12:16:49 -0700693 }
Brian Osman11052242016-10-27 14:47:55 -0400694 return this->internalDrawPath(args.fRenderTargetContext,
robertphillips976f5f02016-06-03 10:59:20 -0700695 *args.fPaint,
robertphillipsd2b6d642016-07-21 08:55:08 -0700696 *args.fUserStencilSettings,
cdalton862cff32016-05-12 15:09:48 -0700697 *args.fClip,
ethannicholas6536ae52016-05-02 12:16:49 -0700698 *args.fViewMatrix,
bsalomon8acedde2016-06-24 10:42:16 -0700699 *shape,
ethannicholas6536ae52016-05-02 12:16:49 -0700700 false);
701}
702
703void GrMSAAPathRenderer::onStencilPath(const StencilPathArgs& args) {
Brian Osman11052242016-10-27 14:47:55 -0400704 GR_AUDIT_TRAIL_AUTO_FRAME(args.fRenderTargetContext->auditTrail(),
robertphillips976f5f02016-06-03 10:59:20 -0700705 "GrMSAAPathRenderer::onStencilPath");
bsalomon8acedde2016-06-24 10:42:16 -0700706 SkASSERT(args.fShape->style().isSimpleFill());
707 SkASSERT(!args.fShape->mayBeInverseFilledAfterStyling());
robertphillips976f5f02016-06-03 10:59:20 -0700708
709 GrPaint paint;
bungeman06ca8ec2016-06-09 08:01:03 -0700710 paint.setXPFactory(GrDisableColorXPFactory::Make());
robertphillips976f5f02016-06-03 10:59:20 -0700711 paint.setAntiAlias(args.fIsAA);
712
Brian Osman11052242016-10-27 14:47:55 -0400713 this->internalDrawPath(args.fRenderTargetContext, paint, GrUserStencilSettings::kUnused,
714 *args.fClip, *args.fViewMatrix, *args.fShape, true);
ethannicholas6536ae52016-05-02 12:16:49 -0700715}
716
717///////////////////////////////////////////////////////////////////////////////////////////////////