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

Commit 87f3b91e authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "graphics common: fix AIDL BufferUsage calculation" into rvc-dev am:...

Merge "graphics common: fix AIDL BufferUsage calculation" into rvc-dev am: ab328a04 am: 0729a2ef

Change-Id: Id64516293bc9a3b9640b2bda96b5c320283616ad
parents 60a23d41 0729a2ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,5 +110,5 @@ enum BufferUsage {

    /** bits 32-47 must be zero and are reserved for future versions */
    /** bits 48-63 are reserved for vendor extensions */
    VENDOR_MASK_HI                     = 0xffff << 48,
    VENDOR_MASK_HI                     = (1L * 0xffff) << 48,
}