Unity.Profiling.LowLevel.Unsafe 中的结构体
/
将 Profiler 时间戳转换为纳秒的分数。
用于将使用 GetTimestamp 获取的 Profiler 时间戳值转换为纳秒。
using Unity.Profiling.LowLevel.Unsafe;
public class Example { public static long ElapsedNanoseconds(long startTimestamp) { long now = ProfilerUnsafeUtility.Timestamp; var conversionRatio = ProfilerUnsafeUtility.TimestampToNanosecondsConversionRatio; return (now - startTimestamp) * conversionRatio.Numerator / conversionRatio.Denominator; } }
Denominator | 时间戳到纳秒转换分数的分母。 |
Numerator | 时间戳到纳秒转换分数的分子。 |