aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alEffect.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename the OpenAL32 directory to alChris Robinson2019-07-291-742/+0
|
* More include cleanupsChris Robinson2019-07-281-1/+1
|
* Rename alMain.h to alcmain.hChris Robinson2019-07-281-1/+1
| | | | And move it and alu.h to Alc/.
* Clean up includes a bitChris Robinson2019-07-281-8/+17
| | | | | | | 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.
* vocal morpher implementation (#312)Lopuska2019-07-091-1/+3
| | | | | | * vocal morpher implementation * compile fix for GCC
* Properly destroy other objectsChris Robinson2019-06-051-2/+2
|
* Get rid of the COUNTOF macroChris Robinson2019-05-261-10/+14
|
* Add exception protection to effect, filter, and buffer functionsChris Robinson2019-04-101-0/+24
|
* Rename and move ALeffectPropsChris Robinson2019-03-221-1/+1
|
* Pass ALeffectProps directly to the get/setParam* methodsChris Robinson2019-03-221-0/+27
|
* Use the effect state factory to set the default effect propsChris Robinson2019-03-221-144/+42
|
* Implement getDefaultProps for effect state factoriesChris Robinson2019-03-221-1/+1
|
* Avoid using internal AL[u]int64 typesChris Robinson2019-02-111-1/+1
|
* Use c++ headersFilip Gawin2019-01-091-3/+3
|
* Merge pull request #260 from ShFil119/impr/nullptrkcat2019-01-071-2/+2
|\ | | | | Use nullptr in cpp files
| * Use nullptr in cpp filesFilip Gawin2019-01-071-2/+2
| |
* | Use user-defined literals for 64-bit literalsChris Robinson2019-01-071-5/+5
|/
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-3/+3
|
* Fix some MSVC conversion warningsChris Robinson2018-12-121-2/+2
|
* Use a standard mutex for the remaining locksChris Robinson2018-11-261-16/+12
|
* Automatically clean up filters and effects with their sublistsChris Robinson2018-11-251-17/+9
|
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-241-1/+1
| | | | Which uses a custom allocator that uses our allocation functions.
* Use RAII in alEffect.cppChris Robinson2018-11-241-388/+367
|
* Use a normal vector for effect sublistsChris Robinson2018-11-181-39/+33
|
* Move the ALCcontext definition to its own headerChris Robinson2018-11-171-0/+2
|
* Convert alEffect.c and alFilter.c to C++Chris Robinson2018-11-161-0/+815