Implement FAudio backend (#6374)

This commit is contained in:
Oschowa 2019-10-24 21:26:29 +02:00 committed by Ivan
parent a32f979814
commit 06433d614a
15 changed files with 265 additions and 5 deletions

View file

@ -212,6 +212,9 @@ void fmt_class_string<audio_renderer>::format(std::string& out, u64 arg)
case audio_renderer::pulse: return "PulseAudio";
#endif
case audio_renderer::openal: return "OpenAL";
#ifdef HAVE_FAUDIO
case audio_renderer::faudio: return "FAudio";
#endif
}
return unknown;