signal_to_timeline

This commit is contained in:
Martin Kavík 2024-06-06 22:45:20 +02:00
parent a37675b094
commit aeb95b982f
10 changed files with 92 additions and 21 deletions

View file

@ -91,7 +91,7 @@ pub(super) async fn load_and_get_signal(signal_ref: wellen::SignalRef) -> wellen
serde_json::from_value(serde_json::to_value(signal).unwrap_throw()).unwrap_throw()
}
pub(super) async fn timeline(signal_ref: wellen::SignalRef, screen_width: u32) -> shared::Timeline {
pub(super) async fn timeline(signal_ref: wellen::SignalRef, screen_width: u32, block_height: u32) -> shared::Timeline {
shared::Timeline { blocks: Vec::new() }
}