Memory: move MarkRegionCached into class

This commit is contained in:
Weiyi Wang 2018-11-21 16:03:28 -05:00
parent 2582d64fb3
commit d18cda5a5d
3 changed files with 10 additions and 8 deletions

View file

@ -180,11 +180,6 @@ enum : VAddr {
extern std::array<u8, Memory::FCRAM_N3DS_SIZE> fcram;
/**
* Mark each page touching the region as cached.
*/
void RasterizerMarkRegionCached(PAddr start, u32 size, bool cached);
/**
* Flushes any externally cached rasterizer resources touching the given region.
*/
@ -258,6 +253,11 @@ public:
/// Gets offset in FCRAM from a pointer inside FCRAM range
u32 GetFCRAMOffset(u8* pointer);
/**
* Mark each page touching the region as cached.
*/
void RasterizerMarkRegionCached(PAddr start, u32 size, bool cached);
private:
template <typename T>
T Read(const VAddr vaddr);