mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:38:33 +00:00
23 lines
393 B
C#
23 lines
393 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|