Index: include/core/SkCanvas.h |
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h |
index d9b3282d3e97284966bee8b25d2aa159983825d3..acf0ad2a54febf4cb6bbdd14a9112e81a3c8573f 100644 |
--- a/include/core/SkCanvas.h |
+++ b/include/core/SkCanvas.h |
@@ -707,13 +707,7 @@ public: |
@param region The region to be drawn |
@param paint The paint used to draw the region |
*/ |
- void drawRegion(const SkRegion& region, const SkPaint& paint) { |
- if (region.isEmpty()) { |
- return; |
- } |
- |
- this->onDrawRegion(region, paint); |
- } |
+ void drawRegion(const SkRegion& region, const SkPaint& paint); |
/** Draw the specified oval using the specified paint. The oval will be |
filled or framed based on the Style in the paint. |