Lines Matching refs:fInfo
16 fInfo = info; in SkTileGrid()
19 fInfo.fMargin.fHeight++; in SkTileGrid()
20 fInfo.fMargin.fWidth++; in SkTileGrid()
23 fGridBounds = SkIRect::MakeXYWH(0, 0, fInfo.fTileInterval.width() * fXTileCount, in SkTileGrid()
24 fInfo.fTileInterval.height() * fYTileCount); in SkTileGrid()
40 dilatedBounds.outset(fInfo.fMargin.width(), fInfo.fMargin.height()); in insert()
41 dilatedBounds.offset(fInfo.fOffset); in insert()
48 int minTileX = SkMax32(SkMin32(dilatedBounds.left() / fInfo.fTileInterval.width(), in insert()
50 int maxTileX = SkMax32(SkMin32((dilatedBounds.right() - 1) / fInfo.fTileInterval.width(), in insert()
52 int minTileY = SkMax32(SkMin32(dilatedBounds.top() / fInfo.fTileInterval.height(), in insert()
54 int maxTileY = SkMax32(SkMin32((dilatedBounds.bottom() -1) / fInfo.fTileInterval.height(), in insert()
70 adjustedQuery.inset(fInfo.fMargin.width(), fInfo.fMargin.height()); in search()
71 adjustedQuery.offset(fInfo.fOffset); in search()
76 int tileStartX = adjustedQuery.left() / fInfo.fTileInterval.width(); in search()
77 int tileEndX = (adjustedQuery.right() + fInfo.fTileInterval.width() - 1) / in search()
78 fInfo.fTileInterval.width(); in search()
79 int tileStartY = adjustedQuery.top() / fInfo.fTileInterval.height(); in search()
80 int tileEndY = (adjustedQuery.bottom() + fInfo.fTileInterval.height() - 1) / in search()
81 fInfo.fTileInterval.height(); in search()