Files
FlaxEngine/Source/Editor/Windows/Profiler/GPU.cs
2024-08-17 00:10:03 +02:00

393 lines
13 KiB
C#

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
using System.Collections.Generic;
using FlaxEditor.GUI;
using FlaxEngine;
using FlaxEngine.GUI;
namespace FlaxEditor.Windows.Profiler
{
/// <summary>
/// The GPU performance profiling mode.
/// </summary>
/// <seealso cref="FlaxEditor.Windows.Profiler.ProfilerMode" />
internal sealed unsafe class GPU : ProfilerMode
{
private readonly SingleChart _drawTimeCPU;
private readonly SingleChart _drawTimeGPU;
private readonly Timeline _timeline;
private readonly Table _table;
private SamplesBuffer<ProfilerGPU.Event[]> _events;
private List<Timeline.Event> _timelineEventsCache;
private List<Row> _tableRowsCache;
public GPU()
: base("GPU")
{
// Layout
var mainPanel = new Panel(ScrollBars.None)
{
AnchorPreset = AnchorPresets.StretchAll,
Offsets = Margin.Zero,
Parent = this,
};
// Chart
_drawTimeCPU = new SingleChart
{
Title = "Draw (CPU)",
AnchorPreset = AnchorPresets.HorizontalStretchTop,
Offsets = Margin.Zero,
Height = SingleChart.DefaultHeight,
FormatSample = v => (Mathf.RoundToInt(v * 10.0f) / 10.0f) + " ms",
Parent = mainPanel,
};
_drawTimeCPU.SelectedSampleChanged += OnSelectedSampleChanged;
_drawTimeGPU = new SingleChart
{
Title = "Draw (GPU)",
AnchorPreset = AnchorPresets.HorizontalStretchTop,
Offsets = new Margin(0, 0, _drawTimeCPU.Height + 2, 0),
FormatSample = v => (Mathf.RoundToInt(v * 10.0f) / 10.0f) + " ms",
Parent = mainPanel,
};
_drawTimeGPU.SelectedSampleChanged += OnSelectedSampleChanged;
var panel = new Panel(ScrollBars.Vertical)
{
AnchorPreset = AnchorPresets.StretchAll,
Offsets = new Margin(0, 0, _drawTimeCPU.Height + _drawTimeGPU.Height + 4, 0),
Parent = mainPanel,
};
var layout = new VerticalPanel
{
AnchorPreset = AnchorPresets.HorizontalStretchTop,
Offsets = Margin.Zero,
IsScrollable = true,
Parent = panel,
};
// Timeline
_timeline = new Timeline
{
Height = 340,
Parent = layout,
};
// Table
var style = Style.Current;
var headerColor = style.LightBackground;
var textColor = style.Foreground;
_table = new Table
{
Columns = new[]
{
new ColumnDefinition
{
UseExpandCollapseMode = true,
CellAlignment = TextAlignment.Near,
Title = "Event",
TitleBackgroundColor = headerColor,
TitleColor = textColor,
},
new ColumnDefinition
{
Title = "Total",
TitleBackgroundColor = headerColor,
TitleColor = textColor,
FormatValue = (x) => ((float)x).ToString("0.0") + '%',
},
new ColumnDefinition
{
Title = "GPU ms",
TitleBackgroundColor = headerColor,
TitleColor = textColor,
FormatValue = (x) => ((float)x).ToString("0.000"),
},
new ColumnDefinition
{
Title = "Draw Calls",
TitleBackgroundColor = headerColor,
TitleColor = textColor,
FormatValue = FormatCountLong,
},
new ColumnDefinition
{
Title = "Triangles",
TitleBackgroundColor = headerColor,
TitleColor = textColor,
FormatValue = FormatCountLong,
},
new ColumnDefinition
{
Title = "Vertices",
TitleBackgroundColor = headerColor,
TitleColor = textColor,
FormatValue = FormatCountLong,
},
},
Parent = layout,
};
_table.Splits = new[]
{
0.5f,
0.1f,
0.1f,
0.1f,
0.1f,
0.1f,
};
}
private static string FormatCountLong(object x)
{
return ((long)x).ToString("###,###,###");
}
/// <inheritdoc />
public override void Clear()
{
_drawTimeCPU.Clear();
_drawTimeGPU.Clear();
_events?.Clear();
}
/// <inheritdoc />
public override void Update(ref SharedUpdateData sharedData)
{
// Gather GPU events
var data = sharedData.GetEventsGPU();
if (_events == null)
_events = new SamplesBuffer<ProfilerGPU.Event[]>();
_events.Add(data);
// Peek draw time
_drawTimeCPU.AddSample(sharedData.Stats.DrawCPUTimeMs);
_drawTimeGPU.AddSample(sharedData.Stats.DrawGPUTimeMs);
}
/// <inheritdoc />
public override void UpdateView(int selectedFrame, bool showOnlyLastUpdateEvents)
{
_drawTimeCPU.SelectedSampleIndex = selectedFrame;
_drawTimeGPU.SelectedSampleIndex = selectedFrame;
if (_events == null)
return;
if (_timelineEventsCache == null)
_timelineEventsCache = new List<Timeline.Event>();
if (_tableRowsCache == null)
_tableRowsCache = new List<Row>();
UpdateTimeline();
UpdateTable();
}
/// <inheritdoc />
public override void OnDestroy()
{
_timelineEventsCache?.Clear();
_tableRowsCache?.Clear();
base.OnDestroy();
}
private float AddEvent(float x, int maxDepth, int index, ProfilerGPU.Event[] events, ContainerControl parent)
{
ref ProfilerGPU.Event e = ref events[index];
double scale = 100.0;
float width = (float)(e.Time * scale);
string name = new string(e.Name);
Timeline.Event control;
if (_timelineEventsCache.Count != 0)
{
var last = _timelineEventsCache.Count - 1;
control = _timelineEventsCache[last];
_timelineEventsCache.RemoveAt(last);
}
else
{
control = new Timeline.Event();
}
control.Bounds = new Rectangle(x, e.Depth * Timeline.Event.DefaultHeight, width, Timeline.Event.DefaultHeight - 1);
control.Name = name;
control.TooltipText = string.Format("{0}, {1} ms", name, ((int)(e.Time * 10000.0) / 10000.0f));
control.Parent = parent;
// Spawn sub events
int childrenDepth = e.Depth + 1;
if (childrenDepth <= maxDepth)
{
// Count sub events total duration
double subEventsDuration = 0;
int tmpIndex = index;
while (++tmpIndex < events.Length)
{
int subDepth = events[tmpIndex].Depth;
if (subDepth <= e.Depth)
break;
if (subDepth == childrenDepth)
subEventsDuration += events[tmpIndex].Time;
}
// Skip if has no sub events
if (subEventsDuration > 0)
{
// Apply some offset to sub-events (center them within this event)
x += (float)((e.Time - subEventsDuration) * scale) * 0.5f;
while (++index < events.Length)
{
int subDepth = events[index].Depth;
if (subDepth <= e.Depth)
break;
if (subDepth == childrenDepth)
{
x += AddEvent(x, maxDepth, index, events, parent);
}
}
}
}
return width;
}
private void UpdateTimeline()
{
var container = _timeline.EventsContainer;
container.IsLayoutLocked = true;
int idx = 0;
while (container.Children.Count > idx)
{
var child = container.Children[idx];
if (child is Timeline.Event e)
{
_timelineEventsCache.Add(e);
child.Parent = null;
}
else
{
idx++;
}
}
container.LockChildrenRecursive();
_timeline.Height = UpdateTimelineInner();
container.UnlockChildrenRecursive();
container.PerformLayout();
}
private float UpdateTimelineInner()
{
if (_events.Count == 0)
return 0;
var data = _events.Get(_drawTimeCPU.SelectedSampleIndex);
if (data == null || data.Length == 0)
return 0;
var container = _timeline.EventsContainer;
var events = data;
// Check maximum depth
int maxDepth = 0;
for (int j = 0; j < events.Length; j++)
{
maxDepth = Mathf.Max(maxDepth, events[j].Depth);
}
// Add events
float x = 0;
for (int j = 0; j < events.Length; j++)
{
if (events[j].Depth == 0)
{
x += AddEvent(x, maxDepth, j, events, container);
}
}
return Timeline.Event.DefaultHeight * (maxDepth + 2);
}
private void UpdateTable()
{
_table.IsLayoutLocked = true;
RecycleTableRows(_table, _tableRowsCache);
UpdateTableInner();
_table.UnlockChildrenRecursive();
_table.PerformLayout();
}
private void UpdateTableInner()
{
if (_events.Count == 0)
return;
var data = _events.Get(_drawTimeCPU.SelectedSampleIndex);
if (data == null || data.Length == 0)
return;
float totalTimeMs = _drawTimeGPU.SelectedSample;
// Add rows
var rowColor2 = Style.Current.Background * 1.4f;
for (int i = 0; i < data.Length; i++)
{
var e = data[i];
string name = new string(e.Name);
Row row;
if (_tableRowsCache.Count != 0)
{
var last = _tableRowsCache.Count - 1;
row = _tableRowsCache[last];
_tableRowsCache.RemoveAt(last);
}
else
{
row = new Row
{
Values = new object[6],
BackgroundColors = new Color[6],
};
for (int k = 0; k < row.BackgroundColors.Length; k++)
row.BackgroundColors[k] = Color.Transparent;
}
{
// Event
row.Values[0] = name;
// Total (%)
float rowTimePerc = (float)(e.Time / totalTimeMs);
row.Values[1] = (int)(rowTimePerc * 1000.0f) / 10.0f;
row.BackgroundColors[1] = Color.Red.AlphaMultiplied(Mathf.Min(1, rowTimePerc) * 0.5f);
// GPU ms
row.Values[2] = (e.Time * 10000.0f) / 10000.0f;
// Draw Calls
row.Values[3] = e.Stats.DrawCalls + e.Stats.DispatchCalls;
// Triangles
row.Values[4] = e.Stats.Triangles;
// Vertices
row.Values[5] = e.Stats.Vertices;
}
row.Depth = e.Depth;
row.Width = _table.Width;
row.Visible = e.Depth < 3;
row.BackgroundColor = i % 2 == 0 ? rowColor2 : Color.Transparent;
row.Parent = _table;
}
}
}
}