Home
last modified time | relevance | path

Searched refs:origHeight (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkBitmapCache.cpp57 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()
DSkBitmapCache.h42 static SkBitmapCacheDesc Make(uint32_t genID, int origWidth, int origHeight);
/external/skia/src/codec/
DSkIcoCodec.cpp209 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()
DSkPngCodec.cpp839 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()