Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upMake requestAnimationFrame callback execution easier to reason about #17423
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#17398 works around a problem where our short-circuiting layout behaviour gets in the way of our animation callbacks. When layout does not run, it does not generate a frame for the compositor, so the compositor code does not have a chance schedule further animation callbacks. The solution in that PR is to force a real layout to occur in this case, which is self-contained but not great. I see two possible alternatives: