Home | History | Annotate | Download | only in core

Lines Matching refs:fWidth

171         : fWidth(0)
221 int width() const { return fWidth; }
227 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; }
236 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
237 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
248 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType);
252 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType);
260 return sk_64_mul(fWidth, this->bytesPerPixel());
268 SkASSERT((unsigned)x < (unsigned)fWidth);
287 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel();
299 uint64_t rb = sk_64_mul(fWidth, this->bytesPerPixel());
306 int fWidth;
313 : fWidth(width)