summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2019-05-09 13:19:49 -0400
committerGravatar GitHub2019-05-09 13:19:49 -0400
commit5b6571c1706a97ba3a440cc38495a1d99c4d236e (patch)
tree32664984fc3af2ee77cd9edb5b5a8e1553ddec8d /src
parentMerge pull request #2429 from FernandoS27/compute (diff)
parentcore/memory: Remove unused FlushMode enum (diff)
downloadyuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.gz
yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.xz
yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.zip
Merge pull request #2453 from lioncash/enum
core/memory: Remove unused FlushMode enum
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 */