aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Reduce some indentationChris Robinson2018-11-281-31/+26
|
* Avoid some explicit loopsChris Robinson2018-11-281-12/+17
|
* Avoid an unnecessary lambdaChris Robinson2018-11-281-3/+1
|
* Small cleanup for ~ALCcontext_structChris Robinson2018-11-272-18/+18
|
* Clean up the JACK backendChris Robinson2018-11-271-169/+186
|
* Add a unique_ptr alias for the ringbufferChris Robinson2018-11-271-0/+8
|
* Replace last uses of alsem_t with al::semaphoreChris Robinson2018-11-273-30/+16
|
* Make and use a semaphore classChris Robinson2018-11-274-8/+5
|
* Swap context references in the move assignmentChris Robinson2018-11-271-6/+1
|
* Remove althrd_yieldChris Robinson2018-11-263-4/+6
|
* Use a standard mutex for the remaining locksChris Robinson2018-11-261-7/+0
|
* Use a standard mutex for the source and effect slot locksChris Robinson2018-11-262-9/+4
|
* Use a standard mutex for the proplockChris Robinson2018-11-262-6/+3
|
* Use a standard mutex for the backend lockChris Robinson2018-11-261-24/+20
|
* Remove the last remaining uses of althrd_tChris Robinson2018-11-263-51/+67
|
* Remove althrd_t from WindowsChris Robinson2018-11-261-1/+0
|
* Replace some uses of althrd_t with std::threadChris Robinson2018-11-262-29/+35
|
* Get rid of the last ATOMIC macro usesChris Robinson2018-11-262-2/+2
|
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-2611-18/+17
|
* Use a unique_ptr for the QSA backend dataChris Robinson2018-11-261-53/+28
|
* Rename some struct membersChris Robinson2018-11-2613-383/+378
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-268-19/+19
|
* Avoid using ATOMIC_INITChris Robinson2018-11-269-92/+45
|
* Don't explicitly clear vector objects in the destructorChris Robinson2018-11-251-10/+6
|
* Automatically clean up filters and effects with their sublistsChris Robinson2018-11-251-10/+10
|
* Automatically clean up buffers with ther sublistChris Robinson2018-11-251-5/+5
|
* Clean up MixSourceChris Robinson2018-11-251-104/+93
|
* Avoid another DECL_TEMPLATE macroChris Robinson2018-11-255-31/+58
|
* Avoid a separate function to clean up effect slotsChris Robinson2018-11-251-1/+5
|
* Atuomatically clean up sources with its sublist's destructionChris Robinson2018-11-252-5/+15
|
* Properly initialize the sublists' freemaskChris Robinson2018-11-251-1/+1
|
* Move bs2b.h to a more appropriate placeChris Robinson2018-11-241-0/+90
|
* Use C++ methods a bit moreChris Robinson2018-11-242-21/+14
|
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-2411-57/+57
| | | | Which uses a custom allocator that uses our allocation functions.
* Avoid an extraneous booleanChris Robinson2018-11-241-9/+4
|
* Make GetContextRef return a ContextRefChris Robinson2018-11-242-6/+5
|
* Use a normal vector to store buffer dataChris Robinson2018-11-241-4/+4
|
* Use a unique_ptr while opening a deviceChris Robinson2018-11-231-21/+22
|
* Use RAII for device referencesChris Robinson2018-11-231-236/+232
|
* Make the context VoiceCount atomicChris Robinson2018-11-233-56/+50
|
* Restructure and clean up alu.cpp a bitChris Robinson2018-11-231-151/+166
|
* Avoid a couple explicit loopsChris Robinson2018-11-221-19/+18
|
* Make a DirectHrtfState constructor to try appeasing MSVCChris Robinson2018-11-221-2/+4
|
* Use proper time types for the device clock time and latencyChris Robinson2018-11-228-25/+25
|
* Use standard types for the device clock timesChris Robinson2018-11-224-11/+26
|
* Clean up the Chorus a littleChris Robinson2018-11-221-64/+53
|
* Use unique_ptr for DirectHrtfStateChris Robinson2018-11-224-8/+8
|
* Add and use a macro to define placement-new-only allocatorsChris Robinson2018-11-221-3/+1
| | | | | | This is for structs that utilize over-allocation, either flexible array members, or which store optional additional objects in the same allocation block.
* Clean up some unnecessary specifiersChris Robinson2018-11-224-20/+16
|
* Use unique_ptr for bs2bChris Robinson2018-11-223-9/+5
|