Lines Matching defs:xform
75 SkMatrix xform = SkMatrix().setRSXform(
77 xform.preScale(strikeToSourceScale, strikeToSourceScale);
78 bounds.join(xform.mapRect(glyph->rect()));
99 const SkRSXform xform{pos.x(), pos.y(), scaleRotate.x(), scaleRotate.y()};
100 bounds.join(SkMatrix().setRSXform(xform).mapRect(fontBounds));
161 for (auto [xform, pos, sr] : SkMakeZip(buffer.xforms(),
164 xform = SkRSXform::Make(sr.x(), sr.y(), pos.x(), pos.y());
249 for (const SkRSXform& xform : SkMakeSpan(it.xforms(), runSize)) {
250 *positionCursor++ = {xform.fTx, xform.fTy};
251 *scaledRotationsCursor++ = {xform.fSCos, xform.fSSin};
275 for (auto [pos, sr, xform] : SkMakeZip(positions, scaledRotations, xforms)) {
276 auto [scos, ssin, tx, ty] = xform;