Searched defs:ptCount (Results 1 - 8 of 8) sorted by relevance
/external/chromium_org/third_party/skia/src/pathops/ |
H A D | SkOpEdgeBuilder.cpp | 121 int ptCount = SkPathOpsVerbToPoints(verb); local 122 fPathPts.push_back_n(ptCount, &pts[1]); 123 curve[0] = pts[ptCount];
|
H A D | SkOpAngle.cpp | 384 int ptCount = SkPathOpsVerbToPoints(segment.verb()); local 386 for (int idx1 = 0; idx1 <= ptCount - 1; ++idx1) { 387 for (int idx2 = idx1 + 1; idx2 <= ptCount; ++idx2) { 500 int ptCount = index ? rPts : lPts; 501 for (int idx2 = 0; idx2 <= ptCount; ++idx2) {
|
/external/skia/src/pathops/ |
H A D | SkOpEdgeBuilder.cpp | 121 int ptCount = SkPathOpsVerbToPoints(verb); local 122 fPathPts.push_back_n(ptCount, &pts[1]); 123 curve[0] = pts[ptCount];
|
H A D | SkOpAngle.cpp | 384 int ptCount = SkPathOpsVerbToPoints(segment.verb()); local 386 for (int idx1 = 0; idx1 <= ptCount - 1; ++idx1) { 387 for (int idx2 = idx1 + 1; idx2 <= ptCount; ++idx2) { 500 int ptCount = index ? rPts : lPts; 501 for (int idx2 = 0; idx2 <= ptCount; ++idx2) {
|
/external/chromium_org/third_party/skia/src/utils/ |
H A D | SkDashPath.cpp | 180 SkScalar ptCount = SkScalarMulDiv(pathLength, local 183 int n = SkScalarCeilToInt(ptCount) << 2;
|
/external/skia/src/utils/ |
H A D | SkDashPath.cpp | 180 SkScalar ptCount = SkScalarMulDiv(pathLength, local 183 int n = SkScalarCeilToInt(ptCount) << 2;
|
/external/chromium_org/third_party/skia/src/core/ |
H A D | SkPath.cpp | 2060 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]] 2429 int ptCount = 1; // moveTo local 2437 ptCount += 1; 2443 ptCount += 2; 2446 ptCount += 3; 2456 fCurrPtCount = ptCount;
|
/external/skia/src/core/ |
H A D | SkPath.cpp | 2060 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]] 2429 int ptCount = 1; // moveTo local 2437 ptCount += 1; 2443 ptCount += 2; 2446 ptCount += 3; 2456 fCurrPtCount = ptCount;
|
Completed in 246 milliseconds