Lines Matching refs:fRowBytes
41 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
63 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
135 size_t rowBytes() const { return fRowBytes; }
204 int rowBytesAsPixels() const { return int(fRowBytes >> this->shiftPerPixel()); }
221 size_t computeByteSize() const { return fInfo.computeByteSize(fRowBytes); }
286 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
372 return (const uint8_t*)((const char*)this->addr8() + (size_t)y * fRowBytes + (x << 0));
390 return (const uint16_t*)((const char*)this->addr16() + (size_t)y * fRowBytes + (x << 1));
408 return (const uint32_t*)((const char*)this->addr32() + (size_t)y * fRowBytes + (x << 2));
426 return (const uint64_t*)((const char*)this->addr64() + (size_t)y * fRowBytes + (x << 3));
714 size_t fRowBytes;