aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2023-08-14 15:53:24 +0400
committerIvan Molodetskikh <yalterz@gmail.com>2023-08-14 15:53:24 +0400
commitc65a4f162405d1b8c780925b723feeb481c87919 (patch)
treeba18ba0bcafc2bbf2c0014179679479325441fdb /src/main.rs
parent529a24cc14859890029ad20ba07a589f4b3bc559 (diff)
downloadniri-c65a4f162405d1b8c780925b723feeb481c87919.tar.gz
niri-c65a4f162405d1b8c780925b723feeb481c87919.tar.bz2
niri-c65a4f162405d1b8c780925b723feeb481c87919.zip
Add frame clock
Tracks the presentation time and allows querying the next presentation time.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 5da2cf5a..49a8598d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -4,11 +4,13 @@ extern crate tracing;
mod handlers;
mod backend;
+mod frame_clock;
mod grabs;
mod input;
mod layout;
mod niri;
mod tty;
+mod utils;
mod winit;
use std::env;