Lines Matching refs:GsA
651 // When GDI hinting, remove the entire Y scale from sA and GsA. (Prevents 'linear' metrics.)
652 // When not hinting, remove only the integer Y scale from sA and GsA. (Applied by GDI.)
659 SkMatrix GsA;
661 fRec.computeMatrices(scaleConstraints, &scale, &sA, &GsA, &fG_inv, &A);
663 fGsA.eM11 = SkScalarToFIXED(GsA.get(SkMatrix::kMScaleX));
664 fGsA.eM12 = SkScalarToFIXED(-GsA.get(SkMatrix::kMSkewY)); // This should be ~0.
665 fGsA.eM21 = SkScalarToFIXED(-GsA.get(SkMatrix::kMSkewX));
666 fGsA.eM22 = SkScalarToFIXED(GsA.get(SkMatrix::kMScaleY));
669 // The sA and GsA transforms will be used to create 'linear' metrics.
672 // non-integer scales. This is done so that sA and GsA are computed without any 'residual'
675 // removed from sA and GsA, so GDI will be handling the scale completely.