Lines Matching refs:fPtIndex
225 seg->fPtIndex = ptIndex; in compute_quad_segs()
253 seg->fPtIndex = ptIndex; in compute_conic_segs()
278 seg->fPtIndex = ptIndex; in compute_cubic_segs()
296 seg->fPtIndex = ptIndex; in compute_line_seg()
313 SkASSERT(seg->fPtIndex >= ptIndex); in validate()
317 while (s < stop - 1 && s[0].fPtIndex == s[1].fPtIndex && --maxChecks > 0) { in validate()
324 ptIndex = seg->fPtIndex; in validate()
564 if (seg[-1].fPtIndex == seg->fPtIndex) { in distanceToSegment()
599 SkASSERT((unsigned)seg->fPtIndex < (unsigned)fPts.count()); in getPosTan()
600 compute_pos_tan(&fPts[seg->fPtIndex], seg->fType, t, pos, tangent); in getPosTan()
655 compute_pos_tan(&fPts[seg->fPtIndex], seg->fType, startT, &p, nullptr); in getSegment()
659 if (seg->fPtIndex == stopSeg->fPtIndex) { in getSegment()
660 SkContourMeasure_segTo(&fPts[seg->fPtIndex], seg->fType, startT, stopT, dst); in getSegment()
663 SkContourMeasure_segTo(&fPts[seg->fPtIndex], seg->fType, startT, SK_Scalar1, dst); in getSegment()
666 } while (seg->fPtIndex < stopSeg->fPtIndex); in getSegment()
667 SkContourMeasure_segTo(&fPts[seg->fPtIndex], seg->fType, 0, stopT, dst); in getSegment()