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

  /external/skia/include/private/
SkPathRef.h 247 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; }
267 * Shortcut for this->points() + this->countPoints()
269 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
348 return bounds->setBoundsCheck(ref.points(), ref.countPoints());
  /external/skia/src/gpu/ops/
GrAAConvexPathRenderer.cpp 50 int countPoints() {
141 int n = segb.countPoints();
    [all...]
  /external/skia/src/gpu/
GrDistanceFieldGenFromVector.cpp 231 int countPoints() {
  /external/skia/src/core/
SkPath.cpp 374 SkASSERT(2 == fPathRef->countPoints());
595 pts = fPathRef->points() + fPathRef->countPoints();
624 int SkPath::countPoints() const {
625 return fPathRef->countPoints();
633 int count = SkMin32(max, fPathRef->countPoints());
635 return fPathRef->countPoints();
639 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
670 int count = fPathRef->countPoints();
686 int count = fPathRef->countPoints();
698 int count = fPathRef->countPoints();
    [all...]

Completed in 115 milliseconds