Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add EFX functions back to the router | Chris Robinson | 2022-06-18 | 1 | -1/+39 |
| | | | | | They're necessary for proper exports whem building the router. And if there's ever a spec update that standardizes them, they'll be needed anyway. | ||||
* | Forward the DriverIface constructor's name | Chris Robinson | 2022-02-26 | 1 | -4/+6 |
| | |||||
* | Don't handle EFX functions in the router | Chris Robinson | 2022-02-26 | 1 | -34/+0 |
| | | | | | | Creative's wrapper driver doesn't handle them through alcGetProcAddress, at least with a null device. For this to work properly, they'd have to be loaded per-context instead of per-driver. | ||||
* | Work around a MinGW thread_local bug | Chris Robinson | 2021-12-20 | 1 | -0/+11 |
| | | | | | | | | | | MinGW-w64 generates bad code when accessing extern thread_local objects. Wrapper functions are used to ensure it only accesses them from the same place they're defined. This unfortunately adds a bit of overhead for what should be a relatively simple thing. These functions are inlined for non-MinGW targets, avoiding the overhead on non-affected targets. | ||||
* | Export EFX functions from the router | Chris Robinson | 2021-01-27 | 1 | -0/+34 |
| | |||||
* | Fix up some more uses of [AL[C]]void | Chris Robinson | 2020-04-28 | 1 | -5/+5 |
| | |||||
* | Remove the UNUSED macro | Chris Robinson | 2019-07-28 | 1 | -12/+0 |
| | |||||
* | Clean up the DriverIface in its destructor | Chris Robinson | 2018-10-30 | 1 | -2/+12 |
| | |||||
* | Remove an unnecessary include | Chris Robinson | 2018-10-30 | 1 | -1/+0 |
| | |||||
* | Clean up the router's PtrIntMap | Chris Robinson | 2018-10-30 | 1 | -25/+15 |
| | |||||
* | Use std::wstring in place of some fixed WCHAR arrays | Chris Robinson | 2018-10-30 | 1 | -101/+102 |
| | |||||
* | Use std::vector instead of custom dynamic arrays | Chris Robinson | 2018-10-30 | 1 | -2/+2 |
| | |||||
* | Use C++ atomics and mutexes in the router | Chris Robinson | 2018-10-30 | 1 | -6/+5 |
| | |||||
* | Add extern "C" for router.h | Chris Robinson | 2018-10-30 | 1 | -0/+8 |
| | |||||
* | Use a typedef to declare extern atomic variables | Chris Robinson | 2017-10-07 | 1 | -1/+2 |
| | | | | | Some systems use anonymous structs for atomic storage, and extern declarations need to have the same type as their non-extern definition. | ||||
* | Add methods for thread-local contexts to the router | Chris Robinson | 2017-07-07 | 1 | -0/+5 |
| | |||||
* | Flush the log file after writing | Chris Robinson | 2017-07-01 | 1 | -0/+9 |
| | |||||
* | Initialize ALC resources in the file they're used in | Chris Robinson | 2017-07-01 | 1 | -3/+1 |
| | |||||
* | Add tracing capabilities to the router | Chris Robinson | 2017-06-30 | 1 | -0/+25 |
| | |||||
* | Protect context switches with a lock in the router | Chris Robinson | 2017-06-29 | 1 | -0/+1 |
| | |||||
* | Protect device enumeration in the router with a mutex | Chris Robinson | 2017-06-29 | 1 | -0/+3 |
| | |||||
* | Handle the ALC version for some extension capabilities | Chris Robinson | 2017-06-28 | 1 | -0/+15 |
| | | | | Also fix some improper parenthesis. | ||||
* | Properly clean up allocated memory at exit | Chris Robinson | 2017-06-28 | 1 | -2/+1 |
| | |||||
* | Partially implement ALC functions in the router | Chris Robinson | 2017-06-28 | 1 | -0/+4 |
| | |||||
* | Add a ptr-to-int map | Chris Robinson | 2017-06-28 | 1 | -0/+18 |
| | |||||
* | Add forwarding for the AL functions | Chris Robinson | 2017-06-28 | 1 | -0/+4 |
| | |||||
* | Load driver dlls in the router | Chris Robinson | 2017-06-28 | 1 | -0/+115 |