Home | History | Annotate | Download | only in core

Lines Matching defs:fRowBytes

101     int rowBytes() const { return fRowBytes; }
120 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
130 size_t getSize() const { return fHeight * fRowBytes; }
138 size.setMul(fHeight, fRowBytes);
468 uint32_t fRowBytes;
644 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
651 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
658 return (uint8_t*)fPixels + y * fRowBytes + x;
666 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
674 return (uint8_t*)fPixels + y * fRowBytes + (x >> 3);