remove load_and_get_signal
, rename timeline
to load_signal_and_get_timeline
This commit is contained in:
parent
aeb95b982f
commit
d3cc0eb860
7 changed files with 15 additions and 65 deletions
|
@ -33,12 +33,8 @@ pub async fn get_time_table() -> wellen::TimeTable {
|
|||
platform::get_time_table().await
|
||||
}
|
||||
|
||||
pub async fn load_and_get_signal(signal_ref: wellen::SignalRef) -> wellen::Signal {
|
||||
platform::load_and_get_signal(signal_ref).await
|
||||
}
|
||||
|
||||
pub async fn timeline(signal_ref: wellen::SignalRef, screen_width: u32, block_height: u32) -> shared::Timeline {
|
||||
platform::timeline(signal_ref, screen_width, block_height).await
|
||||
pub async fn load_signal_and_get_timeline(signal_ref: wellen::SignalRef, screen_width: u32, block_height: u32) -> shared::Timeline {
|
||||
platform::load_signal_and_get_timeline(signal_ref, screen_width, block_height).await
|
||||
}
|
||||
|
||||
pub async fn unload_signal(signal_ref: wellen::SignalRef) {
|
||||
|
|
Reference in a new issue