Lines Matching defs:pts
67 /** Maps count pts, skipping stride bytes to advance from one SkPoint to the next.
74 each resulting pts SkPoint is computed as:
81 @param pts storage for mapped points
85 static void MapPointsWithStride(const SkMatrix& mx, SkPoint pts[], size_t stride, int count) {
99 (Sk2s::Load(&pts->fX) + trans).store(&pts->fX);
100 pts = (SkPoint*)((intptr_t)pts + stride);
109 proc(mx, pts->fX, pts->fY, pts);
110 pts = (SkPoint*)((intptr_t)pts + stride);