aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/dma_pusher.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-08 02:48:22 -0800
committerGitHub <noreply@github.com>2020-11-08 02:48:22 -0800
commit7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4 (patch)
tree01cf84386def2b3b52c23d95237b5c0c28f2bde8 /src/video_core/dma_pusher.h
parent9f5facc3aadcf1e06ae305b70bb2a2481122da6d (diff)
parentdc5396a4668b564b2d1f4488d10581dd67fc22db (diff)
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.h3
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 {
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;
};