Searched refs:fInvM (Results 1 – 2 of 2) sorted by relevance
| /external/skia/src/gpu/graphite/geom/ |
| D | Transform.cpp | 94 fType = get_matrix_info(m, &fInvM, &fScale); in Transform() 108 SkASSERT(fM != t.fM || (fInvM == t.fInvM && fType == t.fType && fScale == t.fScale)); in operator ==() 113 Rect Transform::inverseMapRect(const Rect& rect) const { return map_rect(fInvM, rect); } in inverseMapRect() 141 return map_points(fInvM, deviceIn, localOut, count); in inverseMapPoints() 147 t.fInvM.postTranslate(-x, -y); in preTranslate() 151 if (!t.fM.isFinite() || !t.fInvM.isFinite()) { in preTranslate() 160 t.fInvM.preTranslate(-x, -y); in postTranslate() 161 if (!t.fM.isFinite() || !t.fInvM.isFinite()) { in postTranslate() 168 Transform c = {fM * t.fM, t.fInvM * fInvM, std::max(fType, t.fType), {fScale * t.fScale}}; in concat() 169 if (!c.fM.isFinite() || !c.fInvM.isFinite()) { in concat() [all …]
|
| D | Transform_graphite.h | 61 const SkM44& inverse() const { return fInvM; } in inverse() 92 : fM(m), fInvM(invM), fType(type), fScale(scale) {} in Transform() 95 SkM44 fInvM; // M^-1 variable
|