diff options
author | Graham Northup <grissess@nexusg.org> | 2017-10-13 12:54:04 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-10-13 12:54:04 -0400 |
commit | 22cb7d7cbcacbfe3a7d3a2d454e6b8cf49ae989c (patch) | |
tree | 4d2d8cb2ce9c4441ce5cc525375665c44c31f9fb /src/main.rs | |
parent | 255f0aa6de604e0bf9d37ba0ee5362ef3b9f235f (diff) |
Added LUTs and ControlRate; improved parser
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index ad121e7..6aacda1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -20,6 +20,8 @@ use synfone::lang::*; use synfone::proto::*; use synfone::client::*; +const GFX: bool = false; + fn main() { let env = Environment::default(); @@ -72,7 +74,7 @@ fn main() { eprintln!("Audio stream started."); - { + let net_thread = { let client = client.clone(); let net_thread = thread::spawn(move || { let mut buffer: [u8; Command::SIZE] = [0u8; Command::SIZE]; @@ -91,13 +93,14 @@ fn main() { } } }); - } + net_thread + }; eprintln!("Network thread started."); //net_thread.join().expect("Network thread panicked"); - { + if GFX { let last_buffer = last_buffer.clone(); let mut events_loop = glutin::EventsLoop::new(); @@ -348,6 +351,8 @@ fn main() { //display.swap_buffers().expect("Failed to swap buffers"); } + } else { + net_thread.join().expect("Network thread panicked"); } eprintln!("Exiting."); |