diff options
| author | 2020-11-08 02:48:22 -0800 | |
|---|---|---|
| committer | 2020-11-08 02:48:22 -0800 | |
| commit | 7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4 (patch) | |
| tree | 01cf84386def2b3b52c23d95237b5c0c28f2bde8 /src/video_core/dma_pusher.h | |
| parent | Merge pull request #4908 from lioncash/fmt (diff) | |
| parent | video_core: dma_pusher: Remove integrity check on command lists. (diff) | |
| download | yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.gz yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.xz yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.zip | |
Merge pull request #4903 from bunnei/remove-gpu-integrity
video_core: dma_pusher: Remove integrity check on command lists.
Diffstat (limited to 'src/video_core/dma_pusher.h')
| -rw-r--r-- | src/video_core/dma_pusher.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/dma_pusher.h b/src/video_core/dma_pusher.h index 9d9a750d9..96ac267f7 100644 --- a/src/video_core/dma_pusher.h +++ b/src/video_core/dma_pusher.h | |||
| @@ -90,10 +90,7 @@ struct CommandList final { | |||
| 90 | explicit CommandList(std::vector<Tegra::CommandHeader>&& prefetch_command_list) | 90 | explicit CommandList(std::vector<Tegra::CommandHeader>&& prefetch_command_list) |
| 91 | : prefetch_command_list{std::move(prefetch_command_list)} {} | 91 | : prefetch_command_list{std::move(prefetch_command_list)} {} |
| 92 | 92 | ||
| 93 | void RefreshIntegrityChecks(GPU& gpu); | ||
| 94 | |||
| 95 | std::vector<Tegra::CommandListHeader> command_lists; | 93 | std::vector<Tegra::CommandListHeader> command_lists; |
| 96 | std::vector<u64> command_list_hashes; | ||
| 97 | std::vector<Tegra::CommandHeader> prefetch_command_list; | 94 | std::vector<Tegra::CommandHeader> prefetch_command_list; |
| 98 | }; | 95 | }; |
| 99 | 96 | ||