1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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; } }