aboutsummaryrefslogtreecommitdiffstats
path: root/router/router.c
Commit message (Collapse)AuthorAgeFilesLines
* Convert the router to C++Chris Robinson2018-10-301-537/+0
|
* Simplify some statementsFilip Gawin2018-10-291-3/+3
|
* Avoid duplicate path searches in the routerChris Robinson2018-03-211-18/+39
| | | | | And avoid inadvertently increasing the priority of the system path over the executable's path, or either of them over the current working directory.
* Add methods to clean up althrd and altss dataChris Robinson2018-03-101-0/+4
|
* Trace a version for the routerChris Robinson2017-07-111-0/+3
|
* Add methods for thread-local contexts to the routerChris Robinson2017-07-071-0/+25
|
* Initialize ALC resources in the file they're used inChris Robinson2017-07-011-7/+2
|
* Use the al alloc functions instead of standardChris Robinson2017-07-011-6/+7
|
* Add tracing capabilities to the routerChris Robinson2017-06-301-4/+48
|
* Clear initial ALC version vars before querying itChris Robinson2017-06-291-1/+1
|
* Protect context switches with a lock in the routerChris Robinson2017-06-291-0/+3
|
* Protect device enumeration in the router with a mutexChris Robinson2017-06-291-0/+4
|
* Prepare the new driver in a local variableChris Robinson2017-06-291-11/+12
|
* Handle the ALC version for some extension capabilitiesChris Robinson2017-06-281-2/+10
| | | | Also fix some improper parenthesis.
* Properly clean up allocated memory at exitChris Robinson2017-06-281-2/+1
|
* Partially implement ALC functions in the routerChris Robinson2017-06-281-0/+2
|
* Add a ptr-to-int mapChris Robinson2017-06-281-0/+150
|
* Load driver dlls in the routerChris Robinson2017-06-281-3/+261
|
* Start a router DLLChris Robinson2017-06-281-0/+19
Experimental, Windows only. This is intended as an alternative to Creative's router DLL, fixing a few issues with it (falsely reporting extensions that aren't supported, not being able to query the ALC version without a device, and not being able to use ALC extension functions). When enabled OpenAL Soft's DLL is built as soft_oal.dll, while the router is OpenAL32.dll.