mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
f2b9a9c2b0
* move profiler output to gui * addressed commits, rebased * removed whitespaces
18 lines
312 B
C#
18 lines
312 B
C#
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;
|
|
}
|
|
}
|