summaryrefslogtreecommitdiffstats
path: root/src/video_core/memory_manager.h
diff options
context:
space:
mode:
authorMerry <git@mary.rs>2023-01-25 11:12:04 +0100
committerMerry <git@mary.rs>2023-01-25 11:12:04 +0100
commitdc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9 (patch)
tree2a94cfcefb1dc507364ab76e0e4033059f905d34 /src/video_core/memory_manager.h
parentMerge pull request #9662 from abouvier/cmake-llvm (diff)
downloadyuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.tar
yuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.tar.gz
yuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.tar.bz2
yuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.tar.lz
yuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.tar.xz
yuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.tar.zst
yuzu-dc7ab4c5d6b54ee651ff6f0b7635a0fcf08c86b9.zip
Diffstat (limited to 'src/video_core/memory_manager.h')
-rw-r--r--src/video_core/memory_manager.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h
index 2936364f0..9ebfb6179 100644
--- a/src/video_core/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -141,7 +141,7 @@ private:
inline void MemoryOperation(GPUVAddr gpu_src_addr, std::size_t size, FuncMapped&& func_mapped,
FuncReserved&& func_reserved, FuncUnmapped&& func_unmapped) const;
- template <bool is_safe, bool use_fastmem>
+ template <bool is_safe>
void ReadBlockImpl(GPUVAddr gpu_src_addr, void* dest_buffer, std::size_t size,
VideoCommon::CacheType which) const;
@@ -215,7 +215,6 @@ private:
std::vector<u64> big_page_continous;
std::vector<std::pair<VAddr, std::size_t>> page_stash{};
- u8* fastmem_arena{};
constexpr static size_t continous_bits = 64;