Searched refs:fCurrPoint (Results 1 – 8 of 8) sorted by relevance
49 fCurrPoint = fPoints; in clipLine()60 fCurrPoint = fPoints; in clipLine()220 fCurrPoint = fPoints; in clipQuad()235 SkASSERT(fCurrPoint - fPoints <= kMaxPoints); in clipQuad()241 fCurrPoint = fPoints; in clipQuad()416 fCurrPoint = fPoints; in clipCubic()439 SkASSERT(fCurrPoint - fPoints <= kMaxPoints); in clipCubic()446 fCurrPoint = fPoints; in clipCubic()455 fCurrPoint[0] = p0; in appendLine()456 fCurrPoint[1] = p1; in appendLine()[all …]
44 SkPoint* fCurrPoint;
30 SkPoint* fCurrPoint;
335 fCurrPoint = 0; in restartMakingPaths()344 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()347 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()350 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()351 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()352 fCurrPoint += 2; in makePath()355 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()356 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()358 fCurrPoint += 2; in makePath()361 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()[all …]