-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SDL_Audio support. Replace RtAudio with SDL2-Audio system. Requires at least SDL 2.24. * SDL Audio: Introduce <autoselect> device Add an "autoselect" device which uses whatever SDL Audio deems best. * SDL Audio: simply deviceId setup Previous patch introduced the autoselect device, which is always available. Use it if the GUI/Settings selected DeviceId is out of range. * SDL_Audio: remove always-false check * remove outdated comment in sdlInit() --------- Co-authored-by: luciusDXL <ldarkxl@gmail.com>
- Loading branch information
Showing
12 changed files
with
76 additions
and
12,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
file(GLOB_RECURSE SOURCES "*.cpp" "*.c") | ||
if(LINUX) | ||
# we use the system libraries on Linux | ||
list(REMOVE_ITEM SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/RtAudio.cpp") | ||
list(REMOVE_ITEM SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/RtMidi.cpp") | ||
endif() | ||
target_sources(tfe PRIVATE ${SOURCES}) |
Oops, something went wrong.