mirror of
https://github.com/love2d/megasource.git
synced 2026-08-20 20:50:52 +02:00
Update OpenAL-soft to 1.23.1-bc7cb17.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#ifndef CORE_CUBIC_DEFS_H
|
||||
#define CORE_CUBIC_DEFS_H
|
||||
|
||||
#include <array>
|
||||
|
||||
/* The number of distinct phase intervals within the cubic filter tables. */
|
||||
constexpr unsigned int CubicPhaseBits{5};
|
||||
constexpr unsigned int CubicPhaseCount{1 << CubicPhaseBits};
|
||||
|
||||
struct CubicCoefficients {
|
||||
alignas(16) std::array<float,4> mCoeffs;
|
||||
alignas(16) std::array<float,4> mDeltas;
|
||||
};
|
||||
|
||||
#endif /* CORE_CUBIC_DEFS_H */
|
||||
Reference in New Issue
Block a user