summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-05-07 13:53:42 -0400
committerGravatar Lioncash2019-05-07 13:55:17 -0400
commit495a8d8d9536194e94348c0cc4d6698050d67421 (patch)
treeccb1861e924403e45bcea2b8bf96a10547de167d /src
parentloader/nso: Remove left-in debug pragma (diff)
downloadyuzu-495a8d8d9536194e94348c0cc4d6698050d67421.tar.gz
yuzu-495a8d8d9536194e94348c0cc4d6698050d67421.tar.xz
yuzu-495a8d8d9536194e94348c0cc4d6698050d67421.zip
core/memory: Remove unused FlushMode enum
Recent changes to memory-related code resulted in this being unused, so we can remove it.
Diffstat (limited to 'src')
-rw-r--r--src/core/memory.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index b9fa18b1d..04e2c5f1d 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -72,15 +72,6 @@ u8* GetPointer(VAddr vaddr);
72 72
73std::string ReadCString(VAddr vaddr, std::size_t max_length); 73std::string ReadCString(VAddr vaddr, std::size_t max_length);
74 74
75enum class FlushMode {
76 /// Write back modified surfaces to RAM
77 Flush,
78 /// Remove region from the cache
79 Invalidate,
80 /// Write back modified surfaces to RAM, and also remove them from the cache
81 FlushAndInvalidate,
82};
83
84/** 75/**
85 * Mark each page touching the region as cached. 76 * Mark each page touching the region as cached.
86 */ 77 */