1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Merge pull request #242 from benvanik/patch-3

Fixing unbalanced tree pop in grouped GPU zones.
This commit is contained in:
Bartosz Taudul
2021-07-17 20:03:41 +02:00
committed by GitHub
+1 -1
View File
@@ -8312,6 +8312,7 @@ void View::DrawGpuInfoWindow()
{
DrawGpuInfoChildren<VectorAdapterPointer<GpuEvent>>( children, ztime );
}
ImGui::TreePop();
}
}
@@ -8533,7 +8534,6 @@ void View::DrawGpuInfoChildren( const V& children, int64_t ztime )
ImGui::NextColumn();
}
ImGui::EndColumns();
ImGui::TreePop();
}
}