mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 13:14:46 +00:00
13 lines
299 B
C++
13 lines
299 B
C++
#ifndef LOADSOFA_H
|
|
#define LOADSOFA_H
|
|
|
|
#include <string_view>
|
|
|
|
#include "makemhr.h"
|
|
|
|
|
|
bool LoadSofaFile(const std::string_view filename, const uint numThreads, const uint fftSize,
|
|
const uint truncSize, const uint outRate, const ChannelModeT chanMode, HrirDataT *hData);
|
|
|
|
#endif /* LOADSOFA_H */
|