diff options
| author | Mathias Agopian <mathias@google.com> | 2012-06-11 14:08:02 -0700 |
|---|---|---|
| committer | Mathias Agopian <mathias@google.com> | 2012-06-11 14:52:32 -0700 |
| commit | 60691ce1600cb79ec9bb9957eee29be7a6a5e5d2 (patch) | |
| tree | 644c7b8e65eab2cc4f74192bbd18a2d816118159 | |
| parent | 0d8eba64b2ee2921915e0f6793ddd2d8f44e2428 (diff) | |
| download | frameworks_base-60691ce1600cb79ec9bb9957eee29be7a6a5e5d2.zip frameworks_base-60691ce1600cb79ec9bb9957eee29be7a6a5e5d2.tar.gz frameworks_base-60691ce1600cb79ec9bb9957eee29be7a6a5e5d2.tar.bz2 | |
make the boot animation 32-bits to avoid banding
Bug: 6611693
Change-Id: Id31b711ea755c89240eaea26f6403a031cd939e4
| -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; } |
