| Index: src/gpu/GrTessellatingPathRenderer.cpp
|
| diff --git a/src/gpu/GrTessellatingPathRenderer.cpp b/src/gpu/GrTessellatingPathRenderer.cpp
|
| index 0fd8afd754652ab0c27d9dcefdcdbb77478a6302..a41a88eed6bb84f6856e6fae9f9d06aea3274241 100644
|
| --- a/src/gpu/GrTessellatingPathRenderer.cpp
|
| +++ b/src/gpu/GrTessellatingPathRenderer.cpp
|
| @@ -1412,9 +1412,10 @@ public:
|
| LOG("got %d pts, %d contours\n", maxPts, contourCnt);
|
| uint32_t flags = GrDefaultGeoProcFactory::kPosition_GPType;
|
| SkAutoTUnref<const GrGeometryProcessor> gp(
|
| - GrDefaultGeoProcFactory::Create(flags, fColor, fViewMatrix, SkMatrix::I()));
|
| + GrDefaultGeoProcFactory::Create(flags, fColor, fPipelineInfo.fUsesLocalCoords,
|
| + fPipelineInfo.fCoverageIgnored, fViewMatrix,
|
| + SkMatrix::I()));
|
| batchTarget->initDraw(gp, pipeline);
|
| - gp->initBatchTracker(batchTarget->currentBatchTracker(), fPipelineInfo);
|
|
|
| SkAutoTDeleteArray<Vertex*> contours(SkNEW_ARRAY(Vertex *, contourCnt));
|
|
|
|
|