aboutsummaryrefslogtreecommitdiffstats
path: root/core/cubic_tables.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Much more clang-tidy cleanupChris Robinson2023-12-101-2/+2
|
* Clean up some unnecessary includes and typesChris Robinson2023-05-121-11/+3
|
* Use deduction guides instead of helper functions for spansChris Robinson2023-05-051-1/+1
|
* Explicitly cast a size_t to doubleChris Robinson2023-02-111-1/+1
|
* Use a span to hold the cubic table referenceChris Robinson2023-02-101-1/+1
|
* Use an interpolated FIR filter for cubic resamplingChris Robinson2023-02-061-0/+59
Similar to how the bsinc filters work, but optimized for 4-point filtering. At least the SSE version is notably faster than calculating the coefficients in real time.