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