csharp
public readonly record struct ProfileDeltaWhat changed between two captures, for one scope.
No guide page documents this yet — the page shows what the code says about itself.
Fields and properties (7)
public ProfilingKey KeyWhich scope.
public ProfileEntry? BeforeWhat it cost in the baseline, or if it is new.
public ProfileEntry? AfterWhat it costs now, or if it has gone.
public string NameWhat the scope is called.
public double TotalDeltaHow much longer it takes now, in milliseconds. Negative is faster.
public int CallsDeltaHow many more times it ran.
public double? RatioHow much longer it takes, as a fraction of the baseline — or when there is no baseline to be a fraction of.
Methods (1)
public ProfileDelta(ProfilingKey Key, ProfileEntry? Before, ProfileEntry? After)What changed between two captures, for one scope.
Used by (5)
- CaptureComparisonVixen.Editor.Profiler
- CaptureTestsVixen.Editor.Profiler.Tests
- ProfilerModelVixen.Editor.Profiler
- ProfilerModelTestsVixen.Editor.Profiler.Tests
- ProfilerViewVixen.Editor.Profiler