Merge yuzu-emu#12873

This commit is contained in:
yuzubot
2024-02-05 17:51:29 +00:00
parent b634e5f270
commit b0fedab4bb
7 changed files with 149 additions and 22 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);
}