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()
207 int rowBytesAsPixels() const { return int(fRowBytes >> this->shiftPerPixel()); } in rowBytesAsPixels()
224 size_t computeByteSize() const { return fInfo.computeByteSize(fRowBytes); } in computeByteSize()
285 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes); in addr()
370 return (const uint8_t*)((const char*)this->addr8() + y * fRowBytes + (x << 0)); in addr8()
388 return (const uint16_t*)((const char*)this->addr16() + y * fRowBytes + (x << 1)); in addr16()
406 return (const uint32_t*)((const char*)this->addr32() + y * fRowBytes + (x << 2)); in addr32()
424 return (const uint64_t*)((const char*)this->addr64() + y * fRowBytes + (x << 3)); in addr64()
700 size_t fRowBytes; variable