diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-12-24 18:20:02 +0100 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-01-18 21:12:30 -0500 |
| commit | 7a9d1ad2f873003e6aad637e8749b77b91247da3 (patch) | |
| tree | e167a5d5ad73dbd78dc4b5c165b12a1220a167f4 /src/video_core/host1x/host1x.cpp | |
| parent | 2f0418c10134b4c8e5ae47ace623b5db57c0435c (diff) | |
NVDRV: Implement sessions and initial implementation of SMMU
Diffstat (limited to 'src/video_core/host1x/host1x.cpp')
| -rw-r--r-- | src/video_core/host1x/host1x.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/host1x/host1x.cpp b/src/video_core/host1x/host1x.cpp index 7c317a85d..d05bcaf26 100644 --- a/src/video_core/host1x/host1x.cpp +++ b/src/video_core/host1x/host1x.cpp @@ -9,8 +9,7 @@ namespace Tegra { namespace Host1x { Host1x::Host1x(Core::System& system_) - : system{system_}, syncpoint_manager{}, memory_manager{system, 32, 12}, - allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} + : system{system_}, syncpoint_manager{}, memory_manager(system.DeviceMemory()) {} } // namespace Host1x |
