Lines Matching refs:fWidth
150 , fWidth(0) in SkImageInfo()
197 int width() const { return fWidth; } in width()
204 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; } in isEmpty()
210 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } in dimensions()
211 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); } in bounds()
226 return Make(fWidth, fHeight, fColorType, newAlphaType, fColorSpace); in makeAlphaType()
230 return Make(fWidth, fHeight, newColorType, fAlphaType, fColorSpace); in makeColorType()
234 return Make(fWidth, fHeight, fColorType, fAlphaType, std::move(cs)); in makeColorSpace()
241 return sk_64_mul(fWidth, this->bytesPerPixel()); in minRowBytes64()
255 return fWidth == other.fWidth && fHeight == other.fHeight &&
294 uint64_t minRB = sk_64_mul(fWidth, this->bytesPerPixel()); in validRowBytes()
300 fWidth = 0; in reset()
310 int fWidth; member
317 , fWidth(width) in SkImageInfo()