fluffl 0.0.5

A cross-platform multimedia layer that exposes opengl,sockets,and audio utilities for desktop and browser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::{AudioDeviceCore, ConcreteSpecs};

cfg_if::cfg_if!{
    if #[cfg(target_os="linux")] {
        #[path ="./glutin_audio/glutin_alsa.rs"]
        mod glutin_audio_backend;
    }else if #[cfg(target_os="windows")] {
        #[path ="./glutin_audio/glutin_wasapi.rs"]
        mod glutin_audio_backend;
    }
}

pub use glutin_audio_backend::*;