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

/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp443 SkBitmap decodingBitmap; local
444 if (!decodingBitmap.setInfo(bitmapInfo) ||
445 !decodingBitmap.tryAllocPixels(decodeAllocator, colorTable.get())) {
461 SkCodec::Result result = codec->getAndroidPixels(decodeInfo, decodingBitmap.getPixels(),
462 decodingBitmap.rowBytes(), &codecOptions);
515 const float sx = scaledWidth / float(decodingBitmap.width());
516 const float sy = scaledHeight / float(decodingBitmap.height());
526 SkColorType scaledColorType = colorTypeForScaledOutput(decodingBitmap.colorType());
548 canvas.drawBitmap(decodingBitmap, 0.0f, 0.0f, &paint);
550 outputBitmap.swap(decodingBitmap);
[all...]

Completed in 264 milliseconds