summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-03-25 02:56:42 +0100
committerChloe Marcec <dmarcecguzman@gmail.com>2021-03-25 02:56:42 +0100
commit99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a (patch)
tree4f328dc45f0c8f8068ad4773bef43b66d803b12b /src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
parentMerge pull request #6101 from ogniK5377/alloc-as-ex (diff)
downloadyuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.gz
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.bz2
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.lz
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.xz
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.tar.zst
yuzu-99fdfa1fcdcdba6abcc04733dc2bacd92b285f0a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.h12
1 files changed, 8 insertions, 4 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..59c9b6101 100644
--- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
+++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.h
@@ -20,11 +20,15 @@ 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 Ioctl2(Ioctl command, const std::vector<u8>& input,
+ NvResult Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+ std::vector<u8>& output) override;
+ NvResult Ioctl2(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
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) override;
+ NvResult Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+ std::vector<u8>& output, std::vector<u8>& inline_output) override;
+
+ void OnOpen(DeviceFD fd) override;
+ void OnClose(DeviceFD fd) 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,