1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
using System; using System.Collections.Generic; using System.Drawing; using System.Text; 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; } }