Home | History | Annotate | Download | only in tests

Lines Matching refs:kPts

3643     const SkPoint kPts[] = {{4, 4}, {6, 6}, {8, 8}, {6, 8}, {4, 8}, {4, 6}, {4, 4}};
3644 p.moveTo(kPts[0]);
3645 for (int index = 1; index < (int) SK_ARRAY_COUNT(kPts); index += 2) {
3646 p.conicTo(kPts[index], kPts[index + 1], 0.5f);
3651 for (int index = 0; index < (int) SK_ARRAY_COUNT(kPts) - 2; index += 2) {
3652 SkConic conic(&kPts[index], 0.5f);