From f740d8b9be1b42dae9ac6d7311a55b0c34b5a8e1 Mon Sep 17 00:00:00 2001 From: Fernando Sahmkow Date: Thu, 1 Feb 2024 12:42:11 +0100 Subject: MemoryManager: Reduce the page table size based on last big page address. --- src/video_core/host1x/host1x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/video_core/host1x') 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>(1 << 12)} {} Host1x::~Host1x() = default; -- cgit v1.2.3