aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Profiler/TimingFlag.cs
blob: 0cf55bdf3264a9cce2a9d732420b2ab3f3f9e702 (plain) (blame)
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;
    }
}