Home | History | Annotate | Download | only in core

Lines Matching refs:fInfo

15     fInfo = info;
18 fInfo.fMargin.fHeight++;
19 fInfo.fMargin.fWidth++;
22 fGridBounds = SkIRect::MakeXYWH(0, 0, fInfo.fTileInterval.width() * fXTileCount,
23 fInfo.fTileInterval.height() * fYTileCount);
43 dilatedBounds.outset(fInfo.fMargin.width(), fInfo.fMargin.height());
44 dilatedBounds.offset(fInfo.fOffset);
51 int minTileX = SkMax32(SkMin32(dilatedBounds.left() / fInfo.fTileInterval.width(),
53 int maxTileX = SkMax32(SkMin32((dilatedBounds.right() - 1) / fInfo.fTileInterval.width(),
55 int minTileY = SkMax32(SkMin32(dilatedBounds.top() / fInfo.fTileInterval.height(),
57 int maxTileY = SkMax32(SkMin32((dilatedBounds.bottom() -1) / fInfo.fTileInterval.height(),
73 adjustedQuery.inset(fInfo.fMargin.width(), fInfo.fMargin.height());
74 adjustedQuery.offset(fInfo.fOffset);
79 int tileStartX = adjustedQuery.left() / fInfo.fTileInterval.width();
80 int tileEndX = (adjustedQuery.right() + fInfo.fTileInterval.width() - 1) /
81 fInfo.fTileInterval.width();
82 int tileStartY = adjustedQuery.top() / fInfo.fTileInterval.height();
83 int tileEndY = (adjustedQuery.bottom() + fInfo.fTileInterval.height() - 1) /
84 fInfo.fTileInterval.height();