This website requires JavaScript.
Explore
Help
Register
Sign In
CCF_100
/
ryujinx
Watch
1
Star
1
Fork
0
You've already forked ryujinx
mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced
2025-01-16 04:40:05 -06:00
Code
Issues
Releases
Wiki
Activity
9ba73ffbe5
ryujinx
/
Ryujinx
/
Configuration
/
AudioBackend.cs
10 lines
140 B
C#
Raw
Normal View
History
Unescape
Escape
Implement audio backend configuration option (#1325) * Implement audio backend configuration option * Use OpenAL by default * Increment version number in config.json and add 30px to the height of the settings window * nits * capitalise audio backend names
2020-07-03 18:16:49 -05:00
namespace
Ryujinx.Configuration
{
public
enum
AudioBackend
{
Dummy
,
OpenAl
,
audio: Implement a SDL2 backend (#2258) * audio: Implement a SDL2 backend This adds support to SDL2 as an audio backend. It has the same compatibility level as OpenAL without its issues. I also took the liberty of restructuring the SDL2 code to have one shared project between audio and input. The configuration version was also incremented. * Address gdkchan's comments * Fix update logic * Add an heuristic to pick the correct target sample count wanted by the game * Address gdkchan's comments * Address Ac_k's comments * Fix audren output * Address gdkchan's comments
2021-05-05 16:37:09 -05:00
SoundIo
,
SDL2
Implement audio backend configuration option (#1325) * Implement audio backend configuration option * Use OpenAL by default * Increment version number in config.json and add 30px to the height of the settings window * nits * capitalise audio backend names
2020-07-03 18:16:49 -05:00
}
}
Reference in New Issue
Copy Permalink