Lines Matching refs:fInfo
51 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0)) in SkPixmap()
73 : fPixels(addr), fRowBytes(rowBytes), fInfo(info) in SkPixmap()
129 const SkImageInfo& info() const { return fInfo; } in info()
154 int width() const { return fInfo.width(); } in width()
160 int height() const { return fInfo.height(); } in height()
170 SkColorType colorType() const { return fInfo.colorType(); } in colorType()
178 SkAlphaType alphaType() const { return fInfo.alphaType(); } in alphaType()
186 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); } in colorSpace()
194 bool isOpaque() const { return fInfo.isOpaque(); } in isOpaque()
214 int shiftPerPixel() const { return fInfo.shiftPerPixel(); } in shiftPerPixel()
224 size_t computeByteSize() const { return fInfo.computeByteSize(fRowBytes); } in computeByteSize()
285 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes); in addr()
297 SkASSERT(1 == fInfo.bytesPerPixel()); in addr8()
310 SkASSERT(2 == fInfo.bytesPerPixel()); in addr16()
323 SkASSERT(4 == fInfo.bytesPerPixel()); in addr32()
336 SkASSERT(8 == fInfo.bytesPerPixel()); in addr64()
350 SkASSERT(8 == fInfo.bytesPerPixel()); in addrF16()
351 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType()); in addrF16()
368 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr8()
369 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr8()
386 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr16()
387 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr16()
404 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr32()
405 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr32()
422 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr64()
423 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr64()
443 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType()); in addrF16()
701 SkImageInfo fInfo; variable