Lines Matching refs:SkMatrix44
129 class SK_API SkMatrix44 {
139 SkMatrix44(Uninitialized_Constructor) { } in SkMatrix44() function
140 SkMatrix44(Identity_Constructor) { this->setIdentity(); } in SkMatrix44() function
143 SkMatrix44() { this->setIdentity(); } in SkMatrix44() function
145 SkMatrix44(const SkMatrix44& src) { in SkMatrix44() function
150 SkMatrix44(const SkMatrix44& a, const SkMatrix44& b) { in SkMatrix44() function
154 SkMatrix44& operator=(const SkMatrix44& src) {
162 bool operator==(const SkMatrix44& other) const;
163 bool operator!=(const SkMatrix44& other) const {
175 SkMatrix44(const SkMatrix&);
176 SkMatrix44& operator=(const SkMatrix& src);
182 static const SkMatrix44& I();
348 void setConcat(const SkMatrix44& a, const SkMatrix44& b);
349 inline void preConcat(const SkMatrix44& m) { in preConcat()
352 inline void postConcat(const SkMatrix44& m) { in postConcat()
356 friend SkMatrix44 operator*(const SkMatrix44& a, const SkMatrix44& b) {
357 return SkMatrix44(a, b);
363 bool invert(SkMatrix44* inverse) const;
397 friend SkVector4 operator*(const SkMatrix44& m, const SkVector4& src) {