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

Commit b03bafc7 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix invalid shift of 32-bit value." into main am: 4fd5fe07 am: 346a37f7

parents a3161dce 346a37f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ enum AHardwareBuffer_UsageFlags {
     * COMPOSER_OVERLAY, the system will try to prioritize the buffer receiving
     * an overlay plane & avoid caching it in intermediate composition buffers.
     */
    AHARDWAREBUFFER_USAGE_FRONT_BUFFER = 1UL << 32,
    AHARDWAREBUFFER_USAGE_FRONT_BUFFER = 1ULL << 32,

    AHARDWAREBUFFER_USAGE_VENDOR_0  = 1ULL << 28,
    AHARDWAREBUFFER_USAGE_VENDOR_1  = 1ULL << 29,