-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gapis/gles: Fix FB requests stalling forever.
If you request a frame at a command that aborts, the DCE will remove that command from the execution list. The `readFramebuffer` transform then never sees the CmdID it's waiting for, and the request is never completed. Instead, change `readFramebuffer` to keep an ordered list of requests. If the next command is skipped, read the framebuffer at the next command instead.
- Loading branch information
1 parent
38ea2bc
commit 5a963da
Showing
3 changed files
with
54 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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