| Index: src/core/SkPictureRecord.cpp
|
| diff --git a/src/core/SkPictureRecord.cpp b/src/core/SkPictureRecord.cpp
|
| index f7a7633faa6bc0e69be55bbb5bf109aa4c53d31c..bf7a34eef07233d7892f6eb25f5cf5b75fc4afa5 100644
|
| --- a/src/core/SkPictureRecord.cpp
|
| +++ b/src/core/SkPictureRecord.cpp
|
| @@ -868,7 +868,7 @@ void SkPictureRecord::drawOval(const SkRect& oval, const SkPaint& paint) {
|
| this->validate(initialOffset, size);
|
| }
|
|
|
| -void SkPictureRecord::drawRect(const SkRect& rect, const SkPaint& paint) {
|
| +void SkPictureRecord::onDrawRect(const SkRect& rect, const SkPaint& paint) {
|
| // op + paint index + rect
|
| uint32_t size = 2 * kUInt32Size + sizeof(rect);
|
| size_t initialOffset = this->addDraw(DRAW_RECT, &size);
|
| @@ -895,7 +895,7 @@ void SkPictureRecord::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
|
| }
|
| }
|
|
|
| -void SkPictureRecord::drawPath(const SkPath& path, const SkPaint& paint) {
|
| +void SkPictureRecord::onDrawPath(const SkPath& path, const SkPaint& paint) {
|
| // op + paint index + path index
|
| uint32_t size = 3 * kUInt32Size;
|
| size_t initialOffset = this->addDraw(DRAW_PATH, &size);
|
|
|