summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-03-25 02:56:42 +0100
committerChloe Marcec <dmarcecguzman@gmail.com>2021-03-25 02:56:42 +0100
commit99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a (patch)
tree4f328dc45f0c8f8068ad4773bef43b66d803b12b /src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp
parentMerge pull request #6101 from ogniK5377/alloc-as-ex (diff)
downloadyuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.gz
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.bz2
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.lz
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.xz
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.zst
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp b/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp
index ecba1dba1..c8031970b 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec.cpp
@@ -16,7 +16,7 @@ nvhost_nvdec::nvhost_nvdec(Core::System& system, std::shared_ptr<nvmap> nvmap_de
: nvhost_nvdec_common(system, std::move(nvmap_dev), syncpoint_manager) {}
nvhost_nvdec::~nvhost_nvdec() = default;
-NvResult nvhost_nvdec::Ioctl1(Ioctl command, const std::vector<u8>& input,
+NvResult nvhost_nvdec::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
std::vector<u8>& output) {
switch (command.group) {
case 0x0:
@@ -57,16 +57,19 @@ NvResult nvhost_nvdec::Ioctl1(Ioctl command, const std::vector<u8>& input,
return NvResult::NotImplemented;
}
-NvResult nvhost_nvdec::Ioctl2(Ioctl command, const std::vector<u8>& input,
+NvResult nvhost_nvdec::Ioctl2(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
const std::vector<u8>& inline_input, std::vector<u8>& output) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;
}
-NvResult nvhost_nvdec::Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- std::vector<u8>& inline_output) {
+NvResult nvhost_nvdec::Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+ std::vector<u8>& output, std::vector<u8>& inline_output) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;
}
+void nvhost_nvdec::OnOpen(DeviceFD fd) {}
+void nvhost_nvdec::OnClose(DeviceFD fd) {}
+
} // namespace Service::Nvidia::Devices