diff options
author | reed <reed@google.com> | 2015-12-16 07:52:46 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-16 07:52:47 -0800 |
commit | 4657ce2324ea197507c4ba728d81138f56da13b1 (patch) | |
tree | 79cba010f59bd353e51cbdc2494ff9f1ff423fce /include/private | |
parent | ce5ac45d39db3c7fe52acaa59117688aec53710e (diff) |
remove drawSprite from canvas
BUG=skia:
Review URL: https://codereview.chromium.org/1534443003
Diffstat (limited to 'include/private')
-rw-r--r-- | include/private/SkRecords.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/private/SkRecords.h b/include/private/SkRecords.h index b856647aee..ab9b8a089c 100644 --- a/include/private/SkRecords.h +++ b/include/private/SkRecords.h @@ -63,7 +63,6 @@ namespace SkRecords { M(DrawTextOnPath) \ M(DrawRRect) \ M(DrawRect) \ - M(DrawSprite) \ M(DrawTextBlob) \ M(DrawAtlas) \ M(DrawVertices) @@ -315,11 +314,6 @@ RECORD(DrawRRect, kDraw_Tag, 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; |