mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-08 12:15:25 +00:00
18 lines
312 B
C#
18 lines
312 B
C#
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;
|
|
}
|
|
}
|