summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
diff options
context:
space:
mode:
authorFeng Chen <vonchenplus@gmail.com>2021-12-02 05:19:43 +0100
committerFeng Chen <vonchenplus@gmail.com>2021-12-02 05:48:42 +0100
commit2c47f8aa1886522898b5b3a73185b5662be3e9f3 (patch)
treebadff9fee7c63a693fd9da3c6fb2cfe34d2d9ed1 /src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
parentMerge pull request #7483 from zhaobot/tx-update-20211201022129 (diff)
downloadyuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.gz
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.bz2
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.lz
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.xz
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.zst
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h3
1 files changed, 2 insertions, 1 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 351625c17..e28c54df6 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
@@ -104,13 +104,14 @@ protected:
/// Ioctl command implementations
NvResult SetNVMAPfd(const std::vector<u8>& input);
- NvResult Submit(const std::vector<u8>& input, std::vector<u8>& output);
+ 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);
+ std::unordered_map<DeviceFD, u32> fd_to_id{};
s32_le nvmap_fd{};
u32_le submit_timeout{};
std::shared_ptr<nvmap> nvmap_dev;