summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-26 06:48:57 +0100
committerGitHub <noreply@github.com>2020-11-26 06:48:57 +0100
commitebcee03b0c4e02a58eeee6152950e20ab2769283 (patch)
treea65975463e513253e4340b5b54807bfd15fe0b96 /src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
parentMerge pull request #5003 from jbeich/clang (diff)
parentnvservices: Reintroducee IoctlCtrl (diff)
downloadyuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.tar
yuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.tar.gz
yuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.tar.bz2
yuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.tar.lz
yuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.tar.xz
yuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.tar.zst
yuzu-ebcee03b0c4e02a58eeee6152950e20ab2769283.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvdisp_disp0.h')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
index 55a33b7e4..eb7575e40 100644
--- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
+++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
@@ -20,11 +20,13 @@ public:
explicit nvdisp_disp0(Core::System& system, std::shared_ptr<nvmap> nvmap_dev);
~nvdisp_disp0() override;
- NvResult Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override;
+ NvResult Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
+ IoctlCtrl& ctrl) override;
NvResult Ioctl2(Ioctl command, const std::vector<u8>& input,
- const std::vector<u8>& inline_input, std::vector<u8>& output) override;
+ const std::vector<u8>& inline_input, std::vector<u8>& output,
+ IoctlCtrl& ctrl) override;
NvResult Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- std::vector<u8>& inline_output) override;
+ std::vector<u8>& inline_output, IoctlCtrl& ctrl) override;
/// Performs a screen flip, drawing the buffer pointed to by the handle.
void flip(u32 buffer_handle, u32 offset, u32 format, u32 width, u32 height, u32 stride,