summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-02-14 04:12:46 +0100
committerSubv <subv2112@gmail.com>2018-02-15 04:57:54 +0100
commit8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a (patch)
treeccd2b68ceaf5cae472304344cca3ab156a512d14 /src/core/hle/service/nvdrv
parentMerge pull request #188 from bunnei/refactor-buffer-descriptor (diff)
downloadyuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.tar
yuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.tar.gz
yuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.tar.bz2
yuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.tar.lz
yuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.tar.xz
yuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.tar.zst
yuzu-8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a.zip
Diffstat (limited to 'src/core/hle/service/nvdrv')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h
index e44644624..6a55ff96d 100644
--- a/src/core/hle/service/nvdrv/nvdrv.h
+++ b/src/core/hle/service/nvdrv/nvdrv.h
@@ -17,6 +17,13 @@ namespace Devices {
class nvdevice;
}
+struct IoctlFence {
+ u32 id;
+ u32 value;
+};
+
+static_assert(sizeof(IoctlFence) == 8, "IoctlFence has wrong size");
+
class Module final {
public:
Module();