| Index: src/gpu/GrStencilAndCoverPathRenderer.h
|
| diff --git a/src/gpu/GrStencilAndCoverPathRenderer.h b/src/gpu/GrStencilAndCoverPathRenderer.h
|
| index 9ebcec98582351ddfc8ed04201280ff6a86e3d6a..dacdcd069541e353fd6e6b8f0f2c877fb7fa526a 100644
|
| --- a/src/gpu/GrStencilAndCoverPathRenderer.h
|
| +++ b/src/gpu/GrStencilAndCoverPathRenderer.h
|
| @@ -25,24 +25,28 @@ public:
|
|
|
| virtual ~GrStencilAndCoverPathRenderer();
|
|
|
| - virtual bool canDrawPath(const SkPath&,
|
| + virtual bool canDrawPath(const GrDrawTarget*,
|
| + const GrDrawState*,
|
| + const SkPath&,
|
| const SkStrokeRec&,
|
| - const GrDrawTarget*,
|
| bool antiAlias) const SK_OVERRIDE;
|
|
|
| protected:
|
| - virtual StencilSupport onGetStencilSupport(const SkPath&,
|
| - const SkStrokeRec&,
|
| - const GrDrawTarget*) const SK_OVERRIDE;
|
| -
|
| - virtual bool onDrawPath(const SkPath&,
|
| + virtual StencilSupport onGetStencilSupport(const GrDrawTarget*,
|
| + const GrDrawState*,
|
| + const SkPath&,
|
| + const SkStrokeRec&) const SK_OVERRIDE;
|
| +
|
| + virtual bool onDrawPath(GrDrawTarget*,
|
| + GrDrawState*,
|
| + const SkPath&,
|
| const SkStrokeRec&,
|
| - GrDrawTarget*,
|
| bool antiAlias) SK_OVERRIDE;
|
|
|
| - virtual void onStencilPath(const SkPath&,
|
| - const SkStrokeRec&,
|
| - GrDrawTarget*) SK_OVERRIDE;
|
| + virtual void onStencilPath(GrDrawTarget*,
|
| + GrDrawState*,
|
| + const SkPath&,
|
| + const SkStrokeRec&) SK_OVERRIDE;
|
|
|
| private:
|
| GrStencilAndCoverPathRenderer(GrGpu*);
|
|
|