| Index: src/core/SkRecorder.cpp
|
| diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp
|
| index 19cb663eaf297c60c374ea42bcfb9b5d5bd4c7f7..89fce28a3757e56b10648c3d77b67631f42f89e4 100644
|
| --- a/src/core/SkRecorder.cpp
|
| +++ b/src/core/SkRecorder.cpp
|
| @@ -226,6 +226,14 @@ void SkRecorder::onDrawBitmapNine(const SkBitmap& bitmap,
|
| #endif
|
| }
|
|
|
| +void SkRecorder::onDrawBitmapNine(const SkBitmap& bitmap,
|
| + const NinePatchDivs& divs,
|
| + const SkRect& dst,
|
| + const SkPaint* paint) {
|
| + APPEND(DrawBitmapNineDivs, this->copy(paint), bitmap,
|
| + ((const SkNinePatchDivs&) divs).asData(), dst);
|
| +}
|
| +
|
| void SkRecorder::onDrawImage(const SkImage* image, SkScalar left, SkScalar top,
|
| const SkPaint* paint) {
|
| APPEND(DrawImage, this->copy(paint), image, left, top);
|
|
|