Index: src/core/SkRecorder.cpp |
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp |
index 1ee24fff5695922959c0a1ed6e97c178f45bf71c..00c810d12901ab24ec21f2da6ae1f6c92529e8e6 100644 |
--- a/src/core/SkRecorder.cpp |
+++ b/src/core/SkRecorder.cpp |
@@ -187,6 +187,11 @@ void SkRecorder::onDrawTextOnPath(const void* text, size_t byteLength, const SkP |
this->copy(matrix)); |
} |
+void SkRecorder::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, |
+ const SkPaint& paint) { |
+ APPEND(DrawTextBlob, delay_copy(paint), blob, x, y); |
+} |
+ |
void SkRecorder::onDrawPicture(const SkPicture* pic, const SkMatrix* matrix, const SkPaint* paint) { |
APPEND(DrawPicture, this->copy(paint), pic, this->copy(matrix)); |
} |