Index: src/gpu/GrAAConvexPathRenderer.h |
diff --git a/src/gpu/GrAAConvexPathRenderer.h b/src/gpu/GrAAConvexPathRenderer.h |
index 4dd858509e12767eb1cecb83e738d0ec5769f19d..bb40e19c21842c638ce3dd8af3a3196c61fd6cca 100644 |
--- a/src/gpu/GrAAConvexPathRenderer.h |
+++ b/src/gpu/GrAAConvexPathRenderer.h |
@@ -15,15 +15,17 @@ class GrAAConvexPathRenderer : public GrPathRenderer { |
public: |
GrAAConvexPathRenderer(); |
- virtual bool canDrawPath(const SkPath& path, |
- const SkStrokeRec& stroke, |
- const GrDrawTarget* target, |
+ virtual bool canDrawPath(const GrDrawTarget*, |
+ const GrDrawState*, |
+ const SkPath&, |
+ const SkStrokeRec&, |
bool antiAlias) const SK_OVERRIDE; |
protected: |
- virtual bool onDrawPath(const SkPath& path, |
- const SkStrokeRec& stroke, |
- GrDrawTarget* target, |
+ virtual bool onDrawPath(GrDrawTarget*, |
+ GrDrawState*, |
+ const SkPath&, |
+ const SkStrokeRec&, |
bool antiAlias) SK_OVERRIDE; |
}; |