Lines Matching refs:fBounds
39 SkIRect fBounds;
47 bool isEmpty() const { return fBounds.isEmpty(); }
63 x,y are in the same coordiate space as fBounds.
67 SkASSERT(fBounds.contains(x, y));
69 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
74 x,y are in the same coordiate space as fBounds.
78 SkASSERT(fBounds.contains(x, y));
80 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
86 * are contained in the mask's fBounds.
90 SkASSERT(fBounds.contains(x, y));
92 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
93 return row + (x - fBounds.fLeft);
99 * are contained in the mask's fBounds.
103 SkASSERT(fBounds.contains(x, y));
105 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
106 return row + (x - fBounds.fLeft);