Vixen
02b45cc4
csharp
public readonly record struct ProfileEntry

One scope name, and everything the capture recorded under it.

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 int Calls

    How many times it ran.

  • public double TotalMilliseconds

    How long, inclusive of everything nested inside it.

  • public double SelfMilliseconds

    How long with its children's time taken out.

  • public double MaximumMilliseconds

    The worst single call.

  • public string Name

    What the scope is called.

  • public double MeanMilliseconds

    The average call, in milliseconds.

Methods (1)

  • public ProfileEntry(ProfilingKey Key, int Calls, double TotalMilliseconds, double SelfMilliseconds, double MaximumMilliseconds)

    One scope name, and everything the capture recorded under it.

Used by (8)

  • CaptureComparisonVixen.Editor.Profiler
  • CaptureTestsVixen.Editor.Profiler.Tests
  • DiagnosticsPanelTestsVixen.Editor.App.Tests
  • EditorApplicationVixen.Editor.App
  • ProfileCaptureVixen.Editor.Profiler
  • ProfileDeltaVixen.Editor.Profiler
  • ProfileSummaryVixen.Editor.Profiler
  • ProfilerViewVixen.Editor.Profiler