You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NodeBufferRef is a workaround around the fact that it is currently not possible, in safe stable Rust, to make a &mut [f32] into a &mut [&mut [f32]]. It would be cleaner if &mut [&mut [f32]] could be passed to a Gen's process function.
When stable, as_chunks_mut together with a lot of generics could be a solution. Currently, it is not encoded at compile time how many channels of input or output data a Gen expects.
The text was updated successfully, but these errors were encountered:
NodeBufferRef
is a workaround around the fact that it is currently not possible, in safe stable Rust, to make a&mut [f32]
into a&mut [&mut [f32]]
. It would be cleaner if&mut [&mut [f32]]
could be passed to aGen
's process function.When stable,
as_chunks_mut
together with a lot of generics could be a solution. Currently, it is not encoded at compile time how many channels of input or output data aGen
expects.The text was updated successfully, but these errors were encountered: