remove deprecated concat44 -- use concat

Change-Id: I769a4148b29ef90ffc5f9944013ea2c131146f75
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/281861
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
This commit is contained in:
Mike Reed 2020-04-06 17:51:15 -04:00 committed by Skia Commit-Bot
parent b41a420ed8
commit 7d08f4b797

View File

@ -893,12 +893,6 @@ public:
void concat(const SkMatrix& matrix);
void concat(const SkM44&);
// DEPRECATED
#if 1
void concat44(const SkM44& m) { this->concat(m); }
void concat44(const SkScalar cm[]) { this->concat(SkM44::ColMajor(cm)); }
#endif
/** Replaces SkMatrix with matrix.
Unlike concat(), any prior matrix state is overwritten.