diff options
author | Justin Ho <justinho@google.com> | 2012-06-12 12:45:46 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-06-12 12:45:46 -0700 |
commit | 11d536b38116e72a40829bd976f9f78f50d53d1a (patch) | |
tree | 6fb646a6ea6de65b0b62a4c8318410fd0dd8b0cd /cmds | |
parent | 2e1f18b9ba9af40d5e1f0874e091b8f487a2d50d (diff) | |
parent | ceb8067920043a430478be386c56c244355d4c9f (diff) | |
download | frameworks_base-11d536b38116e72a40829bd976f9f78f50d53d1a.zip frameworks_base-11d536b38116e72a40829bd976f9f78f50d53d1a.tar.gz frameworks_base-11d536b38116e72a40829bd976f9f78f50d53d1a.tar.bz2 |
am ceb80679: Merge "make the boot animation 32-bits to avoid banding" into jb-dev
* commit 'ceb8067920043a430478be386c56c244355d4c9f':
make the boot animation 32-bits to avoid banding
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/bootanimation/BootAnimation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp index 1d5f207..225be9c 100644 --- a/cmds/bootanimation/BootAnimation.cpp +++ b/cmds/bootanimation/BootAnimation.cpp @@ -160,7 +160,7 @@ status_t BootAnimation::initTexture(void* buffer, size_t len) codec->setDitherImage(false); if (codec) { codec->decode(&stream, &bitmap, - SkBitmap::kRGB_565_Config, + SkBitmap::kARGB_8888_Config, SkImageDecoder::kDecodePixels_Mode); delete codec; } |