| Index: src/gpu/batches/GrStencilAndCoverPathRenderer.cpp
|
| diff --git a/src/gpu/batches/GrStencilAndCoverPathRenderer.cpp b/src/gpu/batches/GrStencilAndCoverPathRenderer.cpp
|
| index 6abe41e997705129d16d429fdb2b416552ffce70..ada6dbf96376306332eabb20597a148d09e16fc2 100644
|
| --- a/src/gpu/batches/GrStencilAndCoverPathRenderer.cpp
|
| +++ b/src/gpu/batches/GrStencilAndCoverPathRenderer.cpp
|
| @@ -64,12 +64,16 @@ static GrPath* get_gr_path(GrResourceProvider* resourceProvider, const SkPath& s
|
| }
|
|
|
| void GrStencilAndCoverPathRenderer::onStencilPath(const StencilPathArgs& args) {
|
| + GR_AUDIT_TRAIL_AUTO_FRAME(args.fTarget->getAuditTrail(),
|
| + "GrStencilAndCoverPathRenderer::onStencilPath");
|
| SkASSERT(!args.fPath->isInverseFillType());
|
| SkAutoTUnref<GrPath> p(get_gr_path(fResourceProvider, *args.fPath, *args.fStroke));
|
| args.fTarget->stencilPath(*args.fPipelineBuilder, *args.fViewMatrix, p, p->getFillType());
|
| }
|
|
|
| bool GrStencilAndCoverPathRenderer::onDrawPath(const DrawPathArgs& args) {
|
| + GR_AUDIT_TRAIL_AUTO_FRAME(args.fTarget->getAuditTrail(),
|
| + "GrStencilAndCoverPathRenderer::onDrawPath");
|
| SkASSERT(!args.fStroke->isHairlineStyle());
|
| const SkPath& path = *args.fPath;
|
| GrPipelineBuilder* pipelineBuilder = args.fPipelineBuilder;
|
|
|