Index: src/core/SkRecorder.cpp |
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp |
index a2ef00bfe2b2f14989bcd590d13d1260310506b6..2e14c3e25d6c9b6b5a321b92e1d765801d701089 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)); |
} |