Lines Matching refs:height
17 int height, GrPixelConfig config)
25 , fHeight(height)
44 bool GrBatchAtlas::BatchPlot::addSubImage(int width, int height, const void* image,
46 SkASSERT(width <= fWidth && height <= fHeight);
52 if (!fRects->addRect(width, height, loc)) {
67 for (int i = 0; i < height; ++i) {
73 fDirtyRect.join(loc->fX, loc->fY, loc->fX + width, loc->fY + height);
93 fDirtyRect.width(), fDirtyRect.height(),
145 int plotHeight = texture->height() / numPlotsY;
148 SkASSERT(plotHeight * numPlotsY == texture->height());
198 int width, int height, const void* image, SkIPoint16* loc) {
208 if (plot->addSubImage(width, height, image, loc)) {
223 SkDEBUGCODE(bool verify = )plot->addSubImage(width, height, image, loc);
252 SkDEBUGCODE(bool verify = )newPlot->addSubImage(width, height, image, loc);