Vixen
02b45cc4
csharp
public readonly record struct ProfileDelta

What 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 Key

    Which scope.

  • public ProfileEntry? Before

    What it cost in the baseline, or if it is new.

  • public ProfileEntry? After

    What it costs now, or if it has gone.

  • public string Name

    What the scope is called.

  • public double TotalDelta

    How much longer it takes now, in milliseconds. Negative is faster.

  • public int CallsDelta

    How many more times it ran.

  • public double? Ratio

    How much longer it takes, as a fraction of the baseline — or when there is no baseline to be a fraction of.

Methods (1)

Used by (5)

  • CaptureComparisonVixen.Editor.Profiler
  • CaptureTestsVixen.Editor.Profiler.Tests
  • ProfilerModelVixen.Editor.Profiler
  • ProfilerModelTestsVixen.Editor.Profiler.Tests
  • ProfilerViewVixen.Editor.Profiler