mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 22:07:57 -05:00
video_core: dma_pusher: Add support for integrity checks.
- Log corrupted command lists, rather than crash.
This commit is contained in:
@ -91,7 +91,10 @@ struct CommandList final {
|
||||
explicit CommandList(std::vector<Tegra::CommandHeader>&& prefetch_command_list)
|
||||
: prefetch_command_list{std::move(prefetch_command_list)} {}
|
||||
|
||||
void RefreshIntegrityChecks(GPU& gpu);
|
||||
|
||||
std::vector<Tegra::CommandListHeader> command_lists;
|
||||
std::vector<u64> command_list_hashes;
|
||||
std::vector<Tegra::CommandHeader> prefetch_command_list;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user