diff options
author | Graham Northup <grissess@nexusg.org> | 2017-10-07 02:14:17 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-10-07 02:14:17 -0400 |
commit | 255f0aa6de604e0bf9d37ba0ee5362ef3b9f235f (patch) | |
tree | e24314201b849746dd53f8060f48df81cd18853e /src/synth/mod.rs | |
parent | 22dd5bc5862e91330c8da0d5f141998cdbe546fb (diff) |
Graphics working
But in need of terrible refactoring.
Rust is beautiful sometimes. This is not one of those times.
Diffstat (limited to 'src/synth/mod.rs')
-rw-r--r-- | src/synth/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/mod.rs b/src/synth/mod.rs index d48577c..55268a7 100644 --- a/src/synth/mod.rs +++ b/src/synth/mod.rs @@ -172,7 +172,7 @@ impl Clone for SampleBuffer { } } -pub trait Generator : Debug { +pub trait Generator : Debug + Send { fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer; fn buffer(&self) -> &SampleBuffer; fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer; |