aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Make and use a semaphore classChris Robinson2018-11-271-3/+0
* Remove althrd_yieldChris Robinson2018-11-261-2/+2
* 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-261-7/+2
* Use a standard mutex for the proplockChris Robinson2018-11-261-5/+2
* Use a standard mutex for the backend lockChris Robinson2018-11-261-24/+20
* Avoid using ATOMIC_INITChris Robinson2018-11-261-2/+2
* 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
* 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-251-5/+5
* Use C++ methods a bit moreChris Robinson2018-11-241-8/+6
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-241-2/+2
* Make GetContextRef return a ContextRefChris Robinson2018-11-241-5/+3
* 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-231-52/+46
* Use proper time types for the device clock time and latencyChris Robinson2018-11-221-5/+5
* Use standard types for the device clock timesChris Robinson2018-11-221-7/+15
* Use unique_ptr for DirectHrtfStateChris Robinson2018-11-221-2/+0
* Clean up some unnecessary specifiersChris Robinson2018-11-221-2/+2
* Use unique_ptr for bs2bChris Robinson2018-11-221-5/+1
* Use unique_ptr for BFormatDec and AmbiUpsamplerChris Robinson2018-11-221-3/+0
* Use a unique_ptr for the FrontStablizerChris Robinson2018-11-221-3/+1
* Use a unique_ptr for the CompressorChris Robinson2018-11-211-9/+2
* Use a unique_ptr for Uhj2EncoderChris Robinson2018-11-211-4/+1
* Use RAII when handling the mixer's FPU stateChris Robinson2018-11-211-2/+2
* Avoid using ATOMIC macrosChris Robinson2018-11-211-25/+25
* Replace a couple more almtx_lock/unlock callsChris Robinson2018-11-211-6/+4
* Always use RAII with EffectSlotLockChris Robinson2018-11-211-2/+2
* Use a normal vector for the distance buffer storageChris Robinson2018-11-211-14/+2
* Make VerifyContext return a context referenceChris Robinson2018-11-211-46/+51
* Use RAII locks with the BackendLockChris Robinson2018-11-201-145/+125
* Use an enum class for AmbiLayout/Norm settingsChris Robinson2018-11-201-25/+15
* Use a normal vector for the source send propertiesChris Robinson2018-11-201-7/+2
* Use a standard mutex for the event callback lockChris Robinson2018-11-201-2/+0
* Use atomic_flags and atomic<bools>s where appropriateChris Robinson2018-11-201-9/+7
* Store effect slots as unique_ptrsChris Robinson2018-11-201-1/+1
* Use a unique_ptr for the default effect slotChris Robinson2018-11-201-11/+13
* Use proper inheritence for the effect state objectsChris Robinson2018-11-191-9/+9
* Use a vector to handle mixing buffer storageChris Robinson2018-11-191-19/+8
* Remove the atomic exchange macrosChris Robinson2018-11-191-16/+13
* Simplify the RefCount typeChris Robinson2018-11-191-7/+5
* Use a normal vector for filter sublistsChris Robinson2018-11-181-7/+5
* Use a normal vector for effect sublistsChris Robinson2018-11-181-5/+5
* Use a normal vector for buffer sublistsChris Robinson2018-11-181-5/+5
* Use a standard string for the enumerated HRTF namesChris Robinson2018-11-181-3/+3
* Use a standard string for the device's HRTF nameChris Robinson2018-11-181-3/+1
* Use a regular vector for the enumerated HRTF listChris Robinson2018-11-181-15/+10