Merge "Don't schedule SurfaceControl transaction if it is not valid" into tm-qpr-dev am: 34ffe6d58b
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/19338489 Change-Id: I2c2a258f6a3cbc1ba2e10e6f4f6e48a8ee2e0b5e Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
committed by
Automerger Merge Worker
commit
72a21cf33a
@@ -523,9 +523,10 @@ class ActivityLaunchAnimator(
|
||||
state: LaunchAnimator.State,
|
||||
linearProgress: Float,
|
||||
) {
|
||||
if (transactionApplierView.viewRootImpl == null) {
|
||||
// If the view root we synchronize with was detached, don't apply any transaction
|
||||
// (as [SyncRtSurfaceTransactionApplier.scheduleApply] would otherwise throw).
|
||||
if (transactionApplierView.viewRootImpl == null || !window.leash.isValid) {
|
||||
// Don't apply any transaction if the view root we synchronize with was detached or
|
||||
// if the SurfaceControl associated with [window] is not valid, as
|
||||
// [SyncRtSurfaceTransactionApplier.scheduleApply] would otherwise throw.
|
||||
return
|
||||
}
|
||||
|
||||
@@ -605,9 +606,10 @@ class ActivityLaunchAnimator(
|
||||
state: LaunchAnimator.State,
|
||||
linearProgress: Float
|
||||
) {
|
||||
if (transactionApplierView.viewRootImpl == null) {
|
||||
// If the view root we synchronize with was detached, don't apply any transaction
|
||||
// (as [SyncRtSurfaceTransactionApplier.scheduleApply] would otherwise throw).
|
||||
if (transactionApplierView.viewRootImpl == null || !navigationBar.leash.isValid) {
|
||||
// Don't apply any transaction if the view root we synchronize with was detached or
|
||||
// if the SurfaceControl associated with [navigationBar] is not valid, as
|
||||
// [SyncRtSurfaceTransactionApplier.scheduleApply] would otherwise throw.
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user