mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-14 08:37:00 +02:00
- fix va-api not being used on freebsd small thingies dont affect a lot: - removes some pointer indirection (why save pointer to GMMU if its accesible via host1x) - use std::variant<> for decoder - miscelly vp9/v8/h264 opts Signed-off-by: lizzie <lizzie@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3878 Reviewed-by: crueter <crueter@eden-emu.dev> Reviewed-by: MaranBr <maranbr@eden-emu.dev>
48 lines
1.5 KiB
C++
48 lines
1.5 KiB
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "core/core.h"
|
|
#include "video_core/host1x/host1x.h"
|
|
#include "video_core/host1x/nvdec.h"
|
|
#include "video_core/host1x/vic.h"
|
|
|
|
namespace Tegra::Host1x {
|
|
|
|
Host1x::Host1x(Core::System& system_)
|
|
: system{system_}
|
|
, syncpoint_manager{}
|
|
, memory_manager(system.DeviceMemory())
|
|
, gmmu_manager{system, memory_manager, 32, 0, 12}
|
|
, allocator{1 << 12}
|
|
{}
|
|
|
|
Host1x::~Host1x() = default;
|
|
|
|
void Host1x::StartDevice(s32 fd, ChannelType type, u32 syncpt) {
|
|
switch (type) {
|
|
case ChannelType::NvDec:
|
|
#ifdef YUZU_LEGACY
|
|
std::call_once(nvdec_first_init, []() {std::this_thread::sleep_for(std::chrono::milliseconds{500});}); // HACK: For Astroneer
|
|
#endif
|
|
devices[fd] = std::make_unique<Tegra::Host1x::Nvdec>(*this, fd, syncpt);
|
|
break;
|
|
case ChannelType::VIC:
|
|
#ifdef YUZU_LEGACY
|
|
std::call_once(vic_first_init, []() {std::this_thread::sleep_for(std::chrono::milliseconds{500});}); // HACK: For Astroneer
|
|
#endif
|
|
devices[fd] = std::make_unique<Tegra::Host1x::Vic>(*this, fd, syncpt);
|
|
break;
|
|
default:
|
|
LOG_ERROR(HW_GPU, "Unimplemented host1x device {}", static_cast<u32>(type));
|
|
break;
|
|
}
|
|
}
|
|
|
|
void Host1x::StopDevice(s32 fd, ChannelType type) {
|
|
devices.erase(fd);
|
|
}
|
|
|
|
} // namespace Tegra::Host1x
|