Home | History | Annotate | Download | only in gpu

Lines Matching refs:fIndices

101     *fIndices.push() = i0;
102 *fIndices.push() = i1;
103 *fIndices.push() = i2;
110 fIndices.rewind();
241 fIndices.setReserve(18*path.countPoints() + 6);
394 SkASSERT(0 == fIndices.count());
624 SkASSERT(0 == (fIndices.count() % 3));
832 for (int i = 0; i < fIndices.count(); i += 3) {
833 SkASSERT(fIndices[i] < this->numPts()) ;
834 SkASSERT(fIndices[i+1] < this->numPts()) ;
835 SkASSERT(fIndices[i+2] < this->numPts()) ;
838 this->point(this->fIndices[i]), this->point(this->fIndices[i+1]),
841 this->point(this->fIndices[i+1]), this->point(this->fIndices[i+2]),
844 this->point(this->fIndices[i+2]), this->point(this->fIndices[i]),