aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* Rename the OpenAL32 directory to alChris Robinson2019-07-2917-9542/+0
|
* More include cleanupsChris Robinson2019-07-2815-70/+98
|
* Move some headers out of the Include subdirectoryChris Robinson2019-07-287-0/+0
|
* Rename alMain.h to alcmain.hChris Robinson2019-07-2816-1014/+14
| | | | And move it and alu.h to Alc/.
* Move the ADPCM decoders to alBuffer.cppChris Robinson2019-07-283-209/+183
|
* Remove the UNUSED macroChris Robinson2019-07-284-47/+34
|
* Remove a couple unnecessary includesChris Robinson2019-07-281-1/+1
|
* Clean up includes a bitChris Robinson2019-07-288-111/+164
| | | | | | | Trying out the IWYU tool to only include what's necessary in a given file. Seems to work decently (it'll miss some headers, suggest unnecessary ones, and make nonsense suggestions for some things, but overall gives a good starting point), and helps clean out some headers.
* Remove an unused lambda captureChris Robinson2019-07-161-1/+1
|
* vocal morpher implementation (#312)Lopuska2019-07-092-2/+5
| | | | | | * vocal morpher implementation * compile fix for GCC
* Update a comment about the speaker distanceChris Robinson2019-07-061-2/+2
|
* Avoid looking up source IDs multiple timesChris Robinson2019-07-061-28/+61
|
* Use a span for MixParamsChris Robinson2019-07-042-4/+3
|
* Use a span for RealMixParamsChris Robinson2019-07-031-2/+1
|
* Create and use a make_optional methodChris Robinson2019-07-011-1/+1
|
* Simplify some optional usageChris Robinson2019-07-011-1/+1
|
* Use explicit storage types for some enumsChris Robinson2019-06-302-7/+7
|
* Use optionals where methods may not return a valid valueChris Robinson2019-06-301-29/+16
|
* Use a FlexArray for a device's contextsChris Robinson2019-06-291-1/+1
|
* Use a bool for the TrapALError flagChris Robinson2019-06-292-2/+2
|
* Rename HrtfParams to HrtfFilterChris Robinson2019-06-181-5/+5
|
* Reorganize how some device fields are set and resetChris Robinson2019-06-151-1/+4
|
* Remove some extern "C" blocksChris Robinson2019-06-101-7/+0
|
* Make the voice count unsignedChris Robinson2019-06-091-2/+2
|
* Use a FlexArray for the context's voicesChris Robinson2019-06-093-31/+72
|
* Use a bitfield for the device flagsChris Robinson2019-06-081-15/+18
|
* Fix for GCC 5.4Chris Robinson2019-06-081-3/+3
|
* Simplify DistanceComp somewhatChris Robinson2019-06-081-14/+6
|
* Remove the DEF_ALIGN macroChris Robinson2019-06-061-4/+4
|
* Remove the per-voice ChannelsPerOrder fieldChris Robinson2019-06-052-2/+1
|
* Use a span for the effect state's output targetChris Robinson2019-06-051-2/+1
|
* Make some more channel counts unsignedChris Robinson2019-06-051-1/+1
|
* Make RealMixParams channel count unsignedChris Robinson2019-06-051-1/+1
|
* Properly destroy other objectsChris Robinson2019-06-056-13/+13
|
* Don't log the function or prefixChris Robinson2019-06-042-3/+2
| | | | | | It's ultimately unnecessary since the message is an indicator about where it was logged from. The message itself is generally more important than where it was from, too.
* Improve alignment handling for the alignment allocatorChris Robinson2019-06-031-1/+1
|
* Restructure voice data membersChris Robinson2019-06-032-41/+37
| | | | | This should improve access patters by packing each buffer channel's data together, which is more inline with its use.
* Use a span for the voice's buffer referencesChris Robinson2019-05-291-4/+2
|
* Use span<FloatBufferLine> for MixSamplesChris Robinson2019-05-291-3/+3
|
* Use FloatBufferLine and span<> for MixRowSamplesChris Robinson2019-05-291-2/+2
|
* Pass a span to MixDirectHrtf instead of a pointer+sizeChris Robinson2019-05-291-2/+4
|
* Use FloatBufferLine with the HRTF mixer functionsChris Robinson2019-05-281-6/+6
|
* Use std::array for most mixing buffer arraysChris Robinson2019-05-283-6/+8
|
* Get rid of the COUNTOF macroChris Robinson2019-05-263-18/+17
|
* Use al::byte for ADPCM decodersChris Robinson2019-05-243-57/+53
|
* Move a couple table definitions to where they're usedChris Robinson2019-05-242-89/+3
|
* Remove an unnecessary struct memberChris Robinson2019-05-242-12/+9
|
* Use raw bytes for the buffer dataChris Robinson2019-05-242-3/+5
|
* Use a function to mark a source for updatingChris Robinson2019-05-231-39/+38
|
* Allow initializing splitter filters with constructorsChris Robinson2019-05-221-2/+1
|