Home | History | Annotate | Download | only in core

Lines Matching refs:ptIndex

36     unsigned ptIndex = seg->fPtIndex;
40 } while (seg->fPtIndex == ptIndex);
147 SkScalar distance, int mint, int maxt, int ptIndex) {
153 distance = this->compute_quad_segs(tmp, distance, mint, halft, ptIndex);
154 distance = this->compute_quad_segs(&tmp[2], distance, halft, maxt, ptIndex);
162 seg->fPtIndex = ptIndex;
172 int maxt, const SkPoint& maxPt, int ptIndex) {
176 distance = this->compute_conic_segs(conic, distance, mint, minPt, halft, halfPt, ptIndex);
177 distance = this->compute_conic_segs(conic, distance, halft, halfPt, maxt, maxPt, ptIndex);
185 seg->fPtIndex = ptIndex;
194 SkScalar distance, int mint, int maxt, int ptIndex) {
200 distance = this->compute_cubic_segs(tmp, distance, mint, halft, ptIndex);
201 distance = this->compute_cubic_segs(&tmp[3], distance, halft, maxt, ptIndex);
209 seg->fPtIndex = ptIndex;
219 int ptIndex = fFirstPtIndex;
222 bool firstMoveTo = ptIndex < 0;
237 ptIndex += 1;
254 seg->fPtIndex = ptIndex;
258 ptIndex++;
270 seg->fPtIndex = ptIndex;
275 distance = this->compute_quad_segs(pts, distance, 0, kMaxTValue, ptIndex);
279 ptIndex += 2;
287 kMaxTValue, conic.fPts[2], ptIndex);
294 ptIndex += 3;
300 distance = this->compute_cubic_segs(pts, distance, 0, kMaxTValue, ptIndex);
303 ptIndex += 3;
319 fFirstPtIndex = ptIndex;
325 unsigned ptIndex = 0;
330 SkASSERT(seg->fPtIndex >= ptIndex);
341 ptIndex = seg->fPtIndex;