summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeather Lee Wilson <hwilson@google.com>2014-11-15 17:41:54 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-15 17:41:54 +0100
commitf3958d07a3212306c7a1fdb1f1bb224ff5843b21 (patch)
tree9d86e3ed12162b6105442b31cb82d3cd5ae28e4d
parentam 82ca0ba8: am 92242c70: Merge "kill HAVE_FORKEXEC" (diff)
parentam de27d4cb: am e5879c36: Byte swap to support BGRA in recovery mode (diff)
downloadandroid_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.tar
android_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.tar.gz
android_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.tar.bz2
android_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.tar.lz
android_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.tar.xz
android_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.tar.zst
android_bootable_recovery-f3958d07a3212306c7a1fdb1f1bb224ff5843b21.zip
-rw-r--r--minui/graphics_fbdev.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/minui/graphics_fbdev.c b/minui/graphics_fbdev.c
index c0c1bcb1a..6df2726f5 100644
--- a/minui/graphics_fbdev.c
+++ b/minui/graphics_fbdev.c
@@ -179,6 +179,18 @@ static gr_surface fbdev_init(minui_backend* backend) {
static gr_surface fbdev_flip(minui_backend* backend __unused) {
if (double_buffered) {
+#if defined(RECOVERY_BGRA)
+ // In case of BGRA, do some byte swapping
+ unsigned int idx;
+ unsigned char tmp;
+ unsigned char* ucfb_vaddr = (unsigned char*)gr_draw->data;
+ for (idx = 0 ; idx < (gr_draw->height * gr_draw->row_bytes);
+ idx += 4) {
+ tmp = ucfb_vaddr[idx];
+ ucfb_vaddr[idx ] = ucfb_vaddr[idx + 2];
+ ucfb_vaddr[idx + 2] = tmp;
+ }
+#endif
// Change gr_draw to point to the buffer currently displayed,
// then flip the driver so we're displaying the other buffer
// instead.