Create or Get audio device singleton with default settings (44100, 2)
| 37 | |
| 38 | // Create or Get audio device singleton with default settings (44100, 2) |
| 39 | AudioDeviceManagerSingleton *AudioDeviceManagerSingleton::Instance() |
| 40 | { |
| 41 | return AudioDeviceManagerSingleton::Instance(44100, 2); |
| 42 | } |
| 43 | |
| 44 | // Create or Get an instance of the device manager singleton (with custom sample rate & channels) |
| 45 | AudioDeviceManagerSingleton *AudioDeviceManagerSingleton::Instance(int rate, int channels) |
nothing calls this directly
no test coverage detected