diff options
| author | 2012-06-11 14:08:02 -0700 | |
|---|---|---|
| committer | 2012-06-11 14:52:32 -0700 | |
| commit | 60691ce1600cb79ec9bb9957eee29be7a6a5e5d2 (patch) | |
| tree | 644c7b8e65eab2cc4f74192bbd18a2d816118159 /cmds/bootanimation/BootAnimation.cpp | |
| parent | 0d8eba64b2ee2921915e0f6793ddd2d8f44e2428 (diff) | |
make the boot animation 32-bits to avoid banding
Bug: 6611693
Change-Id: Id31b711ea755c89240eaea26f6403a031cd939e4
Diffstat (limited to 'cmds/bootanimation/BootAnimation.cpp')
| -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 1d5f20766c06..225be9c46535 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; } |