WuhuIslandTesting/Library/PackageCache/com.unity.performance.profile-analyzer@1.1.1/Editor/ThreadFrameTime.cs
2025-01-07 02:06:59 +01:00

24 lines
553 B
C#

using System;
namespace UnityEditor.Performance.ProfileAnalyzer
{
[Serializable]
internal struct ThreadFrameTime : IComparable<ThreadFrameTime>
{
public int frameIndex;
public float ms;
public float msIdle;
public ThreadFrameTime(int index, float msTime, float msTimeIdle)
{
frameIndex = index;
ms = msTime;
msIdle = msTimeIdle;
}
public int CompareTo(ThreadFrameTime other)
{
return ms.CompareTo(other.ms);
}
}
}