mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-06 13:04:57 +00:00
17 lines
312 B
C#
17 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;
|
|
}
|
|
}
|