Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement direct functions for context state | Chris Robinson | 2023-05-14 | 5 | -164/+180 |
| | |||||
* | Declare "direct" context functions for a future extension | Chris Robinson | 2023-05-13 | 1 | -0/+315 |
| | | | | | These functions will allow making AL calls using the specified context, rather than having to set a "current" context for subsequent AL calls to use. | ||||
* | Avoid using al::vector unnecessarily | Chris Robinson | 2023-05-12 | 26 | -110/+115 |
| | |||||
* | Clean up some more includes | Chris Robinson | 2023-05-12 | 11 | -29/+28 |
| | |||||
* | Remove some old compatibility code | Chris Robinson | 2023-05-12 | 1 | -28/+4 |
| | |||||
* | Clean up some unnecessary includes and types | Chris Robinson | 2023-05-12 | 1 | -11/+3 |
| | |||||
* | Special-case setting a single buffer's mode | Chris Robinson | 2023-05-11 | 1 | -9/+46 |
| | | | | To avoid extraneous allocations and extra work for a common case. | ||||
* | Avoid counting buffers multiple times in EAXSetBufferMode | Chris Robinson | 2023-05-10 | 1 | -29/+28 |
| | |||||
* | Mark some functions noexcept when possible | Chris Robinson | 2023-05-10 | 2 | -15/+4 |
| | |||||
* | Use a variant for AsyncEvent | Chris Robinson | 2023-05-08 | 5 | -108/+129 |
| | |||||
* | Send a debug message when disconnecting | Chris Robinson | 2023-05-08 | 2 | -14/+24 |
| | |||||
* | Use an inline function instead of a macro | Chris Robinson | 2023-05-08 | 1 | -13/+15 |
| | |||||
* | Store extension strings individually | Chris Robinson | 2023-05-08 | 4 | -102/+85 |
| | | | | And dynamically build the full AL_EXTENSIONS string | ||||
* | Make a function constexpr | Chris Robinson | 2023-05-08 | 1 | -1/+1 |
| | |||||
* | Mark some global constexpr variables inline | Chris Robinson | 2023-05-07 | 3 | -26/+26 |
| | |||||
* | Rename a function to clarify what it does | Chris Robinson | 2023-05-07 | 1 | -4/+4 |
| | |||||
* | Include the message in the ERR log that's too long | Chris Robinson | 2023-05-06 | 1 | -2/+3 |
| | |||||
* | Only check isfinite for floating point values | Chris Robinson | 2023-05-06 | 1 | -19/+28 |
| | |||||
* | Improve accuracy for the source offset and length queries | Chris Robinson | 2023-05-06 | 1 | -39/+63 |
| | |||||
* | Use more appropriate types for some enums | Chris Robinson | 2023-05-06 | 2 | -4/+6 |
| | |||||
* | Combine multiple functions into reusable templates | Chris Robinson | 2023-05-06 | 1 | -1139/+814 |
| | |||||
* | Clean up some temporary variable names | Chris Robinson | 2023-05-05 | 1 | -10/+3 |
| | |||||
* | Use some more standard functions | Chris Robinson | 2023-05-05 | 13 | -117/+44 |
| | |||||
* | Don't bit_cast an array to a pointer | Chris Robinson | 2023-05-05 | 1 | -2/+1 |
| | |||||
* | Use deduction guides instead of helper functions for spans | Chris Robinson | 2023-05-05 | 13 | -50/+44 |
| | |||||
* | Remove custom stuff for standard | Chris Robinson | 2023-05-04 | 10 | -69/+44 |
| | |||||
* | Avoid defining separate wrapper functions | Chris Robinson | 2023-05-04 | 1 | -32/+16 |
| | |||||
* | Use std::byte instead of a custom al::byte | Chris Robinson | 2023-05-04 | 33 | -224/+191 |
| | |||||
* | Make and use a bit_cast function | Chris Robinson | 2023-05-04 | 14 | -19/+40 |
| | | | | Instead of reinterpret_casting between incompatible types | ||||
* | Update ComPtr and use an out_ptr() function | Chris Robinson | 2023-05-04 | 3 | -76/+101 |
| | |||||
* | Replace al::optional with std::optional | Chris Robinson | 2023-05-04 | 36 | -167/+143 |
| | |||||
* | Use std::optional instead of a custom implementation | Chris Robinson | 2023-05-04 | 4 | -352/+25 |
| | |||||
* | Update to C++17 | Chris Robinson | 2023-05-04 | 1 | -2/+2 |
| | |||||
* | Implement a context debug flag | Chris Robinson | 2023-05-03 | 6 | -30/+76 |
| | | | | | Setting the debug flag at context creation enables more debug messages for the created context, and enables debug messages by default. | ||||
* | Ignore logBufSize if logBuf is null | Chris Robinson | 2023-05-03 | 1 | -4/+7 |
| | |||||
* | Rename AL_SOFT_debug to AL_EXT_DEBUG | Chris Robinson | 2023-05-03 | 6 | -156/+199 |
| | |||||
* | Reduce code duplication for context queries | Chris Robinson | 2023-05-01 | 2 | -420/+180 |
| | |||||
* | Define a struct where it's needed | Chris Robinson | 2023-05-01 | 2 | -19/+18 |
| | |||||
* | Implement pushing/popping debug groups | Chris Robinson | 2023-05-01 | 7 | -122/+197 |
| | |||||
* | Put the debug filters into a group | Chris Robinson | 2023-05-01 | 6 | -69/+98 |
| | |||||
* | Use a 64-bit value for tracking ID filters | Chris Robinson | 2023-05-01 | 3 | -35/+19 |
| | |||||
* | Fix some debug message length limit checks | Chris Robinson | 2023-05-01 | 2 | -8/+14 |
| | |||||
* | Avoid assigning to existing optional<string> | Chris Robinson | 2023-05-01 | 1 | -8/+2 |
| | | | | | | Reduces the amount inlining the compiler has to do, though the uhj/filter config option is no longer recognized (it has been deprecated, amd I don't think it was in an actual release). | ||||
* | Implement debug message filtering for IDs | Chris Robinson | 2023-05-01 | 3 | -22/+62 |
| | |||||
* | Mask a value to the proper size when setting a bitfield | Chris Robinson | 2023-05-01 | 1 | -2/+2 |
| | | | | Silences a GCC warning about assigning a uint value to a uint:24 bitfield. | ||||
* | Fix shadowing warnings and add another missing include | Chris Robinson | 2023-04-30 | 1 | -27/+28 |
| | |||||
* | Add some missing includes | Chris Robinson | 2023-04-30 | 1 | -0/+3 |
| | |||||
* | Add an extension string for the in-progress debug extension | Chris Robinson | 2023-04-30 | 1 | -0/+1 |
| | |||||
* | Implement debug log storage | Chris Robinson | 2023-04-30 | 7 | -2/+220 |
| | |||||
* | Unlock the debug lock when calling the callback | Chris Robinson | 2023-04-30 | 1 | -3/+8 |
| | | | | | | There's no full guarantee about calling AL functions in a debug callback, due to a risk of deadlocks from an AL call that tries to take a lock that's already held at the time the callback is invoked, but this helps more work. |