aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use new/delete for ALCcontext objectsChris Robinson2018-11-181-16/+2
|
* Store the listener directly in the contextChris Robinson2018-11-171-34/+34
|
* Move the vector and matrix declarations to a separate headerChris Robinson2018-11-171-1/+1
|
* Move the ALCcontext definition to its own headerChris Robinson2018-11-171-1/+2
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-2/+0
|
* Put a lambda in the call_once callChris Robinson2018-11-161-1/+1
| | | | | | | This optimizes better and avoids a visible symbol (templating to an anonymous lambda type will generate a unique anonymous instantiation, making inlining more likely, whereas passing a general function pointer/reference type will likely use or generate a publically available instance).
* Remove unused altss types and methodsChris Robinson2018-11-161-4/+0
|
* Avoid using C-style TLSChris Robinson2018-11-161-20/+30
|
* Use iterators instead of indexed loopsChris Robinson2018-11-161-23/+22
|
* Cleanup some syntax in alc.cppChris Robinson2018-11-161-19/+13
|
* Convert the PortAudio backend factoryChris Robinson2018-11-151-4/+6
|
* Convert the WinMM backend factoryChris Robinson2018-11-151-2/+6
|
* Convert the DSound backend factoryChris Robinson2018-11-151-1/+6
|
* Convert the QSA backend factoryChris Robinson2018-11-151-1/+6
|
* Convert the OSS backend factoryChris Robinson2018-11-151-1/+6
|
* Convert the SndIO backend factoryChris Robinson2018-11-151-1/+6
|
* Convert the Solaris backend factoryChris Robinson2018-11-151-2/+6
|
* Convert the SDL2 backend factoryChris Robinson2018-11-151-2/+6
|
* Convert the JACK backend factoryChris Robinson2018-11-151-4/+7
|
* Convert the Wave Writer backend factoryChris Robinson2018-11-151-3/+6
|
* Convert the OpenSL backend factoryChris Robinson2018-11-151-0/+6
|
* Convert the ALSA backend factoryChris Robinson2018-11-151-0/+6
|
* Convert the CoreAudio backend factoryChris Robinson2018-11-151-0/+6
|
* Convert the WASAPI backend factoryChris Robinson2018-11-151-0/+6
|
* Convert the PulseAudio backend factoryChris Robinson2018-11-151-30/+7
|
* Update the loopback backendChris Robinson2018-11-151-10/+5
|
* Start a new backend factory APIChris Robinson2018-11-151-25/+16
| | | | | Using proper class inheritance. Be aware this breaks all backends except null (and loopback). They will be restored individually in due time.
* Use std::isfinite from the cmath headerChris Robinson2018-11-151-1/+1
|
* Remove the unused al_string APIChris Robinson2018-11-151-1/+0
|
* Use a regular char* for the device's nameChris Robinson2018-11-151-17/+18
|
* Pass a normal const char* to EnumerateHrtfChris Robinson2018-11-151-2/+2
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-21/+14
|
* Use std::pow and std::log2Chris Robinson2018-11-141-6/+6
|
* Use C++ a bit more with alc.cppChris Robinson2018-11-141-121/+89
|
* Convert ALc.c to C++Chris Robinson2018-11-141-0/+4696