Index: include/core/SkDevice.h |
diff --git a/include/core/SkDevice.h b/include/core/SkDevice.h |
index 2c85dbd403cf868f1853fc0af1c6f6a7d63f4271..899c5d37540c5f6cf059229f8bbffcb8ec7aa384 100644 |
--- a/include/core/SkDevice.h |
+++ b/include/core/SkDevice.h |
@@ -237,6 +237,10 @@ protected: |
virtual void drawRRect(const SkDraw&, const SkRRect& rr, |
const SkPaint& paint) = 0; |
+ // Default impl calls drawPath() |
+ virtual void drawDRRect(const SkDraw&, const SkRRect& outer, |
+ const SkRRect& inner, const SkPaint&); |
+ |
/** |
* If pathIsMutable, then the implementation is allowed to cast path to a |
* non-const pointer and modify it in place (as an optimization). Canvas |