Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add EFX functions back to the router | Chris Robinson | 2022-06-18 | 1 | -69/+154 |
| | | | | | 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. | ||||
* | 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 | -9/+9 |
| | | | | | | | | | | 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 | -1/+35 |
| | |||||
* | Use a recursive_mutex for the router enumeration lock | Chris Robinson | 2020-09-05 | 1 | -38/+34 |
| | |||||
* | Fix up some more uses of [AL[C]]void | Chris Robinson | 2020-04-28 | 1 | -2/+2 |
| | |||||
* | Cleanup some router warnings | Chris Robinson | 2019-09-20 | 1 | -19/+19 |
| | |||||
* | Add and use custom string types and functions | Chris Robinson | 2019-09-16 | 1 | -1/+2 |
| | |||||
* | Fix an MSVC warning | Chris Robinson | 2018-12-12 | 1 | -1/+1 |
| | |||||
* | Add a missing include for array | Chris Robinson | 2018-10-30 | 1 | -0/+1 |
| | |||||
* | Clean up the router's PtrIntMap | Chris Robinson | 2018-10-30 | 1 | -36/+26 |
| | |||||
* | Use std::array instead of raw arrays | Chris Robinson | 2018-10-30 | 1 | -25/+19 |
| | |||||
* | Use std::vector instead of custom dynamic arrays | Chris Robinson | 2018-10-30 | 1 | -106/+105 |
| | |||||
* | Use C++ atomics and mutexes in the router | Chris Robinson | 2018-10-30 | 1 | -75/+67 |
| | |||||
* | Convert the router to C++ | Chris Robinson | 2018-10-30 | 1 | -0/+959 |