Home | History | Annotate | Download | only in utils

Lines Matching refs:SkMatrix44

102 class SK_API SkMatrix44 {
112 SkMatrix44(Uninitialized_Constructor) { }
113 SkMatrix44(Identity_Constructor) { this->setIdentity(); }
116 SkMatrix44() { this->setIdentity(); }
118 SkMatrix44(const SkMatrix44& src) {
123 SkMatrix44(const SkMatrix44& a, const SkMatrix44& b) {
127 SkMatrix44& operator=(const SkMatrix44& src) {
135 bool operator==(const SkMatrix44& other) const;
136 bool operator!=(const SkMatrix44& other) const {
140 /* When converting from SkMatrix44 to SkMatrix, the third row and
141 * column is dropped. When converting from SkMatrix to SkMatrix44
148 SkMatrix44(const SkMatrix&);
149 SkMatrix44& operator=(const SkMatrix& src);
155 static const SkMatrix44& I();
310 void setConcat(const SkMatrix44& a, const SkMatrix44& b);
311 inline void preConcat(const SkMatrix44& m) {
314 inline void postConcat(const SkMatrix44& m) {
318 friend SkMatrix44 operator*(const SkMatrix44& a, const SkMatrix44& b) {
319 return SkMatrix44(a, b);
325 bool invert(SkMatrix44* inverse) const;
359 friend SkVector4 operator*(const SkMatrix44& m, const SkVector4& src) {