| Index: src/core/SkPictureRecord.h
|
| diff --git a/src/core/SkPictureRecord.h b/src/core/SkPictureRecord.h
|
| index a1b52fb19537fb8d46a56a627fc2d3738174f2da..140558d14711fb4123b80f230753de129b6407d7 100644
|
| --- a/src/core/SkPictureRecord.h
|
| +++ b/src/core/SkPictureRecord.h
|
| @@ -61,6 +61,7 @@ public:
|
| const SkColor colors[], SkXfermode*,
|
| const uint16_t indices[], int indexCount,
|
| const SkPaint&) SK_OVERRIDE;
|
| + virtual void drawPatch(const SkPatch& patch, const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawData(const void*, size_t) SK_OVERRIDE;
|
| virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
|
| virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
|
| @@ -177,6 +178,7 @@ private:
|
| const SkFlatData* addPaint(const SkPaint& paint) { return this->addPaintPtr(&paint); }
|
| const SkFlatData* addPaintPtr(const SkPaint* paint);
|
| void addFlatPaint(const SkFlatData* flatPaint);
|
| + void addPatch(const SkPatch& patch);
|
| void addPath(const SkPath& path);
|
| void addPicture(const SkPicture* picture);
|
| void addPoint(const SkPoint& point);
|
|
|