Home
last modified time | relevance | path

Searched refs:fCurrPoint (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkEdgeClipper.cpp47 fCurrPoint = fPoints; in clipLine()
58 fCurrPoint = fPoints; in clipLine()
217 fCurrPoint = fPoints; in clipQuad()
232 SkASSERT(fCurrPoint - fPoints <= kMaxPoints); in clipQuad()
238 fCurrPoint = fPoints; in clipQuad()
412 fCurrPoint = fPoints; in clipCubic()
435 SkASSERT(fCurrPoint - fPoints <= kMaxPoints); in clipCubic()
442 fCurrPoint = fPoints; in clipCubic()
451 fCurrPoint[0] = p0; in appendLine()
452 fCurrPoint[1] = p1; in appendLine()
[all …]
DSkQuadClipper.h44 SkPoint* fCurrPoint;
DSkEdgeClipper.h30 SkPoint* fCurrPoint;
/external/skia/bench/
DPathBench.cpp341 fCurrPoint = 0; in restartMakingPaths()
350 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
353 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
356 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
357 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()
358 fCurrPoint += 2; in makePath()
361 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
362 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
364 fCurrPoint += 2; in makePath()
367 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
[all …]