diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-19 23:56:15 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-19 23:56:15 -0400 |
commit | 9866c0f34c268a09ecaaa9a4361c1c267799358e (patch) | |
tree | d10bea3717c25105ced7457535412072d343686f /src/synth/math.rs | |
parent | 26e95364ad9073dd7cb571454cd52ae66f320a73 (diff) |
Starting work on proto decode
Diffstat (limited to 'src/synth/math.rs')
-rw-r--r-- | src/synth/math.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/synth/math.rs b/src/synth/math.rs index 66a86a0..91e58e3 100644 --- a/src/synth/math.rs +++ b/src/synth/math.rs @@ -1,5 +1,7 @@ use super::*; +use std::mem; +#[derive(Debug)] pub struct Add { pub terms: Vec<GenBox>, pub buf: SampleBuffer, @@ -18,8 +20,12 @@ impl Generator for Add { } &self.buf } + fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer { + mem::replace(&mut self.buf, buf) + } } +#[derive(Debug)] pub struct Mul { pub factors: Vec<GenBox>, pub buf: SampleBuffer, @@ -38,4 +44,7 @@ impl Generator for Mul { } &self.buf } + fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer { + mem::replace(&mut self.buf, buf) + } } |