openal-soft/core/bufferline.h
Chris Robinson b0919240ab Move some sources to a separate directory
To begin separating the ALC interfaces from internal ones.
2020-11-27 19:18:17 -08:00

15 lines
363 B
C++

#ifndef CORE_BUFFERLINE_H
#define CORE_BUFFERLINE_H
#include <array>
/* Size for temporary storage of buffer data, in floats. Larger values need
* more memory and are harder on cache, while smaller values may need more
* iterations for mixing.
*/
#define BUFFERSIZE 1024
using FloatBufferLine = std::array<float,BUFFERSIZE>;
#endif /* CORE_BUFFERLINE_H */