mirror of https://github.com/axmolengine/axmol.git
13 lines
382 B
C++
13 lines
382 B
C++
#ifndef CORE_BSINC_DEFS_H
|
|
#define CORE_BSINC_DEFS_H
|
|
|
|
/* The number of distinct scale and phase intervals within the bsinc filter
|
|
* tables.
|
|
*/
|
|
constexpr unsigned int BSincScaleBits{4};
|
|
constexpr unsigned int BSincScaleCount{1 << BSincScaleBits};
|
|
constexpr unsigned int BSincPhaseBits{5};
|
|
constexpr unsigned int BSincPhaseCount{1 << BSincPhaseBits};
|
|
|
|
#endif /* CORE_BSINC_DEFS_H */
|