aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert mixvoice.c to C++Chris Robinson2018-11-162-8/+10
|
* Convert ALu.c to C++Chris Robinson2018-11-167-54/+75
| | | | Required changes to bsincgen to generate C++-friendly structures.
* Convert alEffect.c and alFilter.c to C++Chris Robinson2018-11-163-6/+6
|
* Convert alListener.c to C++Chris Robinson2018-11-162-3/+4
|
* Convert alAuxEffectSlot.c to C++Chris Robinson2018-11-162-38/+41
|
* Remove some unneeded includesChris Robinson2018-11-163-8/+0
|
* Use lock_guard instead of manual lock/unlock callsChris Robinson2018-11-161-30/+15
|
* Convert alState.c to C++Chris Robinson2018-11-162-207/+125
|
* Convert alError.c to C++Chris Robinson2018-11-162-20/+11
|
* Convert alExtension.c to C++Chris Robinson2018-11-162-24/+13
|
* Convert event.c to C++Chris Robinson2018-11-163-128/+120
|
* Convert sample_cvt.c to C++Chris Robinson2018-11-162-73/+71
|
* Use iterators instead of indexed loopsChris Robinson2018-11-161-23/+22
|
* Cleanup some syntax in alc.cppChris Robinson2018-11-161-19/+13
|
* Simplify a couple checksChris Robinson2018-11-152-18/+5
|
* Remove unused declarations and definitionsChris Robinson2018-11-152-56/+0
|
* Convert the PortAudio backend factoryChris Robinson2018-11-154-88/+90
|
* Convert the WinMM backend factoryChris Robinson2018-11-154-90/+91
|
* Convert the DSound backend factoryChris Robinson2018-11-154-92/+91
|
* Convert the QSA backend factoryChris Robinson2018-11-154-37/+40
|
* Convert the OSS backend factoryChris Robinson2018-11-154-79/+81
|
* Convert the SndIO backend factoryChris Robinson2018-11-154-37/+38
|
* Convert the Solaris backend factoryChris Robinson2018-11-154-37/+38
|
* Convert the SDL2 backend factoryChris Robinson2018-11-154-38/+39
|
* Convert the JACK backend factoryChris Robinson2018-11-154-38/+46
|
* Convert the Wave Writer backend factoryChris Robinson2018-11-154-63/+59
|
* Convert the OpenSL backend factoryChris Robinson2018-11-154-36/+40
|
* Convert the ALSA backend factoryChris Robinson2018-11-154-75/+80
|
* Convert the CoreAudio backend factoryChris Robinson2018-11-154-40/+40
|
* Convert the WASAPI backend factoryChris Robinson2018-11-155-82/+82
|
* Convert the PulseAudio backend factoryChris Robinson2018-11-154-179/+135
|
* Update the loopback backendChris Robinson2018-11-155-57/+59
|
* Start a new backend factory APIChris Robinson2018-11-155-81/+86
| | | | | Using proper class inheritance. Be aware this breaks all backends except null (and loopback). They will be restored individually in due time.
* Remove checks for functions that always existChris Robinson2018-11-155-83/+1
| | | | | They're part of C++11 and available on the testing systems. If some system has trouble, switching to proper C++ calls should fix it.
* Use std::isfinite from the cmath headerChris Robinson2018-11-151-1/+1
|
* Add a missing cast for MSVCChris Robinson2018-11-151-1/+2
|
* Remove the unused al_string APIChris Robinson2018-11-157-159/+0
|
* Use a regular char* for the device's nameChris Robinson2018-11-1522-89/+115
|
* Pass a normal const char* to EnumerateHrtfChris Robinson2018-11-154-9/+8
|
* Avoid some more uses of al_stringChris Robinson2018-11-153-13/+10
|
* Search the right list for WASAPI name duplicatesChris Robinson2018-11-151-1/+1
|
* Remove an unused extern inlineChris Robinson2018-11-151-2/+0
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-1519-86/+76
|
* Use a C++ mutex with the device backend baseChris Robinson2018-11-152-17/+18
|
* Try to clean up compat.h's macro block spaghetti a bitChris Robinson2018-11-151-30/+11
|
* Convert alSource.c to C++Chris Robinson2018-11-152-59/+64
|
* Only declare the device backend stuff with C++Chris Robinson2018-11-151-16/+14
|
* Use C++ more in the OSS backendChris Robinson2018-11-141-56/+49
|
* Use a C++ vector for enumerated OSS devicesChris Robinson2018-11-141-155/+146
|
* Remove some now-unused function checksChris Robinson2018-11-143-20/+0
|