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

Commit f4beeb8d authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Enable early wakeup during transitions

We hit GL comp likely on some devices so we start composing
earlier to avoid jank.

Bug: 75985430
Change-Id: I94ff218c79fb512002a2fb7f8aa600d6662f269e
parent 9ae484b9
Loading
Loading
Loading
Loading
+766 B (117 KiB)

File changed.

No diff preview for this file type.

+3 −0
Original line number Diff line number Diff line
@@ -363,6 +363,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
                        t.show(target.leash);
                    }
                }
                t.setEarlyWakeup();
                t.apply();

                matrix.reset();
@@ -636,6 +637,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
                        t.show(target.leash);
                    }
                }
                t.setEarlyWakeup();
                t.apply();

                matrix.reset();
@@ -763,6 +765,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
                        t.show(app.leash);
                    }
                }
                t.setEarlyWakeup();
                t.apply();

                matrix.reset();
+1 −0
Original line number Diff line number Diff line
@@ -121,6 +121,7 @@ public class ClipAnimationHelper {
                transaction.show(app.leash);
            }
        }
        transaction.setEarlyWakeup();
        transaction.apply();
    }