summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_vic.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-12-25 20:13:07 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2022-12-29 00:46:53 +0100
commitf517f824167a6d01a65dcbb8662e4a071b5210bb (patch)
tree6a6bb7f953f18f5bca67e37f5e93b1df5fafdbec /src/core/hle/service/nvdrv/devices/nvhost_vic.h
parenthidbus: Use ReadBufferSpan (diff)
downloadyuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.tar
yuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.tar.gz
yuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.tar.bz2
yuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.tar.lz
yuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.tar.xz
yuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.tar.zst
yuzu-f517f824167a6d01a65dcbb8662e4a071b5210bb.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_vic.h')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_vic.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_vic.h b/src/core/hle/service/nvdrv/devices/nvhost_vic.h
index f164caafb..b5e350a83 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_vic.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_vic.h
@@ -12,12 +12,12 @@ public:
explicit nvhost_vic(Core::System& system_, NvCore::Container& core);
~nvhost_vic();
- NvResult Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+ NvResult Ioctl1(DeviceFD fd, Ioctl command, std::span<const u8> input,
std::vector<u8>& output) override;
- NvResult Ioctl2(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
- const std::vector<u8>& inline_input, std::vector<u8>& output) override;
- NvResult Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
- std::vector<u8>& output, std::vector<u8>& inline_output) override;
+ NvResult Ioctl2(DeviceFD fd, Ioctl command, std::span<const u8> input,
+ std::span<const u8> inline_input, std::vector<u8>& output) override;
+ NvResult Ioctl3(DeviceFD fd, Ioctl command, std::span<const u8> input, std::vector<u8>& output,
+ std::vector<u8>& inline_output) override;
void OnOpen(DeviceFD fd) override;
void OnClose(DeviceFD fd) override;