| Index: src/core/SkPictureRecord.cpp
|
| diff --git a/src/core/SkPictureRecord.cpp b/src/core/SkPictureRecord.cpp
|
| index 92a1448ee029c78db4c3950e5a54374affb9f8e4..ca3aa2f4f674b912e75da0d4b7d4d9c0080e6edc 100644
|
| --- a/src/core/SkPictureRecord.cpp
|
| +++ b/src/core/SkPictureRecord.cpp
|
| @@ -868,7 +868,7 @@ void SkPictureRecord::drawOval(const SkRect& oval, const SkPaint& paint) {
|
| 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);
|
| uint32_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;
|
| uint32_t initialOffset = this->addDraw(DRAW_PATH, &size);
|
|
|