| Index: sky/engine/platform/graphics/ReplayingCanvas.cpp
|
| diff --git a/sky/engine/platform/graphics/ReplayingCanvas.cpp b/sky/engine/platform/graphics/ReplayingCanvas.cpp
|
| index 3c13a10b6bad670c554bfed5b075ce5c0455529a..dbb2d1953858a21a797fe3a4a778e71b88caa9f9 100644
|
| --- a/sky/engine/platform/graphics/ReplayingCanvas.cpp
|
| +++ b/sky/engine/platform/graphics/ReplayingCanvas.cpp
|
| @@ -132,12 +132,6 @@ void ReplayingCanvas::drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect*
|
| this->SkCanvas::drawBitmapRectToRect(bitmap, src, dst, paint, flags);
|
| }
|
|
|
| -void ReplayingCanvas::drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m, const SkPaint* paint)
|
| -{
|
| - AutoReplayer replayer(this);
|
| - this->SkCanvas::drawBitmapMatrix(bitmap, m, paint);
|
| -}
|
| -
|
| void ReplayingCanvas::drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, const SkPaint* paint)
|
| {
|
| AutoReplayer replayer(this);
|
| @@ -211,18 +205,6 @@ void ReplayingCanvas::onDrawTextOnPath(const void* text, size_t byteLength, cons
|
| this->SkCanvas::onDrawTextOnPath(text, byteLength, path, matrix, paint);
|
| }
|
|
|
| -void ReplayingCanvas::onPushCull(const SkRect& cullRect)
|
| -{
|
| - AutoReplayer replayer(this);
|
| - this->SkCanvas::onPushCull(cullRect);
|
| -}
|
| -
|
| -void ReplayingCanvas::onPopCull()
|
| -{
|
| - AutoReplayer replayer(this);
|
| - this->SkCanvas::onPopCull();
|
| -}
|
| -
|
| void ReplayingCanvas::onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle)
|
| {
|
| AutoReplayer replayer(this);
|
|
|