HomeSort by relevance Sort by last modified time
    Searched refs:GsA (Results 1 - 3 of 3) sorted by null

  /external/skia/src/core/
SkScalerContext.cpp 713 SkMatrix* GsA, SkMatrix* G_inv, SkMatrix* A_out)
742 if (GsA) {
743 GsA->setScale(0, 0);
822 // The 'remainingWithoutRotation' matrix GsA is the non-rotational part of A without the scale.
823 if (GsA) {
824 *GsA = GA;
826 GsA->preScale(SkScalarInvert(s->fX), SkScalarInvert(s->fY));
  /external/skia/src/ports/
SkScalerContext_win_dw.cpp 229 SkMatrix GsA;
231 &scale, &fSkXform, &GsA, &fG_inv);
240 fGsA.m11 = SkScalarToFloat(GsA.get(SkMatrix::kMScaleX));
241 fGsA.m12 = SkScalarToFloat(GsA.get(SkMatrix::kMSkewY)); // This should be ~0.
242 fGsA.m21 = SkScalarToFloat(GsA.get(SkMatrix::kMSkewX));
243 fGsA.m22 = SkScalarToFloat(GsA.get(SkMatrix::kMScaleY));
SkFontHost_win.cpp 619 // When GDI hinting, remove the entire Y scale from sA and GsA. (Prevents 'linear' metrics.)
620 // When not hinting, remove only the integer Y scale from sA and GsA. (Applied by GDI.)
627 SkMatrix GsA;
629 fRec.computeMatrices(scaleConstraints, &scale, &sA, &GsA, &fG_inv, &A);
631 fGsA.eM11 = SkScalarToFIXED(GsA.get(SkMatrix::kMScaleX));
632 fGsA.eM12 = SkScalarToFIXED(-GsA.get(SkMatrix::kMSkewY)); // This should be ~0.
633 fGsA.eM21 = SkScalarToFIXED(-GsA.get(SkMatrix::kMSkewX));
634 fGsA.eM22 = SkScalarToFIXED(GsA.get(SkMatrix::kMScaleY));
637 // The sA and GsA transforms will be used to create 'linear' metrics.
640 // non-integer scales. This is done so that sA and GsA are computed without any 'residual
    [all...]

Completed in 466 milliseconds