aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* Avoid several uses of memsetChris Robinson2018-12-082-4/+4
|
* Increase GAIN_MIX_MAXChris Robinson2018-12-081-1/+1
|
* Use member functions for BFormatDec and AmbiUpsamplerChris Robinson2018-12-081-2/+2
|
* Use a constructor instead of a macro to initialize AsyncEventChris Robinson2018-12-063-6/+8
|
* Use class methods for the NFC filtersChris Robinson2018-12-051-2/+2
|
* Handle EventType_BufferCompleted uniquelyChris Robinson2018-12-042-0/+15
|
* Avoid a few more explicit loopsChris Robinson2018-12-031-44/+58
|
* Use a std::string for the source state change messageChris Robinson2018-12-021-8/+5
|
* Improve some checks for compiler analysisChris Robinson2018-12-022-9/+10
|
* Add a couple missing source lock guardsChris Robinson2018-12-021-0/+3
|
* Avoid a few more explicit loopsChris Robinson2018-12-021-1/+1
|
* Add a missing includeChris Robinson2018-12-011-0/+2
|
* Handle source state changed events uniquely in the event loopChris Robinson2018-11-303-17/+32
| | | | | To avoid the need of constructing the string in the mixer thread, which is commonly formatted anyway.
* Use std::array for the voice's PrevSamplesChris Robinson2018-11-301-1/+1
|
* Improve construction and destruction of ALvoicesChris Robinson2018-11-301-9/+11
|
* Don't bother making ALvoiceProps dynamically sizedChris Robinson2018-11-303-18/+11
|
* Move a variable declaration to a more appropriate placeChris Robinson2018-11-301-1/+1
|
* Avoid hard-coding a couple sizesChris Robinson2018-11-291-6/+6
|
* Store the source ID with the voice instead of the source pointerChris Robinson2018-11-292-8/+10
|
* Reorganize some device membersChris Robinson2018-11-291-29/+30
|
* Small cleanup for ~ALCcontext_structChris Robinson2018-11-271-1/+1
|
* Make and use a semaphore classChris Robinson2018-11-272-3/+3
|
* Remove althrd_yieldChris Robinson2018-11-263-7/+9
|
* Use a standard mutex for the remaining locksChris Robinson2018-11-266-70/+56
|
* Use a standard mutex for the source and effect slot locksChris Robinson2018-11-262-45/+45
|
* Use a standard mutex for the proplockChris Robinson2018-11-265-40/+40
|
* Use a standard mutex for the backend lockChris Robinson2018-11-263-4/+4
|
* Add a missing std::beginChris Robinson2018-11-261-1/+1
|
* Get rid of some unnecessary functionsChris Robinson2018-11-262-20/+6
|
* Get rid of the last ATOMIC macro usesChris Robinson2018-11-264-9/+9
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-265-18/+18
|
* Avoid using ATOMIC_INITChris Robinson2018-11-261-3/+3
|
* Automatically clean up filters and effects with their sublistsChris Robinson2018-11-255-50/+44
|
* Automatically clean up buffers with ther sublistChris Robinson2018-11-254-32/+23
|
* Fix an incorrect function callChris Robinson2018-11-251-1/+1
|
* Avoid a separate function to clean up effect slotsChris Robinson2018-11-252-16/+0
|
* Atuomatically clean up sources with its sublist's destructionChris Robinson2018-11-252-21/+10
|
* Properly initialize the sublists' freemaskChris Robinson2018-11-251-3/+3
|
* Add a POPCNT64 macroChris Robinson2018-11-241-0/+15
| | | | To count the number of 1/on bits in a 64-bit value
* Move bs2b.h to a more appropriate placeChris Robinson2018-11-241-90/+0
|
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-244-4/+4
| | | | Which uses a custom allocator that uses our allocation functions.
* Use RAII in alEffect.cppChris Robinson2018-11-242-426/+398
|
* Fix a couple commentsChris Robinson2018-11-241-2/+2
|
* Ensure an enum is the appropriate size/typeChris Robinson2018-11-241-13/+5
|
* Use a normal vector to store buffer dataChris Robinson2018-11-242-40/+33
|
* Use RAII more with alFilter.cppChris Robinson2018-11-241-382/+364
|
* Make the context VoiceCount atomicChris Robinson2018-11-231-30/+29
|
* Fix an incorrect checkChris Robinson2018-11-231-1/+1
|
* Avoid a couple explicit loopsChris Robinson2018-11-221-8/+5
|
* Add noexcept to a bunch of inline functionsChris Robinson2018-11-222-28/+28
|