• Home
  • Raw
  • Download

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()
196 sk_sp<SkColorSpace> refColorSpace() const { return fInfo.refColorSpace(); } in refColorSpace()
204 bool isOpaque() const { return fInfo.isOpaque(); } in isOpaque()
224 int shiftPerPixel() const { return fInfo.shiftPerPixel(); } in shiftPerPixel()
234 size_t computeByteSize() const { return fInfo.computeByteSize(fRowBytes); } in computeByteSize()
295 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes); in addr()
307 SkASSERT(1 == fInfo.bytesPerPixel()); in addr8()
320 SkASSERT(2 == fInfo.bytesPerPixel()); in addr16()
333 SkASSERT(4 == fInfo.bytesPerPixel()); in addr32()
346 SkASSERT(8 == fInfo.bytesPerPixel()); in addr64()
360 SkASSERT(8 == fInfo.bytesPerPixel()); in addrF16()
361 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType() || in addrF16()
362 kRGBA_F16Norm_SkColorType == fInfo.colorType()); in addrF16()
379 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr8()
380 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr8()
397 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr16()
398 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr16()
415 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr32()
416 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr32()
433 SkASSERT((unsigned)x < (unsigned)fInfo.width()); in addr64()
434 SkASSERT((unsigned)y < (unsigned)fInfo.height()); in addr64()
454 SkASSERT(kRGBA_F16_SkColorType == fInfo.colorType() || in addrF16()
455 kRGBA_F16Norm_SkColorType == fInfo.colorType()); in addrF16()
713 SkImageInfo fInfo; variable