aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/null.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use c++ headersFilip Gawin2019-01-091-1/+1
|
* Use an atomic bool on things that only take true or falseChris Robinson2018-12-301-3/+3
|
* Add missing includes for mem_fnChris Robinson2018-12-291-0/+1
|
* Return a unique_ptr for the backendChris Robinson2018-12-291-2/+2
|
* Make the backend type an enum classChris Robinson2018-12-291-4/+4
|
* Convert the backends to use proper inheritenceChris Robinson2018-12-281-50/+26
|
* Turn more methods into member functionsChris Robinson2018-12-271-23/+20
|
* Get rid of the unnecessary STATIC_(UP)CAST macrosChris Robinson2018-12-271-7/+4
|
* Use a proper constructor/destructor for the ALCbackend baseChris Robinson2018-12-271-3/+3
|
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-1/+1
|
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-261-1/+1
|
* Rename some struct membersChris Robinson2018-11-261-7/+7
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-261-1/+1
|
* Avoid using ATOMIC_INITChris Robinson2018-11-261-3/+1
|
* Remove the atomic exchange macrosChris Robinson2018-11-191-2/+1
|
* Use a std::string for the device nameChris Robinson2018-11-181-2/+1
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-1/+1
|
* Simplify a couple checksChris Robinson2018-11-151-8/+2
|
* Start a new backend factory APIChris Robinson2018-11-151-55/+36
| | | | | Using proper class inheritance. Be aware this breaks all backends except null (and loopback). They will be restored individually in due time.
* Use a regular char* for the device's nameChris Robinson2018-11-151-1/+2
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-3/+5
|
* Use C++ threads in the null and wave backendsChris Robinson2018-11-111-13/+17
|
* Use standard timing methods for the null and wave backendsChris Robinson2018-11-101-27/+30
|
* Convert the null backend to C++Chris Robinson2018-11-091-0/+232