summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
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_nvdec_common.h
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_nvdec_common.h')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h b/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
index fe76100c8..5af26a26f 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
@@ -107,13 +107,13 @@ protected:
static_assert(sizeof(IoctlMapBuffer) == 0x0C, "IoctlMapBuffer is incorrect size");
/// Ioctl command implementations
- NvResult SetNVMAPfd(const std::vector<u8>& input);
- NvResult Submit(DeviceFD fd, const std::vector<u8>& input, std::vector<u8>& output);
- NvResult GetSyncpoint(const std::vector<u8>& input, std::vector<u8>& output);
- NvResult GetWaitbase(const std::vector<u8>& input, std::vector<u8>& output);
- NvResult MapBuffer(const std::vector<u8>& input, std::vector<u8>& output);
- NvResult UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& output);
- NvResult SetSubmitTimeout(const std::vector<u8>& input, std::vector<u8>& output);
+ NvResult SetNVMAPfd(std::span<const u8> input);
+ NvResult Submit(DeviceFD fd, std::span<const u8> input, std::vector<u8>& output);
+ NvResult GetSyncpoint(std::span<const u8> input, std::vector<u8>& output);
+ NvResult GetWaitbase(std::span<const u8> input, std::vector<u8>& output);
+ NvResult MapBuffer(std::span<const u8> input, std::vector<u8>& output);
+ NvResult UnmapBuffer(std::span<const u8> input, std::vector<u8>& output);
+ NvResult SetSubmitTimeout(std::span<const u8> input, std::vector<u8>& output);
Kernel::KEvent* QueryEvent(u32 event_id) override;