| Index: src/gpu/GrDrawContext.cpp
|
| diff --git a/src/gpu/GrDrawContext.cpp b/src/gpu/GrDrawContext.cpp
|
| index 80b18ecf884c27d9c95e201772a44e5b2050c7a6..24408a2a38edf30029ded4dde664f123c949fc45 100644
|
| --- a/src/gpu/GrDrawContext.cpp
|
| +++ b/src/gpu/GrDrawContext.cpp
|
| @@ -486,13 +486,12 @@ void GrDrawContextPriv::clearStencilClip(const SkIRect& rect, bool insideClip) {
|
| fDrawContext->accessRenderTarget());
|
| }
|
|
|
| -void GrDrawContextPriv::stencilPath(const GrPipelineBuilder& pipelineBuilder,
|
| - const GrClip& clip,
|
| +void GrDrawContextPriv::stencilPath(const GrClip& clip,
|
| + const GrUserStencilSettings* ss,
|
| + bool useHWAA,
|
| const SkMatrix& viewMatrix,
|
| - const GrPath* path,
|
| - GrPathRendering::FillType fill) {
|
| - fDrawContext->getDrawTarget()->stencilPath(pipelineBuilder, fDrawContext,
|
| - clip, viewMatrix, path, fill);
|
| + const GrPath* path) {
|
| + fDrawContext->getDrawTarget()->stencilPath(fDrawContext, clip, ss, useHWAA, viewMatrix, path);
|
| }
|
|
|
| void GrDrawContextPriv::stencilRect(const GrFixedClip& clip,
|
|
|