mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
9 lines
260 B
C
9 lines
260 B
C
#ifndef SAMPLE_CVT_H
|
|
#define SAMPLE_CVT_H
|
|
|
|
#include "AL/al.h"
|
|
#include "alBuffer.h"
|
|
|
|
void ConvertData(ALvoid *dst, enum UserFmtType dstType, const ALvoid *src, enum UserFmtType srcType, ALsizei numchans, ALsizei len, ALsizei align);
|
|
|
|
#endif /* SAMPLE_CVT_H */
|