mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-22 08:03:45 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
21 lines
548 B
C++
21 lines
548 B
C++
#include "config.h"
|
|
|
|
#include "globals.h"
|
|
|
|
|
|
bool eax_g_is_enabled = true;
|
|
|
|
|
|
const char eax1_ext_name[] = "EAX";
|
|
const char eax2_ext_name[] = "EAX2.0";
|
|
const char eax3_ext_name[] = "EAX3.0";
|
|
const char eax4_ext_name[] = "EAX4.0";
|
|
const char eax5_ext_name[] = "EAX5.0";
|
|
|
|
const char eax_x_ram_ext_name[] = "EAX-RAM";
|
|
|
|
const char eax_eax_set_func_name[] = "EAXSet";
|
|
const char eax_eax_get_func_name[] = "EAXGet";
|
|
|
|
const char eax_eax_set_buffer_mode_func_name[] = "EAXSetBufferMode";
|
|
const char eax_eax_get_buffer_mode_func_name[] = "EAXGetBufferMode";
|