Searched refs:fCurrPoint (Results 1 – 4 of 4) sorted by relevance
200 fCurrPoint = fPoints; in clipQuad()215 SkASSERT(fCurrPoint - fPoints <= kMaxPoints); in clipQuad()221 fCurrPoint = fPoints; in clipQuad()370 fCurrPoint = fPoints; in clipCubic()382 SkASSERT(fCurrPoint - fPoints <= kMaxPoints); in clipCubic()388 fCurrPoint = fPoints; in clipCubic()402 fCurrPoint[0].set(x, y0); in appendVLine()403 fCurrPoint[1].set(x, y1); in appendVLine()404 fCurrPoint += 2; in appendVLine()411 fCurrPoint[0] = pts[2]; in appendQuad()[all …]
30 SkPoint* fCurrPoint;
45 SkPoint* fCurrPoint;
254 fCurrPoint = 0; in restartMakingPaths()263 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()266 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()269 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()270 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()271 fCurrPoint += 2; in makePath()274 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()275 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()277 fCurrPoint += 2; in makePath()280 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()[all …]