Home | History | Annotate | Download | only in gpu

Lines Matching refs:height

12 bool GrRectanizerSkyline::addRect(int width, int height, SkIPoint16* loc) {
14 (unsigned)height > (unsigned)this->height()) {
21 int bestY = this->height() + 1;
25 if (this->rectangleFits(i, width, height, &y)) {
38 this->addSkylineLevel(bestIndex, bestX, bestY, width, height);
42 fAreaSoFar += width*height;
51 bool GrRectanizerSkyline::rectangleFits(int skylineIndex, int width, int height, int* ypos) const {
62 if (y + height > this->height()) {
74 void GrRectanizerSkyline::addSkylineLevel(int skylineIndex, int x, int y, int width, int height) {
77 newSegment.fY = y + height;
82 SkASSERT(newSegment.fY <= this->height());
120 GrRectanizer* GrRectanizer::Factory(int width, int height) {
121 return new GrRectanizerSkyline(width, height);