Render Profiler in GUI (#854)
* move profiler output to gui * addressed commits, rebased * removed whitespaces
This commit is contained in:
17
Ryujinx.Debugger/Profiler/TimingFlag.cs
Normal file
17
Ryujinx.Debugger/Profiler/TimingFlag.cs
Normal file
@ -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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user