Index: src/core/SkRecorder.cpp |
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp |
index 812fd9d49c29389a0be388cb923b9c5b0ddc4edb..c27405575c57c635c897a69d095089d371c683e3 100644 |
--- a/src/core/SkRecorder.cpp |
+++ b/src/core/SkRecorder.cpp |
@@ -222,6 +222,11 @@ void SkRecorder::onDrawImageRect(const SkImage* image, const SkRect* src, |
APPEND(DrawImageRect, this->copy(paint), image, this->copy(src), dst); |
} |
+void SkRecorder::onDrawImageNine(const SkImage* image, const SkIRect& center, |
+ const SkRect& dst, const SkPaint* paint) { |
+ APPEND(DrawImageNine, this->copy(paint), image, center, dst); |
+} |
+ |
void SkRecorder::onDrawSprite(const SkBitmap& bitmap, int left, int top, const SkPaint* paint) { |
APPEND(DrawSprite, this->copy(paint), delay_copy(bitmap), left, top); |
} |