Merge "Defer creation of input sink surface until sync completes" into tm-qpr-dev

This commit is contained in:
Riddle Hsu
2022-12-06 12:04:29 +00:00
committed by Android (Google) Code Review

View File

@@ -7447,8 +7447,10 @@ final class ActivityRecord extends WindowToken implements WindowManagerService.A
} else if (!show && mLastSurfaceShowing) {
getSyncTransaction().hide(mSurfaceControl);
}
if (show) {
mActivityRecordInputSink.applyChangesToSurfaceIfChanged(getSyncTransaction());
// Input sink surface is not a part of animation, so just apply in a steady state
// (non-sync) with pending transaction.
if (show && mSyncState == SYNC_STATE_NONE) {
mActivityRecordInputSink.applyChangesToSurfaceIfChanged(getPendingTransaction());
}
}
if (mThumbnail != null) {