mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
wip: refactor pt.21: 48 errors
This commit is contained in:
parent
2188bccd63
commit
b8708d6b2d
15 changed files with 313 additions and 355 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use crate::*;
|
||||
|
||||
pub struct ArrangerAudio(pub Arc<RwLock<Arrangement>>);
|
||||
pub struct ArrangerAudio(pub Arc<RwLock<ArrangerModel>>);
|
||||
|
||||
impl Audio for ArrangerAudio {
|
||||
#[inline] fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
|
||||
|
|
@ -8,7 +8,7 @@ impl Audio for ArrangerAudio {
|
|||
}
|
||||
}
|
||||
|
||||
pub struct ArrangerRefAudio<'a>(pub &'a mut Arrangement);
|
||||
pub struct ArrangerRefAudio<'a>(pub &'a mut ArrangerModel);
|
||||
|
||||
impl<'a> Audio for ArrangerRefAudio<'a> {
|
||||
#[inline] fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue