summaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorBill Yi <byi@google.com>2016-02-17 18:50:14 +0100
committerBill Yi <byi@google.com>2016-02-17 18:50:14 +0100
commitdfe43869cbeaf03f0950cf483f419bd9626473a5 (patch)
tree0fc3ecad7f77e8a5778a7cab753853afeeb48a72 /minui
parentMerge "applypatch: Add libimgpatch.pc" (diff)
parentMerge "recovery: Fork a process for fuse when sideloading from SD card." (diff)
downloadandroid_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.tar
android_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.tar.gz
android_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.tar.bz2
android_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.tar.lz
android_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.tar.xz
android_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.tar.zst
android_bootable_recovery-dfe43869cbeaf03f0950cf483f419bd9626473a5.zip
Diffstat (limited to 'minui')
-rw-r--r--minui/graphics_fbdev.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/minui/graphics_fbdev.cpp b/minui/graphics_fbdev.cpp
index 997e9cac2..0788f7552 100644
--- a/minui/graphics_fbdev.cpp
+++ b/minui/graphics_fbdev.cpp
@@ -176,18 +176,6 @@ static GRSurface* fbdev_init(minui_backend* backend) {
static GRSurface* 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.