Conversation
Member
|
I'm updated issue #5371 check it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Since #4634 browsers render with external begin-frame scheduling; in that mode
Chromiumcan handOnPainta frame that is still missing composited layers while the compositor rebuilds itself, and MTA uploaded that frame straight to the texture - the interface that was on screen disappeared for a moment and then came backAfter a real pause -> resume, the frame that has more to show is now the one that stays on screen: a frame that lost over half of its visible content, or has no visible content at all, is not uploaded; another frame is requested instead, and the complete one is used; the guard gives up after a second, so a page that really became empty is only delayed - never stuck on an old image
The resume path itself is untouched (
WasResized/Invalidate/SendExternalBeginFramefrom #5202 stay as they are), so this cannot regress #5154Closes #5371.
The code in the video from: #5371 (comment)
Before ->
2026-09-14.01-09-19.mp4
After ->
2026-09-14.01-26-04.mp4
Checklist