summaryrefslogtreecommitdiffstats
path: root/src/video_core/dma_pusher.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-10-30 05:13:48 +0100
committerbunnei <bunneidev@gmail.com>2020-11-01 09:52:38 +0100
commitc6e1c46ac70bf31b54f756f9611b1cf086b63fb0 (patch)
treeedf5e2a33941aba44f11c5ed42b1d658cc6bf20e /src/video_core/dma_pusher.h
parentvideo_core: dma_pusher: Add support for prefetched command lists. (diff)
downloadyuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.tar
yuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.tar.gz
yuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.tar.bz2
yuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.tar.lz
yuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.tar.xz
yuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.tar.zst
yuzu-c6e1c46ac70bf31b54f756f9611b1cf086b63fb0.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/dma_pusher.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/dma_pusher.h b/src/video_core/dma_pusher.h
index 99b30ca0d..8496ba2da 100644
--- a/src/video_core/dma_pusher.h
+++ b/src/video_core/dma_pusher.h
@@ -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;
};