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

/external/skia/tests/
H A DPathOpsThreeWayTest.cpp15 int ptCount; member in struct:Curve
58 if (oTest.ptCount == 1 && iTest.ptCount == 1) {
60 } else if (oTest.ptCount == 1 && iTest.ptCount == 4) {
62 } else if (oTest.ptCount == 4 && iTest.ptCount == 1) {
64 } else if (oTest.ptCount == 4 && iTest.ptCount == 4) {
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp155 int ptCount = SkPathOpsVerbToPoints(verb); local
156 fPathPts.append(ptCount, &pts[1]);
160 curve[0] = pts[ptCount];
H A DSkPathOpsCubic.cpp149 bool SkDCubic::hullIntersects(const SkDPoint* pts, int ptCount, bool* isLinear) const { argument
181 for (int n = 0; n < ptCount; ++n) {
H A DSkOpAngle.cpp410 int ptCount = SkPathOpsVerbToPoints(segment.verb()); local
412 for (int idx1 = 0; idx1 <= ptCount - 1; ++idx1) {
413 for (int idx2 = idx1 + 1; idx2 <= ptCount; ++idx2) {
504 int ptCount = index ? rPts : lPts; local
505 for (int idx2 = 0; idx2 <= ptCount; ++idx2) {
H A DSkPathOpsDebug.cpp631 int ptCount = SkPathOpsVerbToPoints(verb); local
632 for (int index = 0; index <= ptCount; ++index) {
634 if (index < ptCount - 1) {
/external/skia/src/utils/
H A DSkDashPath.cpp176 SkScalar ptCount = pathLength * intervalCount / (float)intervalLength; local
177 ptCount = SkTMin(ptCount, SkDashPath::kMaxDashCount);
178 int n = SkScalarCeilToInt(ptCount) << 2;
/external/skia/src/core/
H A DSkGeometry.cpp1260 const int ptCount = 2 * quadCount + 1; local
1261 SkASSERT(endPts - pts == ptCount);
1262 if (!SkPointsAreFinite(pts, ptCount)) {
1265 for (int i = 1; i < ptCount - 1; ++i) {
H A DSkGlyphCache.cpp252 void SkGlyphCache::AddPoints(const SkPoint* pts, int ptCount, const SkScalar bounds[2], argument
254 for (int i = 0; i < ptCount; ++i) {
H A DSkPath.cpp2036 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
2551 int ptCount = 1; // moveTo local
2559 ptCount += 1;
2565 ptCount += 2;
2568 ptCount += 3;
2578 fCurrPtCount = ptCount;

Completed in 320 milliseconds