diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-06 10:25:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 10:25:03 -0500 |
commit | c10e720ba9cb979577b3af53adb1347f13ec4ad5 (patch) | |
tree | 45094c231d85f9ab51ffe8299cf893affb4e7be8 /src/video_core/host1x | |
parent | 5016de3626c771ee51f4ced0b3d7610bd6a2140e (diff) | |
parent | f740d8b9be1b42dae9ac6d7311a55b0c34b5a8e1 (diff) |
Merge pull request #12883 from FernandoS27/memory_manager_mem
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 { Host1x::Host1x(Core::System& system_) : system{system_}, syncpoint_manager{}, - memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 12}, + memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 0, 12}, allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} Host1x::~Host1x() = default; |