HomeSort by relevance Sort by last modified time
    Searched defs:countPoints (Results 1 - 3 of 3) sorted by null

  /external/skia/include/core/
SkPathRef.h 198 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; }
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/
GrAAConvexPathRenderer.cpp 50 int countPoints() {
142 int n = segb.countPoints();
    [all...]
  /external/skia/src/core/
SkPath.cpp 323 SkASSERT(2 == fPathRef->countPoints());
544 pts = fPathRef->points() + fPathRef->countPoints();
573 int SkPath::countPoints() const {
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 46 milliseconds