Skip to content
Snippets Groups Projects
Unverified Commit 5b6571c1 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #2453 from lioncash/enum

core/memory: Remove unused FlushMode enum
parents c27b81cb 495a8d8d
No related branches found
No related tags found
No related merge requests found
...@@ -72,15 +72,6 @@ u8* GetPointer(VAddr vaddr); ...@@ -72,15 +72,6 @@ u8* GetPointer(VAddr vaddr);
std::string ReadCString(VAddr vaddr, std::size_t max_length); 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. * Mark each page touching the region as cached.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment