Lines Matching refs:fInfo

28         : fPixels(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
32 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
58 const SkImageInfo& info() const { return fInfo; }
62 int width() const { return fInfo.width(); }
63 int height() const { return fInfo.height(); }
64 SkColorType colorType() const { return fInfo.colorType(); }
65 SkAlphaType alphaType() const { return fInfo.alphaType(); }
66 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); }
67 bool isOpaque() const { return fInfo.isOpaque(); }
80 int shiftPerPixel() const { return fInfo.shiftPerPixel(); }
82 uint64_t getSize64() const { return sk_64_mul(fInfo.height(), fRowBytes); }
83 uint64_t getSafeSize64() const { return fInfo.getSafeSize64(fRowBytes); }
84 size_t getSafeSize() const { return fInfo.getSafeSize(fRowBytes); }
103 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
106 SkASSERT(1 == SkColorTypeBytesPerPixel(fInfo.colorType()));
110 SkASSERT(2 == SkColorTypeBytesPerPixel(fInfo.colorType()));
114 SkASSERT(4 == SkColorTypeBytesPerPixel(fInfo.colorType()));
118 SkASSERT(8 == SkColorTypeBytesPerPixel(fInfo.colorType()));
122 SkASSERT(8 == SkColorTypeBytesPerPixel(fInfo.colorType()));
123 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType());
130 SkASSERT((unsigned)x < (unsigned)fInfo.width());
131 SkASSERT((unsigned)y < (unsigned)fInfo.height());
135 SkASSERT((unsigned)x < (unsigned)fInfo.width());
136 SkASSERT((unsigned)y < (unsigned)fInfo.height());
140 SkASSERT((unsigned)x < (unsigned)fInfo.width());
141 SkASSERT((unsigned)y < (unsigned)fInfo.height());
145 SkASSERT((unsigned)x < (unsigned)fInfo.width());
146 SkASSERT((unsigned)y < (unsigned)fInfo.height());
150 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType());
215 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
227 SkImageInfo fInfo;