diff options
| author | 2020-11-14 18:09:11 -0500 | |
|---|---|---|
| committer | 2020-12-06 18:24:33 -0500 | |
| commit | 716ae72aac03d35c6e0686ee4a9aeac7c9568fd2 (patch) | |
| tree | 8b898cd98e04d2eb591a5e2a86695aa949e34292 /src | |
| parent | Merge pull request #5143 from comex/xx-users-size (diff) | |
| download | yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.gz yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.tar.xz yuzu-716ae72aac03d35c6e0686ee4a9aeac7c9568fd2.zip | |
nvdrv: Remove useless re-declaration of pure virtual methods that were already declared in the superclass
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.h | 33 |
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: | |||
| 18 | explicit nvhost_nvdec_common(Core::System& system, std::shared_ptr<nvmap> nvmap_dev); | 18 | explicit nvhost_nvdec_common(Core::System& system, std::shared_ptr<nvmap> nvmap_dev); |
| 19 | ~nvhost_nvdec_common() override; | 19 | ~nvhost_nvdec_common() override; |
| 20 | 20 | ||
| 21 | /** | ||
| 22 | * Handles an ioctl1 request. | ||
| 23 | * @param command The ioctl command id. | ||
| 24 | * @param input A buffer containing the input data for the ioctl. | ||
| 25 | * @param output A buffer where the output data will be written to. | ||
| 26 | * @returns The result code of the ioctl. | ||
| 27 | */ | ||
| 28 | virtual NvResult Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output, | ||
| 29 | IoctlCtrl& ctrl) = 0; | ||
| 30 | |||
| 31 | /** | ||
| 32 | * Handles an ioctl2 request. | ||
| 33 | * @param command The ioctl command id. | ||
| 34 | * @param input A buffer containing the input data for the ioctl. | ||
| 35 | * @param inline_input A buffer containing the input data for the ioctl which has been inlined. | ||
| 36 | * @param output A buffer where the output data will be written to. | ||
| 37 | * @returns The result code of the ioctl. | ||
| 38 | */ | ||
| 39 | virtual NvResult Ioctl2(Ioctl command, const std::vector<u8>& input, | ||
| 40 | const std::vector<u8>& inline_input, std::vector<u8>& output, | ||
| 41 | IoctlCtrl& ctrl) = 0; | ||
| 42 | |||
| 43 | /** | ||
| 44 | * Handles an ioctl3 request. | ||
| 45 | * @param command The ioctl command id. | ||
| 46 | * @param input A buffer containing the input data for the ioctl. | ||
| 47 | * @param output A buffer where the output data will be written to. | ||
| 48 | * @param inline_output A buffer where the inlined output data will be written to. | ||
| 49 | * @returns The result code of the ioctl. | ||
| 50 | */ | ||
| 51 | virtual NvResult Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output, | ||
| 52 | std::vector<u8>& inline_output, IoctlCtrl& ctrl) = 0; | ||
| 53 | |||
| 54 | protected: | 21 | protected: |
| 55 | class BufferMap final { | 22 | class BufferMap final { |
| 56 | public: | 23 | public: |