Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename Alc to alc | Chris Robinson | 2019-07-28 | 1 | -402/+0 |
| | |||||
* | Rename alMain.h to alcmain.h | Chris Robinson | 2019-07-28 | 1 | -1/+1 |
| | | | | And move it and alu.h to Alc/. | ||||
* | Clean up includes a bit | Chris Robinson | 2019-07-28 | 1 | -7/+15 |
| | | | | | | | Trying out the IWYU tool to only include what's necessary in a given file. Seems to work decently (it'll miss some headers, suggest unnecessary ones, and make nonsense suggestions for some things, but overall gives a good starting point), and helps clean out some headers. | ||||
* | Don't log the function or prefix | Chris Robinson | 2019-06-04 | 1 | -1/+0 |
| | | | | | | It's ultimately unnecessary since the message is an indicator about where it was logged from. The message itself is generally more important than where it was from, too. | ||||
* | Make sure the file is rewound before writing the wave header | Chris Robinson | 2019-03-19 | 1 | -6/+8 |
| | |||||
* | Rename DevProbe enum names | Chris Robinson | 2019-03-19 | 1 | -2/+2 |
| | |||||
* | Avoid using internal AL[u]int64 types | Chris Robinson | 2019-02-11 | 1 | -2/+2 |
| | |||||
* | Use c++ headers | Filip Gawin | 2019-01-09 | 1 | -3/+3 |
| | |||||
* | Use an atomic bool on things that only take true or false | Chris Robinson | 2018-12-30 | 1 | -3/+3 |
| | |||||
* | Rename BackendLock to StateLock | Chris Robinson | 2018-12-30 | 1 | -2/+0 |
| | |||||
* | Add missing includes for mem_fn | Chris Robinson | 2018-12-29 | 1 | -0/+1 |
| | |||||
* | Return a unique_ptr for the backend | Chris Robinson | 2018-12-29 | 1 | -2/+2 |
| | |||||
* | Make the backend type an enum class | Chris Robinson | 2018-12-29 | 1 | -4/+4 |
| | |||||
* | Convert the backends to use proper inheritence | Chris Robinson | 2018-12-28 | 1 | -95/+69 |
| | |||||
* | Turn even more methods into member functions | Chris Robinson | 2018-12-28 | 1 | -62/+65 |
| | |||||
* | Get rid of the unnecessary STATIC_(UP)CAST macros | Chris Robinson | 2018-12-27 | 1 | -5/+4 |
| | |||||
* | Use a proper constructor/destructor for the ALCbackend base | Chris Robinson | 2018-12-27 | 1 | -3/+3 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -1/+1 |
| | |||||
* | Use inline methods for the device format sizes | Chris Robinson | 2018-12-19 | 1 | -7/+6 |
| | |||||
* | Fix some MSVC conversion warnings | Chris Robinson | 2018-12-12 | 1 | -4/+4 |
| | |||||
* | Avoid using ATOMIC_LOAD on ALCdevice::Connected | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Rename some struct members | Chris Robinson | 2018-11-26 | 1 | -7/+7 |
| | |||||
* | Avoid using the ATOMIC() macro | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Avoid using ATOMIC_INIT | Chris Robinson | 2018-11-26 | 1 | -8/+3 |
| | |||||
* | Replace remaining uses of std::vector with al::vector | Chris Robinson | 2018-11-24 | 1 | -1/+1 |
| | | | | Which uses a custom allocator that uses our allocation functions. | ||||
* | Use an enum class for AmbiLayout/Norm settings | Chris Robinson | 2018-11-20 | 1 | -2/+2 |
| | |||||
* | Remove the atomic exchange macros | Chris Robinson | 2018-11-19 | 1 | -2/+1 |
| | |||||
* | Use a std::string for the device name | Chris Robinson | 2018-11-18 | 1 | -2/+1 |
| | |||||
* | Avoid more cases of an enum variable and type name clash | Chris Robinson | 2018-11-18 | 1 | -6/+6 |
| | |||||
* | Don't pass the current thread to althrd_setname | Chris Robinson | 2018-11-17 | 1 | -1/+1 |
| | |||||
* | Convert the Wave Writer backend factory | Chris Robinson | 2018-11-15 | 1 | -59/+32 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -1/+2 |
| | |||||
* | Use std::string instead of al_string for enumerating | Chris Robinson | 2018-11-15 | 1 | -3/+4 |
| | |||||
* | Avoid calling through the vtable in the backends | Chris Robinson | 2018-11-13 | 1 | -2/+2 |
| | |||||
* | Use a vector in the wave backend | Chris Robinson | 2018-11-11 | 1 | -30/+13 |
| | |||||
* | Use C++ threads in the null and wave backends | Chris Robinson | 2018-11-11 | 1 | -21/+21 |
| | |||||
* | Use standard timing methods for the null and wave backends | Chris Robinson | 2018-11-10 | 1 | -30/+31 |
| | |||||
* | Get rid of the last few al_fopen calls | Chris Robinson | 2018-11-10 | 1 | -6/+10 |
| | |||||
* | Add missing consttructor and destructor calls for the wave backend | Chris Robinson | 2018-11-09 | 1 | -0/+2 |
| | |||||
* | Convert the wave backend to C++ | Chris Robinson | 2018-11-09 | 1 | -0/+461 |