Searched refs:GetSampledDimension (Results 1 – 8 of 8) sorted by relevance
/external/skia/src/codec/ |
D | SkSampledCodec.cpp | 75 return SkISize::Make(SkCodecPriv::GetSampledDimension(size.width(), sampleSize), in onGetSampledDimensions() 76 SkCodecPriv::GetSampledDimension(size.height(), sampleSize)); in onGetSampledDimensions() 195 subsetWidth = SkCodecPriv::GetSampledDimension(subsetPtr->width(), nativeSampleSize); in sampledDecode() 196 subsetHeight = SkCodecPriv::GetSampledDimension(subsetPtr->height(), nativeSampleSize); in sampledDecode() 238 if (SkCodecPriv::GetSampledDimension(subsetHeight, sampleY) != info.height()) { in sampledDecode() 284 if (SkCodecPriv::GetSampledDimension(subsetHeight, sampleY) != info.height()) { in sampledDecode()
|
D | SkAndroidCodec.cpp | 482 return {SkCodecPriv::GetSampledDimension(subset.width(), sampleSize), in getSampledSubsetDimensions() 483 SkCodecPriv::GetSampledDimension(subset.height(), sampleSize)}; in getSampledSubsetDimensions()
|
D | SkCodecPriv.h | 53 static int GetSampledDimension(int srcDimension, int sampleSize) { in GetSampledDimension() function
|
D | SkBmpStandardCodec.cpp | 321 const int sampledWidth = SkCodecPriv::GetSampledDimension(this->dimensions().width(), sampleX); in decodeIcoMask()
|
D | SkBmpRLECodec.cpp | 580 return SkCodecPriv::GetSampledDimension(this->dimensions().width(), fSampleX); in fillWidth()
|
D | SkPngCodec.cpp | 487 fRowsNeeded = SkCodecPriv::GetSampledDimension(fLastRow - fFirstRow + 1, sampleY); in decode() 658 const int rowsNeeded = SkCodecPriv::GetSampledDimension(fLastRow - fFirstRow + 1, sampleY); in decode()
|
D | SkSwizzler.cpp | 1216 fSwizzleWidth = SkCodecPriv::GetSampledDimension(fSrcWidth, sampleX); in onSetSampleX() 1217 fAllocatedWidth = SkCodecPriv::GetSampledDimension(fDstWidth, sampleX); in onSetSampleX()
|
D | SkMaskSwizzler.cpp | 560 fDstWidth = SkCodecPriv::GetSampledDimension(fSubsetWidth, sampleX); in onSetSampleX()
|