Lines Matching refs:height
10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { in addRect() argument
12 (unsigned)height > (unsigned)this->height()) { in addRect()
16 int32_t area = width * height; // computed here since height will be modified in addRect()
18 height = GrNextPow2(height); in addRect()
19 if (height < kMIN_HEIGHT_POW2) { in addRect()
20 height = kMIN_HEIGHT_POW2; in addRect()
23 Row* row = &fRows[HeightToRowIndex(height)]; in addRect()
24 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height); in addRect()
27 if (!this->canAddStrip(height)) { in addRect()
30 this->initRow(row, height); in addRect()
33 if (!this->canAddStrip(height)) { in addRect()
38 this->initRow(row, height); in addRect()
42 SkASSERT(row->fRowHeight == height); in addRect()
48 SkASSERT(row->fLoc.fY <= this->height()); in addRect()
49 SkASSERT(fNextStripY <= this->height()); in addRect()