Lines Matching refs:fInfo
41 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
63 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
125 const SkImageInfo& info() const { return fInfo; }
150 int width() const { return fInfo.width(); }
156 int height() const { return fInfo.height(); }
161 SkISize dimensions() const { return fInfo.dimensions(); }
163 SkColorType colorType() const { return fInfo.colorType(); }
165 SkAlphaType alphaType() const { return fInfo.alphaType(); }
173 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); }
183 sk_sp<SkColorSpace> refColorSpace() const { return fInfo.refColorSpace(); }
191 bool isOpaque() const { return fInfo.isOpaque(); }
211 int shiftPerPixel() const { return fInfo.shiftPerPixel(); }
221 size_t computeByteSize() const { return fInfo.computeByteSize(fRowBytes); }
286 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
298 SkASSERT(1 == fInfo.bytesPerPixel());
311 SkASSERT(2 == fInfo.bytesPerPixel());
324 SkASSERT(4 == fInfo.bytesPerPixel());
337 SkASSERT(8 == fInfo.bytesPerPixel());
351 SkASSERT(8 == fInfo.bytesPerPixel());
352 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType() ||
353 kRGBA_F16Norm_SkColorType == fInfo.colorType());
370 SkASSERT((unsigned)x < (unsigned)fInfo.width());
371 SkASSERT((unsigned)y < (unsigned)fInfo.height());
388 SkASSERT((unsigned)x < (unsigned)fInfo.width());
389 SkASSERT((unsigned)y < (unsigned)fInfo.height());
406 SkASSERT((unsigned)x < (unsigned)fInfo.width());
407 SkASSERT((unsigned)y < (unsigned)fInfo.height());
424 SkASSERT((unsigned)x < (unsigned)fInfo.width());
425 SkASSERT((unsigned)y < (unsigned)fInfo.height());
445 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType() ||
446 kRGBA_F16Norm_SkColorType == fInfo.colorType());
715 SkImageInfo fInfo;