Lines Matching refs:fPixels
138 void* getPixels() const { return fPixels; }
653 mutable void* fPixels;
786 SkASSERT(fPixels);
789 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
793 SkASSERT(fPixels);
796 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
800 SkASSERT(fPixels);
803 return (uint8_t*)fPixels + y * fRowBytes + x;
807 SkASSERT(fPixels);
811 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];