Lines Matching refs:fInfo
26 , fInfo(info) { } in TargetAllocator()
29 if ((SkImageInfoToBitmapConfig(fInfo) != bm->config()) in allocPixelRef()
30 || (bm->width() != fInfo.fWidth) in allocPixelRef()
31 || (bm->height() != fInfo.fHeight)) { in allocPixelRef()
43 SkImageInfo fInfo; member in __anon942dfde40111::TargetAllocator
105 *info = fInfo; in getInfo()
122 if (!bitmap.asImageInfo(&fInfo)) { in getInfo()
129 fInfo.fWidth = bitmap.width(); in getInfo()
130 fInfo.fHeight = bitmap.height(); in getInfo()
131 fInfo.fColorType = kPMColor_SkColorType; in getInfo()
132 fInfo.fAlphaType = bitmap.alphaType(); in getInfo()
135 *info = fInfo; in getInfo()
158 if (fInfo != info) { in getPixels()