Home | History | Annotate | Download | only in core

Lines Matching defs:fBounds

56     SkIRect     fBounds;
62 bool isEmpty() const { return fBounds.isEmpty(); }
78 x,y are in the same coordiate space as fBounds.
82 SkASSERT(fBounds.contains(x, y));
84 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
89 x,y are in the same coordiate space as fBounds.
93 SkASSERT(fBounds.contains(x, y));
95 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
105 return reinterpret_cast<const uint32_t*>(fImage + SkAlign4(fRowBytes * fBounds.height())) +
106 x - fBounds.fLeft + (y - fBounds.fTop) * rowWordsLCD();
115 return fBounds.width() + 2;
117 return fBounds.width();