| Index: include/private/SkRecords.h
|
| diff --git a/include/private/SkRecords.h b/include/private/SkRecords.h
|
| index ab9b8a089cc84476f2888dc9f6e0766ccb581b38..b856647aeed55099f636200afa260181a4f87a1e 100644
|
| --- a/include/private/SkRecords.h
|
| +++ b/include/private/SkRecords.h
|
| @@ -63,6 +63,7 @@
|
| M(DrawTextOnPath) \
|
| M(DrawRRect) \
|
| M(DrawRect) \
|
| + M(DrawSprite) \
|
| M(DrawTextBlob) \
|
| M(DrawAtlas) \
|
| M(DrawVertices)
|
| @@ -314,6 +315,11 @@
|
| RECORD(DrawRect, kDraw_Tag,
|
| SkPaint paint;
|
| SkRect rect);
|
| +RECORD(DrawSprite, kDraw_Tag|kHasImage_Tag,
|
| + Optional<SkPaint> paint;
|
| + ImmutableBitmap bitmap;
|
| + int left;
|
| + int top);
|
| RECORD(DrawText, kDraw_Tag|kHasText_Tag,
|
| SkPaint paint;
|
| PODArray<char> text;
|
|
|