Fix last query not closed in profiler

This commit is contained in:
Riccardo Balbo 2020-04-10 22:52:19 +02:00 committed by Stephen Gold
parent 0bdb0159be
commit 6d2ea28108

@ -38,6 +38,7 @@ public class DetailedProfiler implements AppProfiler {
@Override
public void appStep(AppStep step) {
curAppPath = step.name();
if (step == AppStep.BeginFrame) {
@ -102,7 +103,10 @@ public class DetailedProfiler implements AppProfiler {
private void closeFrame() {
//close frame
if (data != null) {
if (ongoingGpuProfiling && renderer != null) {
renderer.stopProfiling();
ongoingGpuProfiling = false;
}
prevPath = null;
for (StatLine statLine : data.values()) {