Searched refs:decodingBitmap (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp305 SkBitmap decodingBitmap; local
306 if (decoder->decode(stream, &decodingBitmap, prefColorType, decodeMode)
311 int scaledWidth = decodingBitmap.width();
312 int scaledHeight = decodingBitmap.height();
377 const float sx = scaledWidth / float(decodingBitmap.width());
378 const float sy = scaledHeight / float(decodingBitmap.height());
380 // TODO: avoid copying when scaled size equals decodingBitmap size
381 SkColorType colorType = colorTypeForScaledOutput(decodingBitmap.colorType());
386 colorType, decodingBitmap.alphaType()));
403 canvas.drawBitmap(decodingBitmap, 0.
[all...]

Completed in 96 milliseconds