| Index: src/gpu/GrTessellatingPathRenderer.h
|
| diff --git a/src/gpu/GrTessellatingPathRenderer.h b/src/gpu/GrTessellatingPathRenderer.h
|
| index 79cafc99f520fe1a229bf52108528eda6657fd2f..aa7be77168c88806bb43c379af6505d86fad69ac 100644
|
| --- a/src/gpu/GrTessellatingPathRenderer.h
|
| +++ b/src/gpu/GrTessellatingPathRenderer.h
|
| @@ -18,26 +18,15 @@ class SK_API GrTessellatingPathRenderer : public GrPathRenderer {
|
| public:
|
| GrTessellatingPathRenderer();
|
|
|
| - bool canDrawPath(const GrDrawTarget*,
|
| - const GrPipelineBuilder*,
|
| - const SkMatrix&,
|
| - const SkPath&,
|
| - const GrStrokeInfo&,
|
| - bool antiAlias) const override;
|
| -protected:
|
| +private:
|
| + bool onCanDrawPath(const CanDrawPathArgs& ) const override;
|
|
|
| StencilSupport onGetStencilSupport(const GrDrawTarget*,
|
| const GrPipelineBuilder*,
|
| const SkPath&,
|
| const GrStrokeInfo&) const override;
|
|
|
| - bool onDrawPath(GrDrawTarget*,
|
| - GrPipelineBuilder*,
|
| - GrColor,
|
| - const SkMatrix& viewMatrix,
|
| - const SkPath&,
|
| - const GrStrokeInfo&,
|
| - bool antiAlias) override;
|
| + bool onDrawPath(const DrawPathArgs&) override;
|
|
|
| typedef GrPathRenderer INHERITED;
|
| };
|
|
|