From f2b9a9c2b0a3d7af3b56df9ae09db8a3b2d8506c Mon Sep 17 00:00:00 2001 From: emmauss Date: Thu, 6 Feb 2020 11:25:47 +0000 Subject: Render Profiler in GUI (#854) * move profiler output to gui * addressed commits, rebased * removed whitespaces --- Ryujinx.Debugger/Profiler/TimingFlag.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Ryujinx.Debugger/Profiler/TimingFlag.cs (limited to 'Ryujinx.Debugger/Profiler/TimingFlag.cs') diff --git a/Ryujinx.Debugger/Profiler/TimingFlag.cs b/Ryujinx.Debugger/Profiler/TimingFlag.cs new file mode 100644 index 00000000..8a34ac99 --- /dev/null +++ b/Ryujinx.Debugger/Profiler/TimingFlag.cs @@ -0,0 +1,17 @@ +namespace Ryujinx.Debugger.Profiler +{ + public enum TimingFlagType + { + FrameSwap = 0, + SystemFrame = 1, + + // Update this for new flags + Count = 2, + } + + public struct TimingFlag + { + public TimingFlagType FlagType; + public long Timestamp; + } +} -- cgit v1.2.3