summaryrefslogtreecommitdiff
path: root/src/synth/math.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-09-19 23:56:15 -0400
committerGraham Northup <grissess@nexusg.org>2017-09-19 23:56:15 -0400
commit9866c0f34c268a09ecaaa9a4361c1c267799358e (patch)
treed10bea3717c25105ced7457535412072d343686f /src/synth/math.rs
parent26e95364ad9073dd7cb571454cd52ae66f320a73 (diff)
Starting work on proto decode
Diffstat (limited to 'src/synth/math.rs')
-rw-r--r--src/synth/math.rs9
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)
+ }
}