Lines Matching refs:fIndices
112 *fIndices.push() = i0; in addTri()
113 *fIndices.push() = i1; in addTri()
114 *fIndices.push() = i2; in addTri()
121 fIndices.rewind(); in rewind()
294 fIndices.setReserve(18*path.countPoints() + 6); in extractFromPath()
744 SkASSERT(0 == (fIndices.count() % 3)); in validate()
992 for (int i = 0; i < fIndices.count(); i += 3) { in draw()
993 SkASSERT(fIndices[i] < this->numPts()) ; in draw()
994 SkASSERT(fIndices[i+1] < this->numPts()) ; in draw()
995 SkASSERT(fIndices[i+2] < this->numPts()) ; in draw()
998 this->point(this->fIndices[i]), this->point(this->fIndices[i+1]), in draw()
1001 this->point(this->fIndices[i+1]), this->point(this->fIndices[i+2]), in draw()
1004 this->point(this->fIndices[i+2]), this->point(this->fIndices[i]), in draw()