This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

🚨 Fix lints

+1 -2
-1
src/video/encoding.rs
··· 1 1 use super::Video; 2 2 use crate::Timestamp; 3 - use crate::context::Context; 4 3 use crate::ui::{Log, Pretty}; 5 4 use crate::video::encoders::Encoder; 6 5 use crate::video::engine::{EngineControl, EngineController, EngineOutput};
+1 -1
src/video/engine.rs
··· 6 6 use measure_time::debug_time; 7 7 use std::sync::mpsc::SyncSender; 8 8 9 - pub type EngineController<C: Default> = dyn Fn(&Context<'_, C>) -> EngineControl; 9 + pub type EngineController<C> = dyn Fn(&Context<'_, C>) -> EngineControl; 10 10 11 11 /// What data is sent to the output by the rendering engine for each rendered frame 12 12 pub enum EngineOutput {