aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
Commit message (Expand)AuthorAgeFilesLines
* Avoid some explicit loop countsChris Robinson2018-12-151-8/+4
* Add more casts for MSVCChris Robinson2018-12-121-1/+1
* Use proper classes for Vector and Matrix typesChris Robinson2018-12-121-2/+2
* Rename a couple global variablesChris Robinson2018-12-091-5/+5
* Avoid static global initialization functionsChris Robinson2018-12-081-134/+16
* Avoid several uses of memsetChris Robinson2018-12-081-2/+2
* Use class methods for the NFC filtersChris Robinson2018-12-051-2/+2
* Avoid more explicit loopsChris Robinson2018-12-041-20/+21
* Increase the async event queue sizeChris Robinson2018-12-041-1/+1
* Use std::array for the voice's PrevSamplesChris Robinson2018-11-301-1/+2
* Improve construction and destruction of ALvoicesChris Robinson2018-11-301-12/+45
* Don't bother making ALvoiceProps dynamically sizedChris Robinson2018-11-301-21/+9
* Store the source ID with the voice instead of the source pointerChris Robinson2018-11-291-1/+1
* Remove an improper Connected checkChris Robinson2018-11-281-1/+1
* Attempt to reconnect lost devices with alcResetDeviceSOFTChris Robinson2018-11-281-7/+19
* 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-271-17/+17
* 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