Searched defs:countPoints (Results 1 - 3 of 3) sorted by relevance

/external/skia/include/core/
H A DSkPathRef.h198 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; } function in class:SkPathRef
218 * Shortcut for this->points() + this->countPoints()
220 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
283 int count = ref.countPoints();
/external/skia/src/gpu/
H A DGrAAConvexPathRenderer.cpp50 int countPoints() { function in struct:Segment
142 int n = segb.countPoints();
/external/skia/src/core/
H A DSkPath.cpp323 SkASSERT(2 == fPathRef->countPoints());
544 pts = fPathRef->points() + fPathRef->countPoints();
573 int SkPath::countPoints() const { function in class:SkPath
574 return fPathRef->countPoints();
582 int count = SkMin32(max, fPathRef->countPoints());
584 return fPathRef->countPoints();
588 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
619 int count = fPathRef->countPoints();
635 int count = fPathRef->countPoints();
647 int count = fPathRef->countPoints();
[all...]

Completed in 122 milliseconds