Searched defs:ptCount (Results 1 - 7 of 7) sorted by relevance

/external/skia/tests/
H A DPathOpsThreeWayTest.cpp14 int ptCount; member in struct:Curve
54 if (oTest.ptCount == 1 && iTest.ptCount == 1) {
56 } else if (oTest.ptCount == 1 && iTest.ptCount == 4) {
58 } else if (oTest.ptCount == 4 && iTest.ptCount == 1) {
60 } else if (oTest.ptCount == 4 && iTest.ptCount == 4) {
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp145 int ptCount = SkPathOpsVerbToPoints(verb); local
146 fPathPts.append(ptCount, &pts[1]);
150 curve[0] = pts[ptCount];
H A DSkPathOpsCubic.cpp152 bool SkDCubic::hullIntersects(const SkDPoint* pts, int ptCount, bool* isLinear) const { argument
184 for (int n = 0; n < ptCount; ++n) {
H A DSkOpAngle.cpp378 int ptCount = SkPathOpsVerbToPoints(segment.verb()); local
380 for (int idx1 = 0; idx1 <= ptCount - 1; ++idx1) {
381 for (int idx2 = idx1 + 1; idx2 <= ptCount; ++idx2) {
472 int ptCount = index ? rPts : lPts; local
473 for (int idx2 = 0; idx2 <= ptCount; ++idx2) {
H A DSkPathOpsDebug.cpp329 int ptCount = SkPathOpsVerbToPoints(verb); local
330 for (int index = 0; index <= ptCount; ++index) {
332 if (index < ptCount - 1) {
/external/skia/src/utils/
H A DSkDashPath.cpp182 SkScalar ptCount = SkScalarMulDiv(pathLength, local
185 int n = SkScalarCeilToInt(ptCount) << 2;
/external/skia/src/core/
H A DSkPath.cpp2007 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
2515 int ptCount = 1; // moveTo local
2523 ptCount += 1;
2529 ptCount += 2;
2532 ptCount += 3;
2542 fCurrPtCount = ptCount;

Completed in 171 milliseconds