mirror of https://github.com/axmolengine/axmol.git
37 lines
677 B
C++
37 lines
677 B
C++
#ifndef ALU_H
|
|
#define ALU_H
|
|
|
|
struct ALCcontext;
|
|
struct ALCdevice;
|
|
struct EffectSlot;
|
|
|
|
|
|
constexpr float GainMixMax{1000.0f}; /* +60dB */
|
|
|
|
constexpr float AirAbsorbGainHF{0.99426f}; /* -0.05dB */
|
|
|
|
|
|
enum HrtfRequestMode {
|
|
Hrtf_Default = 0,
|
|
Hrtf_Enable = 1,
|
|
Hrtf_Disable = 2,
|
|
};
|
|
|
|
void aluInit(void);
|
|
|
|
/* aluInitRenderer
|
|
*
|
|
* Set up the appropriate panning method and mixing method given the device
|
|
* properties.
|
|
*/
|
|
void aluInitRenderer(ALCdevice *device, int hrtf_id, HrtfRequestMode hrtf_appreq,
|
|
HrtfRequestMode hrtf_userreq);
|
|
|
|
void aluInitEffectPanning(EffectSlot *slot, ALCcontext *context);
|
|
|
|
|
|
extern const float ConeScale;
|
|
extern const float ZScale;
|
|
|
|
#endif
|