byulparan / cl-collider

A SuperCollider client for CommonLisp
Other
222 stars 23 forks source link

buffer copy #58

Closed vrx closed 5 years ago

vrx commented 5 years ago

I found it very useful to add a copy-buffer function (way faster than getting and setting) something like that (defun copy-buffer (bufnum-src bufnum-dst start-dst start-src nframes) (apply #'send-message s (append (list "\b_gen" bufnum-dst "copy" start-dst bufnum-src start-src nframes))) (sync s) )

byulparan commented 5 years ago

ok! it looks useful. I will add this function(maybe function name will change)

byulparan commented 5 years ago

add buffer-copy.