Lines Matching refs:fHeight
186 , fHeight(0) in SkImageInfo()
233 int height() const { return fHeight; } in height()
239 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; } in isEmpty()
245 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } in dimensions()
246 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); } in bounds()
261 return Make(fWidth, fHeight, fColorType, newAlphaType, fColorSpace); in makeAlphaType()
265 return Make(fWidth, fHeight, newColorType, fAlphaType, fColorSpace); in makeColorType()
269 return Make(fWidth, fHeight, fColorType, fAlphaType, std::move(cs)); in makeColorSpace()
290 SkASSERT((unsigned)y < (unsigned)fHeight); in computeOffset()
295 return fWidth == other.fWidth && fHeight == other.fHeight &&
307 if (0 == fHeight) { in getSafeSize64()
310 return sk_64_mul(fHeight - 1, rowBytes) + sk_64_mul(fWidth, this->bytesPerPixel()); in getSafeSize64()
329 fHeight = 0; in reset()
339 int fHeight; member
346 , fHeight(height) in SkImageInfo()