1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#![feature(in_band_lifetimes)]
#![feature(box_syntax)]
#![feature(box_patterns)]
macro_rules! x { ($x:ident) => { mod $x; pub use $x::*; } }
macro_rules! ix {
() => ( #[allow(unused_imports)] use crate::imports::*;)
}
#[macro_use] mod imports;
x![calc];
x![calc_envelope];
x![calc_keytrack];
x![calc_levels];
x![calc_lfo];
x![calc_modsources];
x![calc_mpe];
x![calc_pan];
x![calc_pitch];
x![calc_poly_aftertouch];
x![calc_route];
x![create];
x![do_noise];
x![do_osc];
x![do_ring];
x![drop];
x![filter];
x![filterblock];
x![gen_runtime];
x![get];
x![init];
x![init_attack];
x![init_modsource];
x![init_portasrc];
x![note_shift];
x![portamento];
x![process];
x![release];
x![runtime];
x![set_qfb];
x![state];
x![voice];
x![sync_from_qfb];
x![toggle];
x![toggle_filter];
x![toggle_fm];
x![toggle_osc];
x![toggle_solo];
x![voice_runtime];