aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/ICounterEvent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/ICounterEvent.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/ICounterEvent.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.GAL/ICounterEvent.cs b/src/Ryujinx.Graphics.GAL/ICounterEvent.cs
new file mode 100644
index 00000000..13b15ae4
--- /dev/null
+++ b/src/Ryujinx.Graphics.GAL/ICounterEvent.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace Ryujinx.Graphics.GAL
+{
+ public interface ICounterEvent : IDisposable
+ {
+ bool Invalid { get; set; }
+
+ bool ReserveForHostAccess();
+
+ void Flush();
+ }
+}