Lines Matching defs:sA
803 bool SkScalerContextRec::computeMatrices(PreMatrixScale preMatrixScale, SkVector* s, SkMatrix* sA,
856 sA->setScale(0, 0);
890 // The 'remaining' matrix sA is the total matrix A without the scale.
895 // If GA == A and kFull_PreMatrixScale, sA is identity.
896 // If GA == A and kVertical_PreMatrixScale and A.scaleX == A.scaleY, sA is identity.
897 sA->reset();
899 // If GA == A and kVertical_PreMatrixScale, sA.scaleY is SK_Scalar1.
900 sA->reset();
901 sA->setScaleX(A.getScaleX() / s->fY);
904 *sA = A;
905 sA->preScale(SkScalarInvert(s->fX), SkScalarInvert(s->fY));