channel drag copy: initial impl

This commit is contained in:
yohannd1 2025-09-28 12:43:47 -03:00 committed by tildearrow
parent e6c98506d1
commit 1099c79ec8
3 changed files with 44 additions and 4 deletions

View file

@ -649,6 +649,7 @@ class DivEngine {
void exchangeWave(int one, int two);
void exchangeSample(int one, int two);
void copyChannel(int src, int dest);
void swapChannels(int src, int dest);
void stompChannel(int ch);
@ -1262,6 +1263,9 @@ class DivEngine {
// >=0: render specific sample
void renderSamplesP(int whichSample=-1);
// public copy channel
void copyChannelP(int src, int dest);
// public swap channels
void swapChannelsP(int src, int dest);