Searched refs:origHeight (Results 1 – 4 of 4) sorted by relevance
/external/skia/src/core/ |
D | SkBitmapCache.cpp | 57 SkBitmapCacheDesc SkBitmapCacheDesc::Make(uint32_t imageID, int origWidth, int origHeight) { in Make() argument 59 SkASSERT(origWidth > 0 && origHeight > 0); in Make() 60 return { imageID, 0, 0, {0, 0, origWidth, origHeight} }; in Make()
|
D | SkBitmapCache.h | 42 static SkBitmapCacheDesc Make(uint32_t genID, int origWidth, int origHeight);
|
/external/skia/src/codec/ |
D | SkIcoCodec.cpp | 209 int origHeight = this->getInfo().height(); in onGetScaledDimensions() local 210 float desiredSize = desiredScale * origWidth * origHeight; in onGetScaledDimensions() 212 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f; in onGetScaledDimensions()
|
D | SkPngCodec.cpp | 839 png_uint_32 origWidth, origHeight; in infoCallback() local 841 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth, in infoCallback() 930 SkImageInfo imageInfo = encodedInfo.makeImageInfo(origWidth, origHeight, colorSpace); in infoCallback()
|