Home | History | Annotate | Download | only in gpu

Lines Matching defs:row

23     Row* row = &fRows[HeightToRowIndex(height)];
24 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
26 if (0 == row->fRowHeight) {
30 this->initRow(row, height);
32 if (!row->canAddWidth(width, this->width())) {
36 // that row is now "full", so retarget our Row record for
38 this->initRow(row, height);
42 SkASSERT(row->fRowHeight == height);
43 SkASSERT(row->canAddWidth(width, this->width()));
44 *loc = row->fLoc;
45 row->fLoc.fX += width;
47 SkASSERT(row->fLoc.fX <= this->width());
48 SkASSERT(row->fLoc.fY <= this->height());