diff options
| author | 2018-08-31 13:24:21 -0400 | |
|---|---|---|
| committer | 2018-08-31 13:24:21 -0400 | |
| commit | 42588493d5ad5d824fc557ac936e64e5e7fd7e44 (patch) | |
| tree | d06ab2b0bd2f426a8fb129cea437ed99e29ed5e9 /src/core/memory.h | |
| parent | Implement BC6H_UF16 & BC6H_SF16 (#1092) (diff) | |
| parent | gl_rasterizer_cache: Use accurate framebuffer setting for accurate copies. (diff) | |
| download | yuzu-42588493d5ad5d824fc557ac936e64e5e7fd7e44.tar.gz yuzu-42588493d5ad5d824fc557ac936e64e5e7fd7e44.tar.xz yuzu-42588493d5ad5d824fc557ac936e64e5e7fd7e44.zip | |
Merge pull request #1205 from bunnei/improve-rasterizer-cache-2
Various fixes and improvements to rasterizer cache 2: Electric Boogaloo
Diffstat (limited to 'src/core/memory.h')
| -rw-r--r-- | src/core/memory.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index b7fb3b9ed..f06e04a75 100644 --- a/src/core/memory.h +++ b/src/core/memory.h | |||
| @@ -11,7 +11,6 @@ | |||
| 11 | #include <boost/icl/interval_map.hpp> | 11 | #include <boost/icl/interval_map.hpp> |
| 12 | #include "common/common_types.h" | 12 | #include "common/common_types.h" |
| 13 | #include "core/memory_hook.h" | 13 | #include "core/memory_hook.h" |
| 14 | #include "video_core/memory_manager.h" | ||
| 15 | 14 | ||
| 16 | namespace Kernel { | 15 | namespace Kernel { |
| 17 | class Process; | 16 | class Process; |
| @@ -179,7 +178,7 @@ enum class FlushMode { | |||
| 179 | /** | 178 | /** |
| 180 | * Mark each page touching the region as cached. | 179 | * Mark each page touching the region as cached. |
| 181 | */ | 180 | */ |
| 182 | void RasterizerMarkRegionCached(Tegra::GPUVAddr gpu_addr, u64 size, bool cached); | 181 | void RasterizerMarkRegionCached(VAddr vaddr, u64 size, bool cached); |
| 183 | 182 | ||
| 184 | /** | 183 | /** |
| 185 | * Flushes and invalidates any externally cached rasterizer resources touching the given virtual | 184 | * Flushes and invalidates any externally cached rasterizer resources touching the given virtual |