Merge yuzu-emu#12579

This commit is contained in:
yuzubot
2024-01-13 01:00:46 +00:00
parent f7a3c135e2
commit fd9e7d6cb1
121 changed files with 2735 additions and 1378 deletions

View File

@ -9,9 +9,12 @@ namespace Tegra {
namespace Host1x {
Host1x::Host1x(Core::System& system_)
: system{system_}, syncpoint_manager{}, memory_manager{system, 32, 12},
: system{system_}, syncpoint_manager{},
memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 12},
allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {}
Host1x::~Host1x() = default;
} // namespace Host1x
} // namespace Tegra