diff options
author | bunnei <bunneidev@gmail.com> | 2019-05-09 19:19:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 19:19:49 +0200 |
commit | 5b6571c1706a97ba3a440cc38495a1d99c4d236e (patch) | |
tree | 32664984fc3af2ee77cd9edb5b5a8e1553ddec8d /src/core/memory.h | |
parent | Merge pull request #2429 from FernandoS27/compute (diff) | |
parent | core/memory: Remove unused FlushMode enum (diff) | |
download | yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.gz yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.bz2 yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.lz yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.xz yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.tar.zst yuzu-5b6571c1706a97ba3a440cc38495a1d99c4d236e.zip |
Diffstat (limited to 'src/core/memory.h')
-rw-r--r-- | src/core/memory.h | 9 |
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); std::string ReadCString(VAddr vaddr, std::size_t max_length); -enum class FlushMode { - /// Write back modified surfaces to RAM - Flush, - /// Remove region from the cache - Invalidate, - /// Write back modified surfaces to RAM, and also remove them from the cache - FlushAndInvalidate, -}; - /** * Mark each page touching the region as cached. */ |