Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Store effect slots in groups of 64 | Chris Robinson | 2019-02-20 | 1 | -5/+17 |
| | | | | | Now that their wet buffers are allocated dynamically, the ALeffectslot object itself is rather small. | ||||
* | Move some number-related stuff to a separate header | Chris Robinson | 2019-02-11 | 1 | -2/+3 |
| | |||||
* | Fix compiling problems on VS2019 with vc142 toolset | Minmin Gong | 2019-02-04 | 1 | -1/+1 |
| | | | | Msvc142 in VS2019 preview 2 doesn't allow std::atomic_flag to be initialized by a bool. Call test_and_set in the constructors instead. | ||||
* | Use a flexible array for the active effect slots | Chris Robinson | 2019-01-11 | 1 | -1/+1 |
| | |||||
* | Use a vector for ALeffectslotArray | Chris Robinson | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Change a true/false ALenum atomic into a bool | Chris Robinson | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Add prefixes for ALCdevice and ALCcontext | Chris Robinson | 2019-01-09 | 1 | -0/+1 |
| | |||||
* | Rename ALCdevice_struct and ALCcontext_struct | Chris Robinson | 2019-01-01 | 1 | -5/+5 |
| | | | | | | | | | | | A (possibly contentious?) change in the public headers. Those names were never part of any specification, and I don't know why the struct names differed from the actual type name. But with C++, which takes the original struct declaration as the original name, it was affecting the type's internal symbols. This shouldn't affect user code since ALCdevice_struct and ALCcontext_struct were never part of the spec. If issues arise from this change, it should be reported. | ||||
* | Use a unique_ptr for the AsyncEvents ringbuffer | Chris Robinson | 2018-12-27 | 1 | -1/+1 |
| | |||||
* | Clean up the ring buffer struct and use member functions | Chris Robinson | 2018-12-26 | 1 | -2/+2 |
| | |||||
* | Make and use a semaphore class | Chris Robinson | 2018-11-27 | 1 | -1/+1 |
| | |||||
* | Swap context references in the move assignment | Chris Robinson | 2018-11-27 | 1 | -6/+1 |
| | |||||
* | Use a standard mutex for the source and effect slot locks | Chris Robinson | 2018-11-26 | 1 | -2/+2 |
| | |||||
* | Use a standard mutex for the proplock | Chris Robinson | 2018-11-26 | 1 | -1/+1 |
| | |||||
* | Avoid using the ATOMIC() macro | Chris Robinson | 2018-11-26 | 1 | -11/+11 |
| | |||||
* | Atuomatically clean up sources with its sublist's destruction | Chris Robinson | 2018-11-25 | 1 | -0/+10 |
| | |||||
* | Properly initialize the sublists' freemask | Chris Robinson | 2018-11-25 | 1 | -1/+1 |
| | |||||
* | Make GetContextRef return a ContextRef | Chris Robinson | 2018-11-24 | 1 | -1/+2 |
| | |||||
* | Make the context VoiceCount atomic | Chris Robinson | 2018-11-23 | 1 | -1/+1 |
| | |||||
* | Always use RAII with EffectSlotLock | Chris Robinson | 2018-11-21 | 1 | -5/+0 |
| | |||||
* | Make VerifyContext return a context reference | Chris Robinson | 2018-11-21 | 1 | -0/+9 |
| | |||||
* | Rename a method to be clearer about its behavior | Chris Robinson | 2018-11-21 | 1 | -3/+3 |
| | |||||
* | Use a standard mutex for the event callback lock | Chris Robinson | 2018-11-20 | 1 | -1/+3 |
| | |||||
* | Use atomic_flags and atomic<bools>s where appropriate | Chris Robinson | 2018-11-20 | 1 | -2/+2 |
| | |||||
* | Store effect slots as unique_ptrs | Chris Robinson | 2018-11-20 | 1 | -1/+1 |
| | |||||
* | Use a unique_ptr for the default effect slot | Chris Robinson | 2018-11-20 | 1 | -2/+3 |
| | |||||
* | Use a std::thread for the event thread | Chris Robinson | 2018-11-18 | 1 | -1/+3 |
| | |||||
* | Use cleaner constructor/destructor calls for ALCcontext | Chris Robinson | 2018-11-18 | 1 | -32/+38 |
| | | | | | Note that the actual type name is ALCcontext_struct, because of how it's defined in AL/alc.h (ALCcontext is just an alias to struct ALCcontext_struct). | ||||
* | Remove an unused typedef | Chris Robinson | 2018-11-18 | 1 | -1/+0 |
| | |||||
* | Avoid naming a struct member the same as an enum type | Chris Robinson | 2018-11-18 | 1 | -2/+2 |
| | |||||
* | Use a normal vector for auxiliary effect slots | Chris Robinson | 2018-11-18 | 1 | -1/+1 |
| | |||||
* | Use a proper vector for the source sublists | Chris Robinson | 2018-11-18 | 1 | -4/+3 |
| | |||||
* | Use new/delete for ALCcontext objects | Chris Robinson | 2018-11-18 | 1 | -0/+3 |
| | |||||
* | Store the listener directly in the context | Chris Robinson | 2018-11-17 | 1 | -5/+3 |
| | |||||
* | Move the ALCcontext definition to its own header | Chris Robinson | 2018-11-17 | 1 | -0/+180 |