Add performance counter stats to status bar

This commit is contained in:
2023-02-22 23:00:22 +01:00
parent bf3a7fb606
commit 0692669550
3 changed files with 48 additions and 11 deletions

View File

@@ -67,11 +67,17 @@ Pane {
}
}
Label {
ColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
text: __controller.performance + ' FPS'
Label {
text: __controller.dmxFps + ' FPS'
}
Label {
text: __controller.computeMaxElapsed + "ms / " + __controller.dmxMaxElapsed + "ms"
}
}
Button {