Merge yuzu-emu#12873

This commit is contained in:
yuzubot
2024-02-10 21:32:23 +00:00
parent ed59173a5c
commit 1817cedc87
9 changed files with 250 additions and 31 deletions

View File

@ -387,6 +387,14 @@ std::shared_ptr<Control::ChannelState> GPU::AllocateChannel() {
return impl->AllocateChannel();
}
Tegra::Control::Scheduler& GPU::Scheduler() {
return *impl->scheduler;
}
const Tegra::Control::Scheduler& GPU::Scheduler() const {
return *impl->scheduler;
}
void GPU::InitChannel(Control::ChannelState& to_init) {
impl->InitChannel(to_init);
}