Index: src/utils/debugger/SkDebugCanvas.h |
=================================================================== |
--- src/utils/debugger/SkDebugCanvas.h (revision 13577) |
+++ src/utils/debugger/SkDebugCanvas.h (working copy) |
@@ -143,16 +143,6 @@ |
virtual void clear(SkColor) SK_OVERRIDE; |
- virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE; |
- |
- virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE; |
- |
- virtual bool clipRRect(const SkRRect& rrect, |
- SkRegion::Op op = SkRegion::kIntersect_Op, |
- bool doAntiAlias = false) SK_OVERRIDE; |
- |
- virtual bool clipRegion(const SkRegion& region, SkRegion::Op op) SK_OVERRIDE; |
- |
virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE; |
virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, |
@@ -233,9 +223,16 @@ |
static const int kVizImageHeight = 256; |
static const int kVizImageWidth = 256; |
+ virtual bool isClipEmpty() const SK_OVERRIDE { return false; } |
+ |
protected: |
virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE; |
+ virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE; |
+ virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE; |
+ virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE; |
+ virtual void onClipRegion(const SkRegion& region, SkRegion::Op) SK_OVERRIDE; |
+ |
private: |
SkTDArray<SkDrawCommand*> fCommandVector; |
int fWidth; |