Lines Matching refs:fPtIndex
187 seg->fPtIndex = ptIndex; in compute_quad_segs()
215 seg->fPtIndex = ptIndex; in compute_conic_segs()
240 seg->fPtIndex = ptIndex; in compute_cubic_segs()
258 seg->fPtIndex = ptIndex; in compute_line_seg()
380 SkASSERT(seg->fPtIndex >= ptIndex); in buildSegments()
384 while (s < stop - 1 && s[0].fPtIndex == s[1].fPtIndex && --maxChecks > 0) { in buildSegments()
391 ptIndex = seg->fPtIndex; in buildSegments()
538 if (seg[-1].fPtIndex == seg->fPtIndex) { in distanceToSegment()
573 SkASSERT((unsigned)seg->fPtIndex < (unsigned)fPts.count()); in getPosTan()
574 compute_pos_tan(&fPts[seg->fPtIndex], seg->fType, t, pos, tangent); in getPosTan()
629 compute_pos_tan(&fPts[seg->fPtIndex], seg->fType, startT, &p, nullptr); in getSegment()
633 if (seg->fPtIndex == stopSeg->fPtIndex) { in getSegment()
634 SkContourMeasure_segTo(&fPts[seg->fPtIndex], seg->fType, startT, stopT, dst); in getSegment()
637 SkContourMeasure_segTo(&fPts[seg->fPtIndex], seg->fType, startT, SK_Scalar1, dst); in getSegment()
640 } while (seg->fPtIndex < stopSeg->fPtIndex); in getSegment()
641 SkContourMeasure_segTo(&fPts[seg->fPtIndex], seg->fType, 0, stopT, dst); in getSegment()