Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use new/delete for ALCcontext objects | Chris Robinson | 2018-11-18 | 1 | -16/+2 |
| | |||||
* | Store the listener directly in the context | Chris Robinson | 2018-11-17 | 1 | -34/+34 |
| | |||||
* | Move the vector and matrix declarations to a separate header | Chris Robinson | 2018-11-17 | 1 | -1/+1 |
| | |||||
* | Move the ALCcontext definition to its own header | Chris Robinson | 2018-11-17 | 1 | -1/+2 |
| | |||||
* | Don't pass the current thread to althrd_setname | Chris Robinson | 2018-11-17 | 1 | -2/+0 |
| | |||||
* | Put a lambda in the call_once call | Chris Robinson | 2018-11-16 | 1 | -1/+1 |
| | | | | | | | This optimizes better and avoids a visible symbol (templating to an anonymous lambda type will generate a unique anonymous instantiation, making inlining more likely, whereas passing a general function pointer/reference type will likely use or generate a publically available instance). | ||||
* | Remove unused altss types and methods | Chris Robinson | 2018-11-16 | 1 | -4/+0 |
| | |||||
* | Avoid using C-style TLS | Chris Robinson | 2018-11-16 | 1 | -20/+30 |
| | |||||
* | Use iterators instead of indexed loops | Chris Robinson | 2018-11-16 | 1 | -23/+22 |
| | |||||
* | Cleanup some syntax in alc.cpp | Chris Robinson | 2018-11-16 | 1 | -19/+13 |
| | |||||
* | Convert the PortAudio backend factory | Chris Robinson | 2018-11-15 | 1 | -4/+6 |
| | |||||
* | Convert the WinMM backend factory | Chris Robinson | 2018-11-15 | 1 | -2/+6 |
| | |||||
* | Convert the DSound backend factory | Chris Robinson | 2018-11-15 | 1 | -1/+6 |
| | |||||
* | Convert the QSA backend factory | Chris Robinson | 2018-11-15 | 1 | -1/+6 |
| | |||||
* | Convert the OSS backend factory | Chris Robinson | 2018-11-15 | 1 | -1/+6 |
| | |||||
* | Convert the SndIO backend factory | Chris Robinson | 2018-11-15 | 1 | -1/+6 |
| | |||||
* | Convert the Solaris backend factory | Chris Robinson | 2018-11-15 | 1 | -2/+6 |
| | |||||
* | Convert the SDL2 backend factory | Chris Robinson | 2018-11-15 | 1 | -2/+6 |
| | |||||
* | Convert the JACK backend factory | Chris Robinson | 2018-11-15 | 1 | -4/+7 |
| | |||||
* | Convert the Wave Writer backend factory | Chris Robinson | 2018-11-15 | 1 | -3/+6 |
| | |||||
* | Convert the OpenSL backend factory | Chris Robinson | 2018-11-15 | 1 | -0/+6 |
| | |||||
* | Convert the ALSA backend factory | Chris Robinson | 2018-11-15 | 1 | -0/+6 |
| | |||||
* | Convert the CoreAudio backend factory | Chris Robinson | 2018-11-15 | 1 | -0/+6 |
| | |||||
* | Convert the WASAPI backend factory | Chris Robinson | 2018-11-15 | 1 | -0/+6 |
| | |||||
* | Convert the PulseAudio backend factory | Chris Robinson | 2018-11-15 | 1 | -30/+7 |
| | |||||
* | Update the loopback backend | Chris Robinson | 2018-11-15 | 1 | -10/+5 |
| | |||||
* | Start a new backend factory API | Chris Robinson | 2018-11-15 | 1 | -25/+16 |
| | | | | | Using proper class inheritance. Be aware this breaks all backends except null (and loopback). They will be restored individually in due time. | ||||
* | Use std::isfinite from the cmath header | Chris Robinson | 2018-11-15 | 1 | -1/+1 |
| | |||||
* | Remove the unused al_string API | Chris Robinson | 2018-11-15 | 1 | -1/+0 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -17/+18 |
| | |||||
* | Pass a normal const char* to EnumerateHrtf | Chris Robinson | 2018-11-15 | 1 | -2/+2 |
| | |||||
* | Use std::string instead of al_string for enumerating | Chris Robinson | 2018-11-15 | 1 | -21/+14 |
| | |||||
* | Use std::pow and std::log2 | Chris Robinson | 2018-11-14 | 1 | -6/+6 |
| | |||||
* | Use C++ a bit more with alc.cpp | Chris Robinson | 2018-11-14 | 1 | -121/+89 |
| | |||||
* | Convert ALc.c to C++ | Chris Robinson | 2018-11-14 | 1 | -0/+4696 |