aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/oss.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-261-1/+1
|
* Rename some struct membersChris Robinson2018-11-261-29/+29
|
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-241-7/+7
| | | | Which uses a custom allocator that uses our allocation functions.
* Return the ringbuffer data pointers as a pairChris Robinson2018-11-191-4/+3
|
* Use a std::string for the device nameChris Robinson2018-11-181-6/+2
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-7/+7
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-2/+2
|
* Convert the OSS backend factoryChris Robinson2018-11-151-77/+54
|
* Remove checks for functions that always existChris Robinson2018-11-151-10/+0
| | | | | They're part of C++11 and available on the testing systems. If some system has trouble, switching to proper C++ calls should fix it.
* Use a regular char* for the device's nameChris Robinson2018-11-151-2/+4
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-4/+4
|
* Use C++ more in the OSS backendChris Robinson2018-11-141-56/+49
|
* Use a C++ vector for enumerated OSS devicesChris Robinson2018-11-141-155/+146
|
* Use an anonymous namespace in the OSS backendChris Robinson2018-11-131-8/+12
|
* Convert the OSS backend to C++Chris Robinson2018-11-121-0/+875