Lines Matching refs:fInfo
71 : fInfo(adjust_info(codec, orientationBehavior)) in SkAndroidCodec()
215 if (!desiredSize || *desiredSize == fInfo.dimensions()) { in computeSampleSize()
219 if (smaller_than(fInfo.dimensions(), *desiredSize)) { in computeSampleSize()
220 *desiredSize = fInfo.dimensions(); in computeSampleSize()
234 int sampleX = fInfo.width() / desiredSize->width(); in computeSampleSize()
235 int sampleY = fInfo.height() / desiredSize->height(); in computeSampleSize()
242 if (computedSize == fInfo.dimensions() || sampleSize == 1) { in computeSampleSize()
285 *desiredSize = fInfo.dimensions(); in computeSampleSize()
296 return fInfo.dimensions(); in getSampledDimensions()
309 if (!desiredSubset || !is_valid_subset(*desiredSubset, fInfo.dimensions())) { in getSupportedSubset()
330 if (fInfo.dimensions() == subset.size()) { in getSampledSubsetDimensions()
362 SkImageInfo adjustedInfo = fInfo; in getAndroidPixels()