summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-05-30 14:31:46 +0200
committerGitHub <noreply@github.com>2018-05-30 14:31:46 +0200
commit8df011a57fc393853bc94421dca1e5913e30a0c8 (patch)
tree56e96700d450fd7679efa7471454b05954b92044 /src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
parentMerge pull request #482 from Subv/r8 (diff)
parentgl_shader_decompiler: F2F_R instruction: Implement abs. (diff)
downloadyuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.gz
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.bz2
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.lz
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.xz
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.zst
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.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 aa9b5a14b..090261a60 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
@@ -134,7 +134,9 @@ private:
u32 NvOsGetConfigU32(const std::vector<u8>& input, std::vector<u8>& output);
- u32 IocCtrlEventWait(const std::vector<u8>& input, std::vector<u8>& output);
+ u32 IocCtrlEventWait(const std::vector<u8>& input, std::vector<u8>& output, bool is_async);
+
+ u32 IocCtrlEventRegister(const std::vector<u8>& input, std::vector<u8>& output);
};
} // namespace Service::Nvidia::Devices