diff options
| author | 2024-02-01 12:42:11 +0100 | |
|---|---|---|
| committer | 2024-02-01 13:00:36 +0100 | |
| commit | f740d8b9be1b42dae9ac6d7311a55b0c34b5a8e1 (patch) | |
| tree | 9338fba6a364f7f0eafcfb949183df85b4e0cdad /src/video_core/host1x | |
| parent | Merge pull request #12870 from liamwhite/mac-ci (diff) | |
| download | yuzu-f740d8b9be1b42dae9ac6d7311a55b0c34b5a8e1.tar.gz yuzu-f740d8b9be1b42dae9ac6d7311a55b0c34b5a8e1.tar.xz yuzu-f740d8b9be1b42dae9ac6d7311a55b0c34b5a8e1.zip | |
MemoryManager: Reduce the page table size based on last big page address.
Diffstat (limited to 'src/video_core/host1x')
| -rw-r--r-- | src/video_core/host1x/host1x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/host1x/host1x.cpp b/src/video_core/host1x/host1x.cpp index c4c7a5883..e923bfa22 100644 --- a/src/video_core/host1x/host1x.cpp +++ b/src/video_core/host1x/host1x.cpp | |||
| @@ -10,7 +10,7 @@ namespace Host1x { | |||
| 10 | 10 | ||
| 11 | Host1x::Host1x(Core::System& system_) | 11 | Host1x::Host1x(Core::System& system_) |
| 12 | : system{system_}, syncpoint_manager{}, | 12 | : system{system_}, syncpoint_manager{}, |
| 13 | memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 12}, | 13 | memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 0, 12}, |
| 14 | allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} | 14 | allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} |
| 15 | 15 | ||
| 16 | Host1x::~Host1x() = default; | 16 | Host1x::~Host1x() = default; |