qt ui: sync fps with camera

old-commit-hash: 978d0c8964fb3cc0c3c1a9241b6c4bb1fdbad5c9
This commit is contained in:
Willem Melching
2021-01-19 14:56:56 +01:00
parent 749b4ab508
commit ffeee5c91b
+4
View File
@@ -251,6 +251,10 @@ void GLWindow::timerUpdate() {
if (ui_state.started != onroad) {
onroad = ui_state.started;
emit offroadTransition(!onroad);
// Change timeout to 0 when onroad, this will call timerUpdate continously.
// This puts visionIPC in charge of update frequency, reducing video latency
timer->start(onroad ? 0 : 1000 / UI_FREQ);
}
handle_display_state(&ui_state, false);