summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-04 00:42:18 +0100
committerGitHub <noreply@github.com>2023-02-04 00:42:18 +0100
commit193b513bf544c5dab80d1a849ce62e59e872cd3a (patch)
tree665e83a9b6a747f25b30de50350abec1f68d110f /src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
parentMerge pull request #9713 from unfamiliarplace/master (diff)
parentfsp_srv: Copy HLE Read Buffer for OutputAccessLogToSdCard (diff)
downloadyuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar
yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.gz
yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.bz2
yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.lz
yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.xz
yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.zst
yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_vic.cpp')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_vic.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
index 73f97136e..b0ea402a7 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
@@ -15,7 +15,7 @@ nvhost_vic::nvhost_vic(Core::System& system_, NvCore::Container& core_)
nvhost_vic::~nvhost_vic() = default;
-NvResult nvhost_vic::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+NvResult nvhost_vic::Ioctl1(DeviceFD fd, Ioctl command, std::span<const u8> input,
std::vector<u8>& output) {
switch (command.group) {
case 0x0:
@@ -55,13 +55,13 @@ NvResult nvhost_vic::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& i
return NvResult::NotImplemented;
}
-NvResult nvhost_vic::Ioctl2(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
- const std::vector<u8>& inline_input, std::vector<u8>& output) {
+NvResult nvhost_vic::Ioctl2(DeviceFD fd, Ioctl command, std::span<const u8> input,
+ std::span<const u8> inline_input, std::vector<u8>& output) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;
}
-NvResult nvhost_vic::Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+NvResult nvhost_vic::Ioctl3(DeviceFD fd, Ioctl command, std::span<const u8> input,
std::vector<u8>& output, std::vector<u8>& inline_output) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;