Lines Matching refs:SkMatrix44
102 class SK_API SkMatrix44 {
112 SkMatrix44(Uninitialized_Constructor) { } in SkMatrix44() function
113 SkMatrix44(Identity_Constructor) { this->setIdentity(); } in SkMatrix44() function
116 SkMatrix44() { this->setIdentity(); } in SkMatrix44() function
118 SkMatrix44(const SkMatrix44& src) { in SkMatrix44() function
123 SkMatrix44(const SkMatrix44& a, const SkMatrix44& b) { in SkMatrix44() function
127 SkMatrix44& operator=(const SkMatrix44& src) {
135 bool operator==(const SkMatrix44& other) const;
136 bool operator!=(const SkMatrix44& other) const {
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) { in preConcat()
314 inline void postConcat(const SkMatrix44& m) { in postConcat()
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) {