mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-05 09:17:54 -05:00
MemoryManager: Reduce the page table size based on last big page address.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user