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

Commit e1de3aca authored by Valerie Hau's avatar Valerie Hau Committed by Automerger Merge Worker
Browse files

Merge "Run transaction handling whenever you flush" into rvc-dev am:...

Merge "Run transaction handling whenever you flush" into rvc-dev am: 4b506ad1 am: f47c98ba am: 5066319b

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/11872256

Change-Id: I1a8f9089c5c52b8215d9bebb19a39c83939f134a
parents 569596d8 5066319b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2017,8 +2017,9 @@ bool SurfaceFlinger::handleMessageTransaction() {

    bool flushedATransaction = flushTransactionQueues();

    bool runHandleTransaction = transactionFlags &&
            ((transactionFlags != eTransactionFlushNeeded) || flushedATransaction);
    bool runHandleTransaction =
            (transactionFlags && (transactionFlags != eTransactionFlushNeeded)) ||
            flushedATransaction;

    if (runHandleTransaction) {
        handleTransaction(eTransactionMask);