Merge "Make sure updateSurface is called for rotation change" into tm-qpr-dev am: 0428d86493 am: 52842d5865

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

Change-Id: I6ecc0800b43df5dc52e01821f9d6862dcd427e63
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Riddle Hsu
2022-05-17 05:00:15 +00:00
committed by Automerger Merge Worker

View File

@@ -1777,7 +1777,7 @@ public final class ViewRootImpl implements ViewParent,
}
}
mForceNextWindowRelayout = forceNextWindowRelayout;
mForceNextWindowRelayout |= forceNextWindowRelayout;
mPendingAlwaysConsumeSystemBars = args.argi2 != 0;
mSyncSeqId = args.argi4 > mSyncSeqId ? args.argi4 : mSyncSeqId;
@@ -5238,6 +5238,9 @@ public final class ViewRootImpl implements ViewParent,
// the buffers may still have content in previous rotation. And the next draw may
// not update all regions, that causes some afterimages to flicker.
mUpdateSurfaceNeeded = true;
if (!mIsInTraversal) {
mForceNextWindowRelayout = true;
}
}
Configuration globalConfig = mergedConfiguration.getGlobalConfiguration();