aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/solaris.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename Alc to alcChris Robinson2019-07-281-302/+0
|
* Rename alMain.h to alcmain.hChris Robinson2019-07-281-1/+1
| | | | And move it and alu.h to Alc/.
* Use an optional for ConfigValueStrChris Robinson2019-06-301-5/+6
|
* Don't log the function or prefixChris Robinson2019-06-041-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.
* Specify the buffer size as itself instead of the period countChris Robinson2019-04-261-2/+3
| | | | | | | Certain backends don't need a buffer size to be a strict multiple of the period count, which allows a little more flexibility. The period/update size simply acts as the minimum request, which helps control CPU load by determining how often parameter and other pre-mixing updates are processed.
* Rename DevProbe enum namesChris Robinson2019-03-191-2/+2
|
* 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-77/+47
|
* Turn even more methods into member functionsChris Robinson2018-12-281-64/+63
|
* Use vectors instead of malloc'd buffersChris Robinson2018-12-271-15/+13
|
* Finish renaming backend struct fieldsChris Robinson2018-12-271-20/+20
|
* Get rid of the unnecessary STATIC_(UP)CAST macrosChris Robinson2018-12-271-5/+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 select()Chris Robinson2018-12-241-22/+15
|
* Use inline methods for the device format sizesChris Robinson2018-12-191-8/+7
|
* Remove the last remaining uses of althrd_tChris Robinson2018-11-261-12/+18
|
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-261-1/+1
|
* Rename some struct membersChris Robinson2018-11-261-5/+5
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-261-1/+1
|
* Avoid using ATOMIC_INITChris Robinson2018-11-261-8/+4
|
* Remove the atomic exchange macrosChris Robinson2018-11-191-1/+1
|
* Use a std::string for the device nameChris Robinson2018-11-181-2/+1
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-4/+4
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-1/+1
|
* Convert the Solaris backend factoryChris Robinson2018-11-151-34/+11
|
* 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/+3
|
* Convert the Solaris backend to C++Chris Robinson2018-11-121-0/+363