Lines Matching defs:bounds
47 SkIRect bounds = canvas->getDeviceClipBounds();
48 bounds.intersect(fClip);
49 bounds.intersect(fPic->cullRect().roundOut());
50 SkAssertResult(!bounds.isEmpty());
56 tileW = std::min(tileW, bounds.width());
57 tileH = std::min(tileH, bounds.height());
59 int xTiles = SkScalarCeilToInt(bounds.width() / SkIntToScalar(tileW));
60 int yTiles = SkScalarCeilToInt(bounds.height() / SkIntToScalar(tileH));
67 for (int y = bounds.fTop; y < bounds.fBottom; y += tileH) {
68 for (int x = bounds.fLeft; x < bounds.fRight; x += tileW) {
75 SkRect clip = SkRect::Make(bounds);