aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Debugger/Profiler/TimingFlag.cs
blob: 8a34ac99f308471669f189259ef571fd86bb76ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
}