| Index: src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| diff --git a/src/gpu/batches/GrTessellatingPathRenderer.cpp b/src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| index 6dce9f73c839d63432e59fe310ab7c9e77b23141..3ef9a5184a627d4be319dd1f771cd0649eb773e6 100644
|
| --- a/src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| +++ b/src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| @@ -14,7 +14,6 @@
|
| #include "GrDefaultGeoProcFactory.h"
|
| #include "GrMesh.h"
|
| #include "GrPathUtils.h"
|
| -#include "GrPipelineBuilder.h"
|
| #include "GrResourceCache.h"
|
| #include "GrResourceProvider.h"
|
| #include "GrTessellator.h"
|
| @@ -272,10 +271,7 @@ bool GrTessellatingPathRenderer::onDrawPath(const DrawPathArgs& args) {
|
| *args.fShape,
|
| *args.fViewMatrix, clipBounds));
|
|
|
| - GrPipelineBuilder pipelineBuilder(*args.fPaint, args.fDrawContext->mustUseHWAA(*args.fPaint));
|
| - pipelineBuilder.setUserStencil(args.fUserStencilSettings);
|
| -
|
| - args.fDrawContext->drawBatch(pipelineBuilder, *args.fClip, batch);
|
| + args.fDrawContext->drawBatch(*args.fPaint, *args.fClip, *args.fUserStencilSettings, batch);
|
|
|
| return true;
|
| }
|
|
|