Actually use the standalone backend aux buffers
This commit is contained in:
parent
952bb8c129
commit
c6e0be341f
|
@ -381,6 +381,7 @@ impl Cpal {
|
||||||
.collect();
|
.collect();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
aux_input_buffers.push(aux_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut aux_output_storage: Vec<Vec<Vec<f32>>> = Vec::new();
|
let mut aux_output_storage: Vec<Vec<Vec<f32>>> = Vec::new();
|
||||||
|
@ -402,6 +403,7 @@ impl Cpal {
|
||||||
.collect();
|
.collect();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
aux_output_buffers.push(aux_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: MIDI input and output
|
// TODO: MIDI input and output
|
||||||
|
|
|
@ -74,6 +74,7 @@ impl<P: Plugin> Backend<P> for Dummy {
|
||||||
.collect();
|
.collect();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
aux_input_buffers.push(aux_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut aux_output_storage: Vec<Vec<Vec<f32>>> = Vec::new();
|
let mut aux_output_storage: Vec<Vec<Vec<f32>>> = Vec::new();
|
||||||
|
@ -95,6 +96,7 @@ impl<P: Plugin> Backend<P> for Dummy {
|
||||||
.collect();
|
.collect();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
aux_output_buffers.push(aux_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This queue will never actually be used
|
// This queue will never actually be used
|
||||||
|
|
Loading…
Reference in a new issue