Lines Matching defs:dst
1307 /** Offsets SkPoint array by (dx, dy). Offset SkPath replaces dst.
1308 If dst is nullptr, SkPath is replaced by offset data.
1312 @param dst overwritten, translated copy of SkPath; may be nullptr
1316 void offset(SkScalar dx, SkScalar dy, SkPath* dst) const;
1329 Transformed SkPath replaces dst; if dst is nullptr, original data
1333 @param dst overwritten, transformed copy of SkPath; may be nullptr
1338 void transform(const SkMatrix& matrix, SkPath* dst,
1355 SkPath dst;
1356 this->transform(m, &dst, pc);
1357 return dst;