Home | History | Annotate | Download | only in core

Lines Matching refs:fBounds

34     SkIRect     fBounds;
40 bool isEmpty() const { return fBounds.isEmpty(); }
56 x,y are in the same coordiate space as fBounds.
60 SkASSERT(fBounds.contains(x, y));
62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
67 x,y are in the same coordiate space as fBounds.
71 SkASSERT(fBounds.contains(x, y));
73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
79 * are contained in the mask's fBounds.
83 SkASSERT(fBounds.contains(x, y));
85 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
86 return row + (x - fBounds.fLeft);
92 * are contained in the mask's fBounds.
96 SkASSERT(fBounds.contains(x, y));
98 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
99 return row + (x - fBounds.fLeft);
105 * are contained in the mask's fBounds.
109 SkASSERT(fBounds.contains(x, y));
111 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
112 return row + (x - fBounds.fLeft);