aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Profiler/TimingFlag.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Profiler/TimingFlag.cs')
-rw-r--r--Ryujinx.Profiler/TimingFlag.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Ryujinx.Profiler/TimingFlag.cs b/Ryujinx.Profiler/TimingFlag.cs
new file mode 100644
index 00000000..7d7c715f
--- /dev/null
+++ b/Ryujinx.Profiler/TimingFlag.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Text;
+
+namespace Ryujinx.Profiler
+{
+ public enum TimingFlagType
+ {
+ FrameSwap = 0,
+ SystemFrame = 1,
+
+ // Update this for new flags
+ Count = 2,
+ }
+
+ public struct TimingFlag
+ {
+ public TimingFlagType FlagType;
+ public long Timestamp;
+ }
+}