aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Use a std::string for the device nameChris Robinson2018-11-181-18/+15
|
* Use a std::thread for the event threadChris Robinson2018-11-181-7/+2
|
* Fix a float constant typeChris Robinson2018-11-181-1/+1
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-29/+29
|
* Use constructors/destructors with ALCdeviceChris Robinson2018-11-181-148/+71
| | | | | As with ALCcontext, this is really ALCdevice_struct because of the way it's declared in the public header.
* Avoid a fixed-size string bufferChris Robinson2018-11-181-6/+7
|
* Separate class and variable definitionsChris Robinson2018-11-181-2/+3
|
* Use constructors/destructors for ALeffectslotChris Robinson2018-11-181-39/+2
|
* Use cleaner constructor/destructor calls for ALCcontextChris Robinson2018-11-181-66/+45
| | | | | Note that the actual type name is ALCcontext_struct, because of how it's defined in AL/alc.h (ALCcontext is just an alias to struct ALCcontext_struct).
* Remove the pointer-specific atomic exchange macrosChris Robinson2018-11-181-11/+11
|
* Avoid naming a struct member the same as an enum typeChris Robinson2018-11-181-2/+2
|
* Add and use new/delete operators to ALeffectslotChris Robinson2018-11-181-3/+4
|
* Use a normal vector for auxiliary effect slotsChris Robinson2018-11-181-7/+2
|
* Use a proper vector for the source sublistsChris Robinson2018-11-181-11/+8
|
* 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
|