summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2020-11-24 06:40:23 +0100
committerChloe Marcec <dmarcecguzman@gmail.com>2020-11-24 06:40:23 +0100
commitab25d1fe9a7e3678b868855eecd402eec2efd1d6 (patch)
tree0807e2c296751459e259026ab8dd47f095725f28 /src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
parentFix warnings in core/frontend/input.h with [[maybe_unused]] (diff)
downloadyuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.tar
yuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.tar.gz
yuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.tar.bz2
yuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.tar.lz
yuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.tar.xz
yuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.tar.zst
yuzu-ab25d1fe9a7e3678b868855eecd402eec2efd1d6.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
index af8b3d9f1..b0c2caba5 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
@@ -23,7 +23,8 @@ nvhost_gpu::nvhost_gpu(Core::System& system, std::shared_ptr<nvmap> nvmap_dev,
nvhost_gpu::~nvhost_gpu() = default;
-NvResult nvhost_gpu::Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) {
+NvResult nvhost_gpu::Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
+ IoctlCtrl& ctrl) {
switch (command.group) {
case 0x0:
switch (command.cmd) {
@@ -75,7 +76,8 @@ NvResult nvhost_gpu::Ioctl1(Ioctl command, const std::vector<u8>& input, std::ve
};
NvResult nvhost_gpu::Ioctl2(Ioctl command, const std::vector<u8>& input,
- const std::vector<u8>& inline_input, std::vector<u8>& output) {
+ const std::vector<u8>& inline_input, std::vector<u8>& output,
+ IoctlCtrl& ctrl) {
switch (command.group) {
case 'H':
switch (command.cmd) {
@@ -89,7 +91,7 @@ NvResult nvhost_gpu::Ioctl2(Ioctl command, const std::vector<u8>& input,
}
NvResult nvhost_gpu::Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- std::vector<u8>& inline_output) {
+ std::vector<u8>& inline_output, IoctlCtrl& ctrl) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;
}