Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace al::optional with std::optional | Chris Robinson | 2023-05-04 | 1 | -2/+2 |
| | |||||
* | 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. | ||||
* | Check for nullptr before constructing a new object | Chris Robinson | 2023-01-15 | 1 | -5/+5 |
| | |||||
* | Use an 8-bit type to hand the HrtfStore IR size | Chris Robinson | 2023-01-15 | 1 | -7/+7 |
| | | | | | Since the max IR size is 128, and HrtfStore only uses 8 bits for the IR size member. Silences a truncation warning given by GCC. | ||||
* | clang-tidy cleanups (#800) | Rosen Penev | 2023-01-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * clang-tidy: use bool literals Found with modernize-use-bool-literals Signed-off-by: Rosen Penev <[email protected]> * clang-tidy: replace std::bind with lambdas Found with modernize-avoid-bind Signed-off-by: Rosen Penev <[email protected]> * clang-tidy: use data() instead of pointer stuff Found with readability-container-data-pointe Signed-off-by: Rosen Penev <[email protected]> * clang-tidy: use empty() Found with readability-container-size-empty Signed-off-by: Rosen Penev <[email protected]> * clang-tidy: remove static in anon namespace Found with readability-static-definition-in-anonymous-namespace Signed-off-by: Rosen Penev <[email protected]> * clang-tidy: remove const return Found with readability-const-return-type Signed-off-by: Rosen Penev <[email protected]> Signed-off-by: Rosen Penev <[email protected]> | ||||
* | Don't include the array definition with bin2h | Chris Robinson | 2023-01-13 | 1 | -1/+3 |
| | |||||
* | Use a span instead of a count+pointer | Chris Robinson | 2023-01-11 | 1 | -8/+5 |
| | |||||
* | Rename some struct members | Chris Robinson | 2023-01-10 | 1 | -54/+57 |
| | | | | And make a related function a member function | ||||
* | Multiply by the inverse instead of divide | Chris Robinson | 2023-01-01 | 1 | -4/+4 |
| | |||||
* | Avoid inlining LoadedHrtf's destructor | Chris Robinson | 2022-12-17 | 1 | -0/+7 |
| | |||||
* | Avoid extraneous temporaries when filling vectors | Chris Robinson | 2022-12-15 | 1 | -1/+6 |
| | |||||
* | Rename a potentially confusing member function | Chris Robinson | 2022-12-08 | 1 | -1/+1 |
| | |||||
* | Use standard likely/unlikely attributes when available | Chris Robinson | 2022-12-05 | 1 | -1/+1 |
| | |||||
* | Use an icosahedron for 3D second-order | Chris Robinson | 2022-09-01 | 1 | -3/+2 |
| | |||||
* | Simplify calculating nearest HRIR index | Chris Robinson | 2022-08-02 | 1 | -8/+1 |
| | |||||
* | Silence an inline failure warning with GCC | Chris Robinson | 2022-07-19 | 1 | -0/+4 |
| | |||||
* | Avoid duplicate initializations for multiple filters | Chris Robinson | 2022-07-17 | 1 | -1/+2 |
| | | | | Just initialize the first and copy it to the others. | ||||
* | Replace a few asserts with actual checks or ASSUME() | Chris Robinson | 2022-03-30 | 1 | -1/+2 |
| | |||||
* | Avoid using an if_constexpr macro | Chris Robinson | 2022-02-22 | 1 | -19/+34 |
| | | | | | It doesn't actually use if constexpr, and compilers are smart enough to optimize. Some functions can use templates instead. | ||||
* | Get rid of MathDefs | Chris Robinson | 2022-01-27 | 1 | -7/+7 |
| | |||||
* | Make a construct_at method amd use it | Chris Robinson | 2021-10-08 | 1 | -11/+10 |
| | |||||
* | Update some more includes | Chris Robinson | 2021-04-24 | 1 | -2/+2 |
| | |||||
* | Move hrtf.cpp/h to core | Chris Robinson | 2021-04-22 | 1 | -0/+1447 |