Home | History | Annotate | Download | only in core

Lines Matching defs:fRowBytes

110     int rowBytes() const { return fRowBytes; }
129 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
139 size_t getSize() const { return fHeight * fRowBytes; }
153 size.setMul(fHeight, fRowBytes);
610 uint32_t fRowBytes;
803 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
810 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
817 return (uint8_t*)fPixels + y * fRowBytes + x;
825 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
833 return (uint8_t*)fPixels + y * fRowBytes + (x >> 3);