Index: include/utils/SkPaintFilterCanvas.h |
diff --git a/include/utils/SkPaintFilterCanvas.h b/include/utils/SkPaintFilterCanvas.h |
index 037bac6f738084390d86321ca2b92ce9c3bf6819..63eaaa2fbcd6935fd7a8d5faf36e52a4129f98a9 100644 |
--- a/include/utils/SkPaintFilterCanvas.h |
+++ b/include/utils/SkPaintFilterCanvas.h |
@@ -31,6 +31,7 @@ public: |
enum Type { |
kPaint_Type, |
kPoint_Type, |
+ kArc_Type, |
kBitmap_Type, |
kRect_Type, |
kRRect_Type, |
@@ -66,6 +67,7 @@ protected: |
void onDrawRRect(const SkRRect&, const SkPaint&) override; |
void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override; |
void onDrawOval(const SkRect&, const SkPaint&) override; |
+ void onDrawArc(const SkRect&, SkScalar, SkScalar, bool, const SkPaint&) override; |
void onDrawPath(const SkPath&, const SkPaint&) override; |
void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint*) override; |
void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*, |