Home | History | Annotate | Download | only in gpu

Lines Matching refs:Row

24     Row* row = &fRows[HeightToRowIndex(height)];
25 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
27 if (0 == row->fRowHeight) {
31 this->initRow(row, height);
33 if (!row->canAddWidth(width, this->width())) {
37 // that row is now "full", so retarget our Row record for
39 this->initRow(row, height);
43 SkASSERT(row->fRowHeight == height);
44 SkASSERT(row->canAddWidth(width, this->width()));
45 *loc = row->fLoc;
46 row->fLoc.fX += width;
48 SkASSERT(row->fLoc.fX <= this->width());
49 SkASSERT(row->fLoc.fY <= this->height());