Home | History | Annotate | Download | only in core

Lines Matching refs:fBounds

35     SkIRect     fBounds;
41 bool isEmpty() const { return fBounds.isEmpty(); }
57 x,y are in the same coordiate space as fBounds.
61 SkASSERT(fBounds.contains(x, y));
63 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
68 x,y are in the same coordiate space as fBounds.
72 SkASSERT(fBounds.contains(x, y));
74 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
80 * are contained in the mask's fBounds.
84 SkASSERT(fBounds.contains(x, y));
86 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
87 return row + (x - fBounds.fLeft);
93 * are contained in the mask's fBounds.
97 SkASSERT(fBounds.contains(x, y));
99 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
100 return row + (x - fBounds.fLeft);