summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2020-11-15 00:09:11 +0100
committercomex <comexk@gmail.com>2020-12-07 00:24:33 +0100
commit716ae72aac03d35c6e0686ee4a9aeac7c9568fd2 (patch)
tree8b898cd98e04d2eb591a5e2a86695aa949e34292 /src/core/hle/service/nvdrv
parentMerge pull request #5143 from comex/xx-users-size (diff)
downloadyuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar
yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.gz
yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.bz2
yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.lz
yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.xz
yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.zst
yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.zip
Diffstat (limited to 'src/core/hle/service/nvdrv')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h33
1 files changed, 0 insertions, 33 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 ab152bf0e..d9f95ba58 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h
@@ -18,39 +18,6 @@ public:
explicit nvhost_nvdec_common(Core::System& system, std::shared_ptr<nvmap> nvmap_dev);
~nvhost_nvdec_common() override;
- /**
- * Handles an ioctl1 request.
- * @param command The ioctl command id.
- * @param input A buffer containing the input data for the ioctl.
- * @param output A buffer where the output data will be written to.
- * @returns The result code of the ioctl.
- */
- virtual NvResult Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- IoctlCtrl& ctrl) = 0;
-
- /**
- * Handles an ioctl2 request.
- * @param command The ioctl command id.
- * @param input A buffer containing the input data for the ioctl.
- * @param inline_input A buffer containing the input data for the ioctl which has been inlined.
- * @param output A buffer where the output data will be written to.
- * @returns The result code of the ioctl.
- */
- virtual NvResult Ioctl2(Ioctl command, const std::vector<u8>& input,
- const std::vector<u8>& inline_input, std::vector<u8>& output,
- IoctlCtrl& ctrl) = 0;
-
- /**
- * Handles an ioctl3 request.
- * @param command The ioctl command id.
- * @param input A buffer containing the input data for the ioctl.
- * @param output A buffer where the output data will be written to.
- * @param inline_output A buffer where the inlined output data will be written to.
- * @returns The result code of the ioctl.
- */
- virtual NvResult Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- std::vector<u8>& inline_output, IoctlCtrl& ctrl) = 0;
-
protected:
class BufferMap final {
public: