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