alto
provides idiomatic Rust bindings for OpenAL 1.1
and extensions (including EFX).
```rust let alto = Alto::load_default()?;
for s in alto.enumerateoutputs() { println!("Found device: {}", s.tostr()?); }
let device = alto.open(None)?; // Opens the default audio device let context = device.new_context(None)?; // Creates a default context // The context automatically becomes the current one
// Configure listener context.setposition([1.0, 4.0, 5.0]); context.setvelocity([2.5, 0.0, 0.0]); context.set_orientation(([0.0, 0.0, 1.0], [0.0, 1.0, 0.0]));
let source = context.newstaticsource()?;
// Now you can load your samples and store them in a buffer with
// context.new_buffer(samples, frequency)
;
```