1
0
Fork 0

Actually use the standalone backend aux buffers

This commit is contained in:
Robbert van der Helm 2023-02-23 22:20:21 +01:00
parent 952bb8c129
commit c6e0be341f
2 changed files with 4 additions and 0 deletions

View file

@ -381,6 +381,7 @@ impl Cpal {
.collect();
})
}
aux_input_buffers.push(aux_buffer);
}
let mut aux_output_storage: Vec<Vec<Vec<f32>>> = Vec::new();
@ -402,6 +403,7 @@ impl Cpal {
.collect();
})
}
aux_output_buffers.push(aux_buffer);
}
// TODO: MIDI input and output

View file

@ -74,6 +74,7 @@ impl<P: Plugin> Backend<P> for Dummy {
.collect();
})
}
aux_input_buffers.push(aux_buffer);
}
let mut aux_output_storage: Vec<Vec<Vec<f32>>> = Vec::new();
@ -95,6 +96,7 @@ impl<P: Plugin> Backend<P> for Dummy {
.collect();
})
}
aux_output_buffers.push(aux_buffer);
}
// This queue will never actually be used