aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-04-22 03:00:11 -0300
committerGitHub <noreply@github.com>2020-04-22 16:00:11 +1000
commit6bfe4715f05be10c73a788abd8727293a7eca77e (patch)
tree2cb319f53b0c4b846352a9836772c3eff4b1db1d /Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
parentc46edfab858051e4b800b2705df2c019c1d975cd (diff)
Initial conditional rendering support (#1012)
* Initial conditional rendering support * Properly reset state * Support conditional modes and skeleton a counter cache for future host conditional rendering * Address PR feedback
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs b/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
new file mode 100644
index 00000000..305747f8
--- /dev/null
+++ b/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
@@ -0,0 +1,14 @@
+namespace Ryujinx.Graphics.Gpu.Memory
+{
+ public class UnmapEventArgs
+ {
+ public ulong Address { get; }
+ public ulong Size { get; }
+
+ public UnmapEventArgs(ulong address, ulong size)
+ {
+ Address = address;
+ Size = size;
+ }
+ }
+}