Home | History | Annotate | Download | only in core

Lines Matching refs:fHeight

157         , fHeight(0)
200 int height() const { return fHeight; }
204 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; }
210 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
221 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType);
225 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType);
251 if (0 == fHeight) {
254 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel();
274 int fHeight;
281 , fHeight(height)