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

  /external/skia/include/private/
SkPathRef.h 249 int countPoints() const { return fPointCnt; }
269 * Shortcut for this->points() + this->countPoints()
271 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
354 return bounds->setBoundsCheck(ref.points(), ref.countPoints());
  /external/skqp/include/private/
SkPathRef.h 249 int countPoints() const { return fPointCnt; }
269 * Shortcut for this->points() + this->countPoints()
271 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
351 return bounds->setBoundsCheck(ref.points(), ref.countPoints());
  /external/skia/src/gpu/ops/
GrAAConvexPathRenderer.cpp 51 int countPoints() {
142 int n = segb.countPoints();
    [all...]
  /external/skqp/src/gpu/ops/
GrAAConvexPathRenderer.cpp 51 int countPoints() {
142 int n = segb.countPoints();
    [all...]
  /external/skia/src/gpu/
GrDistanceFieldGenFromVector.cpp 232 int countPoints() {
  /external/skqp/src/gpu/
GrDistanceFieldGenFromVector.cpp 232 int countPoints() {
  /external/skia/src/core/
SkPath.cpp 386 SkASSERT(2 == fPathRef->countPoints());
607 pts = fPathRef->points() + fPathRef->countPoints();
644 int SkPath::countPoints() const {
645 return fPathRef->countPoints();
653 int count = SkMin32(max, fPathRef->countPoints());
655 return fPathRef->countPoints();
659 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
690 int count = fPathRef->countPoints();
706 int count = fPathRef->countPoints();
718 int count = fPathRef->countPoints();
    [all...]
  /external/skqp/src/core/
SkPath.cpp 385 SkASSERT(2 == fPathRef->countPoints());
606 pts = fPathRef->points() + fPathRef->countPoints();
635 int SkPath::countPoints() const {
636 return fPathRef->countPoints();
644 int count = SkMin32(max, fPathRef->countPoints());
646 return fPathRef->countPoints();
650 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
681 int count = fPathRef->countPoints();
697 int count = fPathRef->countPoints();
709 int count = fPathRef->countPoints();
    [all...]

Completed in 113 milliseconds