Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40cce130 authored by Andriy Naborskyy's avatar Andriy Naborskyy Committed by android-build-merger
Browse files

Revert "Byte swap to support BGRA in recovery mode"

am: a5d50822

* commit 'a5d50822':
  Revert "Byte swap to support BGRA in recovery mode"
parents 45eac58e a5d50822
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -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.