audionimbus 0.13.0

A safe wrapper around Steam Audio that provides spatial audio capabilities with realistic occlusion, reverb, and HRTF effects, accounting for physical attributes and scene geometry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Audio simulation compute devices and backends.

pub mod open_cl;
pub use open_cl::{OpenClDevice, OpenClDeviceList, OpenClDeviceSettings, OpenClDeviceType};

pub mod radeon_rays;
pub use radeon_rays::RadeonRaysDevice;

pub mod embree;
pub use embree::EmbreeDevice;

pub mod true_audio_next;
pub use true_audio_next::TrueAudioNextDevice;