| Index: include/utils/SkDumpCanvas.h
|
| diff --git a/include/utils/SkDumpCanvas.h b/include/utils/SkDumpCanvas.h
|
| index b08b2d0dda5a149226dc14e5bfea89bfd699b2d9..4508b46a8a79d6874d08e3ee0095a1c10816bb26 100644
|
| --- a/include/utils/SkDumpCanvas.h
|
| +++ b/include/utils/SkDumpCanvas.h
|
| @@ -74,13 +74,6 @@ public:
|
|
|
| int getNestLevel() const { return fNestLevel; }
|
|
|
| - virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
|
| - virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
|
| - virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
|
| - virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
|
| - virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
|
| - virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
|
| -
|
| virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
|
| const SkPaint& paint) SK_OVERRIDE;
|
| @@ -123,6 +116,13 @@ protected:
|
| virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE;
|
| virtual void willRestore() SK_OVERRIDE;
|
|
|
| + virtual void didTranslate(SkScalar, SkScalar) SK_OVERRIDE;
|
| + virtual void didScale(SkScalar, SkScalar) SK_OVERRIDE;
|
| + virtual void didRotate(SkScalar) SK_OVERRIDE;
|
| + virtual void didSkew(SkScalar, SkScalar) SK_OVERRIDE;
|
| + virtual void didConcat(const SkMatrix&) SK_OVERRIDE;
|
| + virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
|
| +
|
| virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
|
| virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE;
|
| virtual void onPopCull() SK_OVERRIDE;
|
|
|