| Index: src/gpu/GrSoftwarePathRenderer.h
|
| diff --git a/src/gpu/GrSoftwarePathRenderer.h b/src/gpu/GrSoftwarePathRenderer.h
|
| index bc355327f19e1b9760bca0d4aa9083d2aaf7b4c9..620e00b99325f1c213d678b5429f963045bebe50 100644
|
| --- a/src/gpu/GrSoftwarePathRenderer.h
|
| +++ b/src/gpu/GrSoftwarePathRenderer.h
|
| @@ -23,18 +23,21 @@ public:
|
| : fContext(context) {
|
| }
|
|
|
| - 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;
|
|
|
| private:
|
|
|