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

Commit 4fd5fe07 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix invalid shift of 32-bit value." into main

parents 9393e39c 3c837e24
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -326,7 +326,7 @@ enum AHardwareBuffer_UsageFlags {
     * COMPOSER_OVERLAY, the system will try to prioritize the buffer receiving
     * COMPOSER_OVERLAY, the system will try to prioritize the buffer receiving
     * an overlay plane & avoid caching it in intermediate composition buffers.
     * 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_0  = 1ULL << 28,
    AHARDWAREBUFFER_USAGE_VENDOR_1  = 1ULL << 29,
    AHARDWAREBUFFER_USAGE_VENDOR_1  = 1ULL << 29,