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

Commit e8d3ba64 authored by Chia-I Wu's avatar Chia-I Wu
Browse files

libui: set USAGE_HW_2D in getValid10UsageBits



Bug: 72703005
Test: Manual

Change-Id: I48e2c5651881fe6d3b809e978787ffc9a6de9fab
Signed-off-by: default avatarDmitry Shmidt <dimitrysh@google.com>
parent 246bd9b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -42,8 +42,8 @@ uint64_t getValid10UsageBits() {
        for (const auto bit : hardware::hidl_enum_iterator<BufferUsage>()) {
            bits = bits | bit;
        }
        // TODO(b/72323293): Remove this mask for EXTERNAL_DISP.
        bits = bits | (1 << 13);
        // TODO(b/72323293, b/72703005): Remove these additional bits
        bits = bits | (1 << 10) | (1 << 13);

        return bits;
    }();