Lines Matching refs:SkMatrix44
135 class SK_API SkMatrix44 {
145 SkMatrix44(Uninitialized_Constructor) {} in SkMatrix44() function
147 constexpr SkMatrix44(Identity_Constructor) in SkMatrix44() function
156 SkMatrix44() { this->setIdentity(); } in SkMatrix44() function
158 SkMatrix44(const SkMatrix44& src) { in SkMatrix44() function
163 SkMatrix44(const SkMatrix44& a, const SkMatrix44& b) { in SkMatrix44() function
167 SkMatrix44& operator=(const SkMatrix44& src) {
175 bool operator==(const SkMatrix44& other) const;
176 bool operator!=(const SkMatrix44& other) const {
188 SkMatrix44(const SkMatrix&);
189 SkMatrix44& operator=(const SkMatrix& src);
195 static const SkMatrix44& I();
372 void setConcat(const SkMatrix44& a, const SkMatrix44& b);
373 inline void preConcat(const SkMatrix44& m) { in preConcat()
376 inline void postConcat(const SkMatrix44& m) { in postConcat()
380 friend SkMatrix44 operator*(const SkMatrix44& a, const SkMatrix44& b) {
381 return SkMatrix44(a, b);
388 bool invert(SkMatrix44* inverse) const;
422 friend SkVector4 operator*(const SkMatrix44& m, const SkVector4& src) {