Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename the OpenAL32 directory to al | Chris Robinson | 2019-07-29 | 1 | -1408/+0 |
| | |||||
* | More include cleanups | Chris Robinson | 2019-07-28 | 1 | -3/+2 |
| | |||||
* | Rename alMain.h to alcmain.h | Chris Robinson | 2019-07-28 | 1 | -1/+1 |
| | | | | And move it and alu.h to Alc/. | ||||
* | Move the ADPCM decoders to alBuffer.cpp | Chris Robinson | 2019-07-28 | 1 | -1/+183 |
| | |||||
* | Remove the UNUSED macro | Chris Robinson | 2019-07-28 | 1 | -13/+13 |
| | |||||
* | Clean up includes a bit | Chris Robinson | 2019-07-28 | 1 | -13/+25 |
| | | | | | | | 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. | ||||
* | Create and use a make_optional method | Chris Robinson | 2019-07-01 | 1 | -1/+1 |
| | |||||
* | Simplify some optional usage | Chris Robinson | 2019-07-01 | 1 | -1/+1 |
| | |||||
* | Use optionals where methods may not return a valid value | Chris Robinson | 2019-06-30 | 1 | -29/+16 |
| | |||||
* | Properly destroy other objects | Chris Robinson | 2019-06-05 | 1 | -2/+2 |
| | |||||
* | Use al::byte for ADPCM decoders | Chris Robinson | 2019-05-24 | 1 | -14/+13 |
| | |||||
* | Remove an unnecessary struct member | Chris Robinson | 2019-05-24 | 1 | -11/+9 |
| | |||||
* | Use raw bytes for the buffer data | Chris Robinson | 2019-05-24 | 1 | -2/+3 |
| | |||||
* | Add exception protection to effect, filter, and buffer functions | Chris Robinson | 2019-04-10 | 1 | -8/+51 |
| | |||||
* | Avoid using internal AL[u]int64 types | Chris Robinson | 2019-02-11 | 1 | -1/+1 |
| | |||||
* | Use c++ headers | Filip Gawin | 2019-01-09 | 1 | -3/+3 |
| | |||||
* | Avoid using old style casts | Filip Gawin | 2019-01-08 | 1 | -11/+16 |
| | | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295 | ||||
* | Use user-defined literals for 64-bit literals | Chris Robinson | 2019-01-07 | 1 | -5/+5 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -13/+12 |
| | |||||
* | Fix some MSVC conversion warnings | Chris Robinson | 2018-12-12 | 1 | -2/+2 |
| | |||||
* | Use a standard mutex for the remaining locks | Chris Robinson | 2018-11-26 | 1 | -27/+21 |
| | |||||
* | Get rid of the last ATOMIC macro uses | Chris Robinson | 2018-11-26 | 1 | -6/+6 |
| | |||||
* | Automatically clean up buffers with ther sublist | Chris Robinson | 2018-11-25 | 1 | -23/+9 |
| | |||||
* | Replace remaining uses of std::vector with al::vector | Chris Robinson | 2018-11-24 | 1 | -1/+1 |
| | | | | Which uses a custom allocator that uses our allocation functions. | ||||
* | Use a normal vector to store buffer data | Chris Robinson | 2018-11-24 | 1 | -19/+11 |
| | |||||
* | Fix deleting the same buffer ID multiple times in one call | Chris Robinson | 2018-11-21 | 1 | -1/+4 |
| | |||||
* | Remove the ATOMIC_THREAD_FENCE macro | Chris Robinson | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Use a normal vector for buffer sublists | Chris Robinson | 2018-11-18 | 1 | -33/+30 |
| | |||||
* | Move the ALCcontext definition to its own header | Chris Robinson | 2018-11-17 | 1 | -0/+1 |
| | |||||
* | Disambiguate operation order | Chris Robinson | 2018-11-08 | 1 | -1/+1 |
| | |||||
* | Avoid using out parameters | Chris Robinson | 2018-11-08 | 1 | -73/+81 |
| | |||||
* | Move static functions to an anonymous namespace | Chris Robinson | 2018-11-08 | 1 | -390/+379 |
| | |||||
* | Make a const array constexpr | Chris Robinson | 2018-10-31 | 1 | -1/+1 |
| | |||||
* | Move some extern inline declarations to C | Chris Robinson | 2018-10-31 | 1 | -5/+0 |
| | |||||
* | Avoid assigning in an if statement | Chris Robinson | 2018-10-31 | 1 | -20/+20 |
| | |||||
* | Add a missing <array> include | Chris Robinson | 2018-10-31 | 1 | -0/+1 |
| | |||||
* | Convert alBuffer.c to C++ | Chris Robinson | 2018-10-31 | 1 | -0/+1217 |
A test to ensure everything works. |