Lines Matching refs:fInfo
71 : fInfo(adjust_info(codec, orientationBehavior)) in SkAndroidCodec()
219 if (!desiredSize || *desiredSize == fInfo.dimensions()) { in computeSampleSize()
223 if (smaller_than(fInfo.dimensions(), *desiredSize)) { in computeSampleSize()
224 *desiredSize = fInfo.dimensions(); in computeSampleSize()
238 int sampleX = fInfo.width() / desiredSize->width(); in computeSampleSize()
239 int sampleY = fInfo.height() / desiredSize->height(); in computeSampleSize()
246 if (computedSize == fInfo.dimensions() || sampleSize == 1) { in computeSampleSize()
289 *desiredSize = fInfo.dimensions(); in computeSampleSize()
300 return fInfo.dimensions(); in getSampledDimensions()
313 if (!desiredSubset || !is_valid_subset(*desiredSubset, fInfo.dimensions())) { in getSupportedSubset()
334 if (fInfo.dimensions() == subset.size()) { in getSampledSubsetDimensions()
366 SkImageInfo adjustedInfo = fInfo; in getAndroidPixels()