Lines Matching refs:fRowBytes
51 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0)) in SkPixmap()
73 : fPixels(addr), fRowBytes(rowBytes), fInfo(info) in SkPixmap()
139 size_t rowBytes() const { return fRowBytes; } in rowBytes()
217 int rowBytesAsPixels() const { return int(fRowBytes >> this->shiftPerPixel()); } in rowBytesAsPixels()
234 size_t computeByteSize() const { return fInfo.computeByteSize(fRowBytes); } in computeByteSize()
295 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes); in addr()
381 return (const uint8_t*)((const char*)this->addr8() + y * fRowBytes + (x << 0)); in addr8()
399 return (const uint16_t*)((const char*)this->addr16() + y * fRowBytes + (x << 1)); in addr16()
417 return (const uint32_t*)((const char*)this->addr32() + y * fRowBytes + (x << 2)); in addr32()
435 return (const uint64_t*)((const char*)this->addr64() + y * fRowBytes + (x << 3)); in addr64()
712 size_t fRowBytes; variable