Skip to content

Commit d276e3f

Browse files
reed-at-googleSkia Commit-Bot
authored andcommitted
SkMatrix44 is deprecated: use SkM44 instead
Change-Id: I9a269b9c0c3cda29d06827d016db3a3f963a91fd Reviewed-on: https://skia-review.googlesource.com/c/skia/+/283504 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
1 parent 6862643 commit d276e3f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

RELEASE_NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Milestone 84
88

99
* <insert new release note here>
1010

11-
* SkCamera.h and all of its contained classes are DEPRECATED.
11+
* SkCamera.h and SkMatrix44.h are DEPRECATED.
1212
Use SkM44 if you want to have 3d transformations.
1313

1414
* Changed Dilate and Erode image filters to take SkScalar for radius instead of int. While

include/core/SkMatrix44.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
#include <atomic>
1515
#include <cstring>
1616

17+
// This entire file is DEPRECATED, and will be removed at some point.
18+
// SkCanvas has full support for 4x4 matrices using SkM44
19+
20+
// DEPRECATED
1721
struct SkVector4 {
1822
SkScalar fData[4];
1923

@@ -53,11 +57,7 @@ struct SkVector4 {
5357
}
5458
};
5559

56-
/** \class SkMatrix44
57-
58-
The SkMatrix44 class holds a 4x4 matrix.
59-
60-
*/
60+
// DEPRECATED
6161
class SK_API SkMatrix44 {
6262
public:
6363

0 commit comments

Comments
 (0)