summaryrefslogtreecommitdiffstats
path: root/src/video_core/memory_manager.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-04-16 16:19:52 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-04-16 17:22:34 +0200
commit13d626fc217c4286a80071c5885eee2ab8795d62 (patch)
tree375697bccef4c12206b1eb8dfeb68e81e2378028 /src/video_core/memory_manager.h
parentDocument unsafe versions and add BlockCopyUnsafe (diff)
downloadyuzu-13d626fc217c4286a80071c5885eee2ab8795d62.tar
yuzu-13d626fc217c4286a80071c5885eee2ab8795d62.tar.gz
yuzu-13d626fc217c4286a80071c5885eee2ab8795d62.tar.bz2
yuzu-13d626fc217c4286a80071c5885eee2ab8795d62.tar.lz
yuzu-13d626fc217c4286a80071c5885eee2ab8795d62.tar.xz
yuzu-13d626fc217c4286a80071c5885eee2ab8795d62.tar.zst
yuzu-13d626fc217c4286a80071c5885eee2ab8795d62.zip
Diffstat (limited to 'src/video_core/memory_manager.h')
-rw-r--r--src/video_core/memory_manager.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h
index 084d834c8..017b051cf 100644
--- a/src/video_core/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -65,7 +65,6 @@ public:
u8* GetPointer(GPUVAddr addr);
const u8* GetPointer(GPUVAddr addr) const;
-
/*
* ReadBlock and WriteBlock are full read and write operations over virtual
* GPU Memory. It's important to use these when GPU memory may not be continous
@@ -90,7 +89,6 @@ public:
void WriteBlockUnsafe(GPUVAddr dest_addr, const void* src_buffer, const std::size_t size);
void CopyBlockUnsafe(GPUVAddr dest_addr, GPUVAddr src_addr, const std::size_t size);
-
private:
using VMAMap = std::map<GPUVAddr, VirtualMemoryArea>;
using VMAHandle = VMAMap::const_iterator;