Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename the OpenAL32 directory to al | Chris Robinson | 2019-07-29 | 1 | -216/+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 | -5/+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. | ||||
* | Properly destroy other objects | Chris Robinson | 2019-06-05 | 1 | -2/+2 |
| | |||||
* | Add exception protection to some AL functions | Chris Robinson | 2019-04-10 | 1 | -0/+5 |
| | |||||
* | Fix ring buffer vector methods | Chris Robinson | 2018-12-27 | 1 | -5/+5 |
| | |||||
* | Use a unique_ptr for the AsyncEvents ringbuffer | Chris Robinson | 2018-12-27 | 1 | -3/+3 |
| | |||||
* | Clean up the ring buffer struct and use member functions | Chris Robinson | 2018-12-26 | 1 | -6/+8 |
| | |||||
* | Construct AsyncEvent objects directly in the ringbuffer | Chris Robinson | 2018-12-25 | 1 | -5/+30 |
| | |||||
* | Fix some MSVC conversion warnings | Chris Robinson | 2018-12-12 | 1 | -3/+6 |
| | |||||
* | Use a constructor instead of a macro to initialize AsyncEvent | Chris Robinson | 2018-12-06 | 1 | -2/+2 |
| | |||||
* | Handle EventType_BufferCompleted uniquely | Chris Robinson | 2018-12-04 | 1 | -0/+11 |
| | |||||
* | Use a std::string for the source state change message | Chris Robinson | 2018-12-02 | 1 | -8/+5 |
| | |||||
* | Handle source state changed events uniquely in the event loop | Chris Robinson | 2018-11-30 | 1 | -1/+20 |
| | | | | | To avoid the need of constructing the string in the mixer thread, which is commonly formatted anyway. | ||||
* | Make and use a semaphore class | Chris Robinson | 2018-11-27 | 1 | -2/+2 |
| | |||||
* | Remove althrd_yield | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Use a standard mutex for the proplock | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Get rid of the last ATOMIC macro uses | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Use a standard mutex for the event callback lock | Chris Robinson | 2018-11-20 | 1 | -3/+3 |
| | |||||
* | Use proper inheritence for the effect state objects | Chris Robinson | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Make ll_ringbuffer_write/read take void*/const void* | Chris Robinson | 2018-11-19 | 1 | -3/+3 |
| | |||||
* | Remove the atomic exchange macros | Chris Robinson | 2018-11-19 | 1 | -6/+6 |
| | |||||
* | Use a std::thread for the event thread | Chris Robinson | 2018-11-18 | 1 | -3/+24 |
| | |||||
* | Move the ALCcontext definition to its own header | Chris Robinson | 2018-11-17 | 1 | -0/+2 |
| | |||||
* | Convert event.c to C++ | Chris Robinson | 2018-11-16 | 1 | -0/+119 |