Home | History | Annotate | Download | only in batches

Lines Matching refs:fIndices

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