| Index: include/utils/SkDumpCanvas.h
|
| diff --git a/include/utils/SkDumpCanvas.h b/include/utils/SkDumpCanvas.h
|
| index b0b1847dc6e7fe006c3613f28eb53134abf6d21f..6fc679bfeb4e01327004238ebf1090c39da07f9d 100644
|
| --- a/include/utils/SkDumpCanvas.h
|
| +++ b/include/utils/SkDumpCanvas.h
|
| @@ -90,16 +90,6 @@ public:
|
| const SkPaint* paint) SK_OVERRIDE;
|
| virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
|
| const SkPaint* paint) SK_OVERRIDE;
|
| - virtual void drawText(const void* text, size_t byteLength, SkScalar x,
|
| - SkScalar y, const SkPaint& paint) SK_OVERRIDE;
|
| - virtual void drawPosText(const void* text, size_t byteLength,
|
| - const SkPoint pos[], const SkPaint& paint) SK_OVERRIDE;
|
| - virtual void drawPosTextH(const void* text, size_t byteLength,
|
| - const SkScalar xpos[], SkScalar constY,
|
| - const SkPaint& paint) SK_OVERRIDE;
|
| - virtual void drawTextOnPath(const void* text, size_t byteLength,
|
| - const SkPath& path, const SkMatrix* matrix,
|
| - const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawPicture(SkPicture&) SK_OVERRIDE;
|
| virtual void drawVertices(VertexMode vmode, int vertexCount,
|
| const SkPoint vertices[], const SkPoint texs[],
|
| @@ -120,6 +110,14 @@ protected:
|
| virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
|
|
|
| virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
|
| + virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
|
| + const SkPaint&) SK_OVERRIDE;
|
| + virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
|
| + const SkPaint&) SK_OVERRIDE;
|
| + virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
|
| + SkScalar constY, const SkPaint&) SK_OVERRIDE;
|
| + virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
|
| + const SkMatrix* matrix, const SkPaint&) SK_OVERRIDE;
|
| virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE;
|
| virtual void onPopCull() SK_OVERRIDE;
|
|
|
|
|