All the looping, and ugen_auto_buffer, are overkills.
With the new Buffer syntax in ins, together with compile time checking that a Buffer(1) can only be instantiated with an int literal, this is not needed at all. At compile time, all the Buffers are in fact already known.
A more simpler compile time interface with Buffer unpacking would be much more ideal.
All the looping, and
ugen_auto_buffer
, are overkills.With the new
Buffer
syntax inins
, together with compile time checking that aBuffer(1)
can only be instantiated with anint
literal, this is not needed at all. At compile time, all theBuffers
are in fact already known.A more simpler compile time interface with
Buffer
unpacking would be much more ideal.