aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* Fix the initial device refcountChris Robinson2018-11-181-1/+1
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-3/+3
|
* Use constructors/destructors with ALCdeviceChris Robinson2018-11-181-74/+71
| | | | | As with ALCcontext, this is really ALCdevice_struct because of the way it's declared in the public header.
* Use constructors/destructors for ALeffectslotChris Robinson2018-11-182-58/+37
|
* Use cleaner constructor/destructor calls for ALCcontextChris Robinson2018-11-181-7/+7
| | | | | 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-184-16/+10
|
* Avoid naming a struct member the same as an enum typeChris Robinson2018-11-185-14/+14
|
* Use std::isfinite instead of the global isfiniteChris Robinson2018-11-181-8/+8
|
* Add and use new/delete operators to ALeffectslotChris Robinson2018-11-182-13/+11
|
* Use a normal vector for auxiliary effect slotsChris Robinson2018-11-182-32/+29
|
* Use a proper vector for the source sublistsChris Robinson2018-11-181-43/+36
|
* Store the listener directly in the contextChris Robinson2018-11-172-29/+31
|
* Move the vector and matrix declarations to a separate headerChris Robinson2018-11-172-52/+10
|
* Move the ALCcontext definition to its own headerChris Robinson2018-11-1713-176/+23
|
* Try to clear up an MSVC warningChris Robinson2018-11-171-1/+1
|
* Avoid an explicit static_cast to boolChris Robinson2018-11-171-1/+1
|
* Remove unused headers and checksChris Robinson2018-11-174-5/+0
|
* Convert threads.c to C++Chris Robinson2018-11-171-1/+0
| | | | Also vastly simplify and remove related code.
* Fix compilation with MSVCChris Robinson2018-11-161-2/+4
|
* Convert ALu.c to C++Chris Robinson2018-11-161-3/+3
| | | | Required changes to bsincgen to generate C++-friendly structures.
* Convert alEffect.c and alFilter.c to C++Chris Robinson2018-11-162-4/+4
|
* Convert alListener.c to C++Chris Robinson2018-11-161-2/+3
|
* Convert alAuxEffectSlot.c to C++Chris Robinson2018-11-161-37/+40
|
* Use lock_guard instead of manual lock/unlock callsChris Robinson2018-11-161-30/+15
|
* Convert alState.c to C++Chris Robinson2018-11-161-206/+124
|
* Convert alError.c to C++Chris Robinson2018-11-161-19/+10
|
* Convert alExtension.c to C++Chris Robinson2018-11-161-23/+12
|
* Convert event.c to C++Chris Robinson2018-11-162-127/+119
|
* Convert sample_cvt.c to C++Chris Robinson2018-11-161-72/+70
|
* Remove checks for functions that always existChris Robinson2018-11-151-1/+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.
* Add a missing cast for MSVCChris Robinson2018-11-151-1/+2
|
* Remove the unused al_string APIChris Robinson2018-11-151-1/+0
|
* Use a regular char* for the device's nameChris Robinson2018-11-151-1/+3
|
* Convert alSource.c to C++Chris Robinson2018-11-151-58/+63
|
* Use C++ a bit more with alc.cppChris Robinson2018-11-141-2/+9
|
* Move extern inline declarations to their own C sourceChris Robinson2018-11-143-10/+0
|
* Avoid using ATOMIC_FLAGChris Robinson2018-11-138-18/+15
| | | | | Although it cant potentially be better than a regular atomic, it presents compatibility issues when non-C11 atomics are mixed with C++
* Make the enumerated HRTF entry name a char*Chris Robinson2018-11-121-1/+1
| | | | | Would ideally be a std::string with the HRTF name itself, but they're still seen in C code.
* Use a regular char* for the HRTF string nameChris Robinson2018-11-121-1/+1
|
* Use C++ more with helpers.cppChris Robinson2018-11-111-3/+5
|
* Disambiguate operation orderChris Robinson2018-11-081-1/+1
|
* Avoid using out parametersChris Robinson2018-11-081-73/+81
|
* Move static functions to an anonymous namespaceChris Robinson2018-11-081-390/+379
|
* Make a const array constexprChris Robinson2018-10-311-1/+1
|
* Move some extern inline declarations to CChris Robinson2018-10-311-5/+0
|
* Avoid assigning in an if statementChris Robinson2018-10-311-20/+20
|
* Add a missing <array> includeChris Robinson2018-10-311-0/+1
|
* Convert alBuffer.c to C++Chris Robinson2018-10-311-380/+292
| | | | A test to ensure everything works.
* Add a C++ ContextRef helper to manage a ALCcontext referenceChris Robinson2018-10-311-1/+35
|
* Replace restrict with RESTRICTChris Robinson2018-10-292-3/+3
|