aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Restructure some voice fieldsChris Robinson2019-05-172-24/+35
|
* Change the default period size to 20msChris Robinson2019-04-261-4/+4
|
* Specify the buffer size as itself instead of the period countChris Robinson2019-04-261-1/+2
| | | | | | | Certain backends don't need a buffer size to be a strict multiple of the period count, which allows a little more flexibility. The period/update size simply acts as the minimum request, which helps control CPU load by determining how often parameter and other pre-mixing updates are processed.
* Add exception protection to the last of the API functionsChris Robinson2019-04-102-18/+113
|
* Add exception protection to effect, filter, and buffer functionsChris Robinson2019-04-103-8/+98
|
* Add exception protection to the listener functionsChris Robinson2019-04-101-8/+25
|
* Add exception protection to context state functionsChris Robinson2019-04-101-0/+49
|