2022-06-29 19:27:49 -04:00
|
|
|
// SPDX-FileCopyrightText: 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2022-01-30 22:26:01 +01:00
|
|
|
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "video_core/host1x/host1x.h"
|
|
|
|
|
|
|
|
namespace Tegra {
|
|
|
|
|
|
|
|
namespace Host1x {
|
|
|
|
|
|
|
|
Host1x::Host1x(Core::System& system_)
|
2023-12-24 18:20:02 +01:00
|
|
|
: system{system_}, syncpoint_manager{}, memory_manager(system.DeviceMemory()) {}
|
2022-01-30 22:26:01 +01:00
|
|
|
|
|
|
|
} // namespace Host1x
|
|
|
|
|
|
|
|
} // namespace Tegra
|