diff options
author | bunnei <bunneidev@gmail.com> | 2016-12-17 19:13:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-17 19:13:33 -0500 |
commit | 4798b1d04d048f97b7913e0ea4ae47d7be261e2a (patch) | |
tree | e3bf2de7e4a87f4684528dbe25aecd1977c18e4e /src/core/memory.cpp | |
parent | 20b832cfc1cb7fca6dd59a4af2f2c95e3c5eaaab (diff) |
Revert "Memory: Always flush whole pages from surface cache"
Diffstat (limited to 'src/core/memory.cpp')
-rw-r--r-- | src/core/memory.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp index d058dc844..65e4bba85 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -357,24 +357,14 @@ void RasterizerMarkRegionCached(PAddr start, u32 size, int count_delta) { } } -static void RoundToPages(PAddr& start, u32& size) { - PAddr start_rounded_down = start & ~PAGE_MASK; - PAddr end_rounded_up = ((start + size) + PAGE_MASK) & ~PAGE_MASK; - - start = start_rounded_down; - size = end_rounded_up - start_rounded_down; -} - void RasterizerFlushRegion(PAddr start, u32 size) { if (VideoCore::g_renderer != nullptr) { - RoundToPages(start, size); VideoCore::g_renderer->Rasterizer()->FlushRegion(start, size); } } void RasterizerFlushAndInvalidateRegion(PAddr start, u32 size) { if (VideoCore::g_renderer != nullptr) { - RoundToPages(start, size); VideoCore::g_renderer->Rasterizer()->FlushAndInvalidateRegion(start, size); } } |