Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename Alc to alc | Chris Robinson | 2019-07-28 | 1 | -851/+0 |
| | |||||
* | Rename alMain.h to alcmain.h | Chris Robinson | 2019-07-28 | 1 | -1/+1 |
| | | | | And move it and alu.h to Alc/. | ||||
* | Clean up includes a bit | Chris Robinson | 2019-07-28 | 1 | -25/+10 |
| | | | | | | | 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. | ||||
* | Don't inline ifstream destructor | Chris Robinson | 2019-06-18 | 1 | -0/+6 |
| | |||||
* | Simplify al_print | Chris Robinson | 2019-06-18 | 1 | -7/+6 |
| | |||||
* | Use C++ I/O to check for NEON support | Chris Robinson | 2019-06-10 | 1 | -28/+18 |
| | |||||
* | Don't inline some file IO methods | Chris Robinson | 2019-06-10 | 1 | -0/+131 |
| | |||||
* | Don't log the function or prefix | Chris Robinson | 2019-06-04 | 1 | -6/+6 |
| | | | | | | 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. | ||||
* | Work around a 32-bit GCC compiler bug | Chris Robinson | 2019-04-26 | 1 | -2/+2 |
| | |||||
* | Don't use a fixed size buffer for printed messages | Chris Robinson | 2019-04-09 | 1 | -7/+16 |
| | |||||
* | Don't bother trying _controlfp or __control87_2 | Chris Robinson | 2019-03-18 | 1 | -20/+0 |
| | |||||
* | Use SSE intrinsics to set FTZ and DAZ | Chris Robinson | 2019-03-18 | 1 | -2/+17 |
| | |||||
* | Remove redundant void argument list in function def | Filip Gawin | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Use c++ headers | Filip Gawin | 2019-01-09 | 1 | -6/+6 |
| | |||||
* | Avoid using old style casts | Filip Gawin | 2019-01-08 | 1 | -1/+1 |
| | | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295 | ||||
* | Add a method to prefix logged function names | Chris Robinson | 2018-12-28 | 1 | -4/+4 |
| | |||||
* | Cache the process binary path and name | Chris Robinson | 2018-12-25 | 1 | -5/+9 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -2/+2 |
| | |||||
* | Add more casts for MSVC | Chris Robinson | 2018-12-12 | 1 | -1/+1 |
| | |||||
* | Rename a couple global variables | Chris Robinson | 2018-12-09 | 1 | -5/+5 |
| | | | | Avoid clashing with an enum name | ||||
* | Remove althrd_t from Windows | Chris Robinson | 2018-11-26 | 1 | -1/+0 |
| | |||||
* | Replace remaining uses of std::vector with al::vector | Chris Robinson | 2018-11-24 | 1 | -9/+9 |
| | | | | Which uses a custom allocator that uses our allocation functions. | ||||
* | Use RAII when handling the mixer's FPU state | Chris Robinson | 2018-11-21 | 1 | -10/+15 |
| | |||||
* | Use a standard string for the enumerated HRTF names | Chris Robinson | 2018-11-18 | 1 | -9/+0 |
| | |||||
* | Remove the unused al_string API | Chris Robinson | 2018-11-15 | 1 | -99/+0 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -0/+9 |
| | |||||
* | Avoid some more uses of al_string | Chris Robinson | 2018-11-15 | 1 | -8/+6 |
| | |||||
* | Split Windows-specific SetRTPriority | Chris Robinson | 2018-11-12 | 1 | -9/+12 |
| | |||||
* | Clean up helpers.cpp some | Chris Robinson | 2018-11-11 | 1 | -128/+108 |
| | |||||
* | Use the correct type for __control87_2 | Chris Robinson | 2018-11-11 | 1 | -1/+1 |
| | |||||
* | Fix getting the process binary for FreeBSD or macOS | Chris Robinson | 2018-11-11 | 1 | -8/+6 |
| | |||||
* | Remove unused wstr functions | Chris Robinson | 2018-11-11 | 1 | -48/+0 |
| | |||||
* | Use C++ more with helpers.cpp | Chris Robinson | 2018-11-11 | 1 | -228/+137 |
| | |||||
* | Use C++ for GetProcBinary | Chris Robinson | 2018-11-11 | 1 | -90/+50 |
| | |||||
* | Convert helpers.c to C++ | Chris Robinson | 2018-11-11 | 1 | -0/+1027 |