summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-12 01:04:46 +0100
committerbunnei <bunneidev@gmail.com>2020-12-29 01:33:48 +0100
commit0c81b83ca9bd773b4a769820459c6a4a01435f89 (patch)
treebb77d33d7db1898b58feb0d7304fc7c723bb5222 /src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
parenthle: kernel: service_thread: Add parameter for thread pool size. (diff)
downloadyuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.tar
yuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.tar.gz
yuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.tar.bz2
yuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.tar.lz
yuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.tar.xz
yuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.tar.zst
yuzu-0c81b83ca9bd773b4a769820459c6a4a01435f89.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
index eb7575e40..55a33b7e4 100644
--- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
+++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
@@ -20,13 +20,11 @@ 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,
- IoctlCtrl& ctrl) override;
+ NvResult Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override;
NvResult Ioctl2(Ioctl command, const std::vector<u8>& input,
- const std::vector<u8>& inline_input, std::vector<u8>& output,
- IoctlCtrl& ctrl) override;
+ const std::vector<u8>& inline_input, std::vector<u8>& output) override;
NvResult Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- std::vector<u8>& inline_output, IoctlCtrl& ctrl) override;
+ std::vector<u8>& inline_output) 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,