Rename some struct members for clarity
[openal-soft.git] / core / cubic_tables.h
blob88097ae2f153841b8db6a0f225449d1633bac307
1 #ifndef CORE_CUBIC_TABLES_H
2 #define CORE_CUBIC_TABLES_H
4 #include "alspan.h"
5 #include "cubic_defs.h"
8 struct CubicTable {
9 al::span<const CubicCoefficients,CubicPhaseCount> Tab;
12 /* A Catmull-Rom spline. The spline passes through the center two samples,
13 * ensuring no discontinuity while moving through a series of samples.
15 extern const CubicTable gCubicSpline;
17 #endif /* CORE_CUBIC_TABLES_H */