Add GPU Dispatch calls in GPU profiler draw calls collumn

This commit is contained in:
Wojtek Figat
2022-07-13 21:45:43 +02:00
parent c27a1ddb41
commit 89688f93e1

View File

@@ -355,7 +355,7 @@ namespace FlaxEditor.Windows.Profiler
row.Values[2] = (e.Time * 10000.0f) / 10000.0f;
// Draw Calls
row.Values[3] = e.Stats.DrawCalls;
row.Values[3] = e.Stats.DrawCalls + e.Stats.DispatchCalls;
// Triangles
row.Values[4] = e.Stats.Triangles;