Lines Matching refs:outPts
215 Array<Point> outPts; in getValue() local
219 outPts.data = path.pts; in getValue()
220 outPts.reserved = path.ptsCnt; in getValue()
225 outPts.reserve(pts.count * 3 + 1 + extra); in getValue()
229 outPts.push(*pt); in getValue()
233 outPts.push(*(pt - 1) + *(out - 1)); in getValue()
234 outPts.push(*pt + *in); in getValue()
235 outPts.push(*pt); in getValue()
239 outPts.push(pts.last() + outs.last()); in getValue()
240 outPts.push(pts.first() + ins.first()); in getValue()
241 outPts.push(pts.first()); in getValue()
246 path.pts = outPts.data; in getValue()
248 path.ptsCnt = outPts.count; in getValue()
251 outPts.data = nullptr; in getValue()