aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvdrv
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-02-13 22:12:46 -0500
committerSubv <subv2112@gmail.com>2018-02-14 22:57:54 -0500
commit8dee5663b3b2ae5dd1b5a4b9eeacf030caa0de9a (patch)
treeccd2b68ceaf5cae472304344cca3ab156a512d14 /src/core/hle/service/nvdrv
parentdb873a232ca92191df89e7e5a13f254f3d58b966 (diff)
Vi: Properly write the BufferProducerFence object in the DequeueBuffer response parcel.
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();