| Index: src/core/SkRecordDraw.cpp
|
| diff --git a/src/core/SkRecordDraw.cpp b/src/core/SkRecordDraw.cpp
|
| index 4443071f220996a865049dd9d000df9f85285df4..7f575d1ac2e7279a45b51d01a4d82022a104201f 100644
|
| --- a/src/core/SkRecordDraw.cpp
|
| +++ b/src/core/SkRecordDraw.cpp
|
| @@ -101,7 +101,6 @@ DRAW(AddComment, addComment(r.key, r.value));
|
| DRAW(EndCommentGroup, endCommentGroup());
|
|
|
| DRAW(DrawBitmap, drawBitmap(shallow_copy(r.bitmap), r.left, r.top, r.paint));
|
| -DRAW(DrawBitmapMatrix, drawBitmapMatrix(shallow_copy(r.bitmap), r.matrix, r.paint));
|
| DRAW(DrawBitmapNine, drawBitmapNine(shallow_copy(r.bitmap), r.center, r.dst, r.paint));
|
| DRAW(DrawBitmapRectToRect,
|
| drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint,
|
| @@ -436,11 +435,6 @@ private:
|
| SkRect::MakeXYWH(op.left, op.top, op.bitmap.width(), op.bitmap.height()),
|
| op.paint);
|
| }
|
| - Bounds bounds(const DrawBitmapMatrix& op) const {
|
| - SkRect dst = SkRect::MakeWH(op.bitmap.width(), op.bitmap.height());
|
| - op.matrix.mapRect(&dst);
|
| - return this->adjustAndMap(dst, op.paint);
|
| - }
|
|
|
| Bounds bounds(const DrawPath& op) const {
|
| return op.path.isInverseFillType() ? fCurrentClipBounds
|
|
|