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