[automerger] Fixing transaction regression. am: 9ebc88a381

Change-Id: I022eb058966e01788eb77606cf7e9fe3b0d6bbf5
This commit is contained in:
Android Build Merger (Role)
2018-05-03 17:57:45 +00:00
3 changed files with 3 additions and 1 deletions

View File

@@ -543,6 +543,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
t.deferTransactionUntil(target.leash, surface, getNextFrameNumber(surface));
}
}
t.setEarlyWakeup();
t.apply();
matrix.reset();
@@ -657,6 +658,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
t.setMatrix(app.leash, matrix);
}
}
t.setEarlyWakeup();
t.apply();
matrix.reset();

View File

@@ -167,6 +167,7 @@ public class ClipAnimationHelper {
|| app.activityType == RemoteAnimationTargetCompat.ACTIVITY_TYPE_HOME) {
transaction.setAlpha(app.leash, 1 - progress);
}
transaction.setEarlyWakeup();
mTaskTransformCallback.accept(transaction, app);
}

View File

@@ -60,6 +60,5 @@ public interface RemoteAnimationProvider {
t.setLayer(target.leash, layer);
t.show(target.leash);
}
t.setEarlyWakeup();
}
}