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

Commit 39259e21 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "libui: set USAGE_HW_2D in getValid10UsageBits"

parents 0b267105 e8d3ba64
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;
    }();