Home | History | Annotate | Download | only in core

Lines Matching refs:SkFractionalIntToInt

503                 yTemp = SkFractionalIntToInt(mapper.fractionalIntY() * s.fPixmap.height());
533 iY2 = SkFractionalIntToInt(mapper.fractionalIntY() * s.fPixmap.height());
793 if ((uint64_t)SkFractionalIntToInt(fx) <= maxX &&
794 (uint64_t)SkFractionalIntToInt(fx + dx * (count - 1)) <= maxX)
798 SkPMColor src0 = src[SkFractionalIntToInt(fx)]; fx += dx;
799 SkPMColor src1 = src[SkFractionalIntToInt(fx)]; fx += dx;
800 SkPMColor src2 = src[SkFractionalIntToInt(fx)]; fx += dx;
801 SkPMColor src3 = src[SkFractionalIntToInt(fx)]; fx += dx;
809 unsigned index = SkFractionalIntToInt(fx);
816 dst[i] = src[SkClampMax(SkFractionalIntToInt(fx), maxX)];