summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-10-27 06:04:13 +0100
committerbunnei <bunneidev@gmail.com>2020-11-01 09:52:37 +0100
commit66edfd61c67182761dacadf3c45011702b47c071 (patch)
treeb5e3b957d8225f2695c4ddbdfdaf95273c4e7f6e /src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
parenthle service: nvdrv: Update to instantiate SyncpointManager. (diff)
downloadyuzu-66edfd61c67182761dacadf3c45011702b47c071.tar
yuzu-66edfd61c67182761dacadf3c45011702b47c071.tar.gz
yuzu-66edfd61c67182761dacadf3c45011702b47c071.tar.bz2
yuzu-66edfd61c67182761dacadf3c45011702b47c071.tar.lz
yuzu-66edfd61c67182761dacadf3c45011702b47c071.tar.xz
yuzu-66edfd61c67182761dacadf3c45011702b47c071.tar.zst
yuzu-66edfd61c67182761dacadf3c45011702b47c071.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_ctrl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
index f7b04d9f1..24ad96cb9 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
@@ -14,7 +14,8 @@ namespace Service::Nvidia::Devices {
class nvhost_ctrl final : public nvdevice {
public:
- explicit nvhost_ctrl(Core::System& system, EventInterface& events_interface);
+ explicit nvhost_ctrl(Core::System& system, EventInterface& events_interface,
+ SyncpointManager& syncpoint_manager);
~nvhost_ctrl() override;
u32 ioctl(Ioctl command, const std::vector<u8>& input, const std::vector<u8>& input2,
@@ -145,6 +146,7 @@ private:
u32 IocCtrlClearEventWait(const std::vector<u8>& input, std::vector<u8>& output);
EventInterface& events_interface;
+ SyncpointManager& syncpoint_manager;
};
} // namespace Service::Nvidia::Devices