I’m building a custom synth gui, using around 50 parameters or so. Is this a good use case for using several buffer indexes, one for each parameter, or are there any downsides from that? The other option would be sending all param values in a large array on a single buffer I suspect.

Sorry if it’s a stupid question but I haven’t seen any example using several indexes so it’s not completely clear to me when to use them.

I think it has the potential to be marginally more efficient to send them all at once, but it also depends on how you handle them on the audio side.

    5 days later