summaryrefslogtreecommitdiffstats
path: root/src/video_core/dma_pusher.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-08 11:48:22 +0100
committerGitHub <noreply@github.com>2020-11-08 11:48:22 +0100
commit7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4 (patch)
tree01cf84386def2b3b52c23d95237b5c0c28f2bde8 /src/video_core/dma_pusher.h
parentMerge pull request #4908 from lioncash/fmt (diff)
parentvideo_core: dma_pusher: Remove integrity check on command lists. (diff)
downloadyuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar
yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.gz
yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.bz2
yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.lz
yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.xz
yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.tar.zst
yuzu-7bf9f9ae49f173ecbdd18c20aa69a1a2c2e9c5f4.zip
Diffstat (limited to '')
-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;
};