-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #284 from dgelessus/make_pleaxlistenermod_h_includ…
…able Fix plEAXListenerMod.h to be includable from outside libHSPlasma itself
- Loading branch information
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Subset of 3rdPartyLibs/AL/EFX-Util.h containing only the structures | ||
// used in the public API of plEAXListenerMod. | ||
|
||
#ifndef EAXVECTOR_DEFINED | ||
#define EAXVECTOR_DEFINED | ||
typedef struct _EAXVECTOR | ||
{ | ||
float x; | ||
float y; | ||
float z; | ||
} EAXVECTOR; | ||
#endif | ||
|
||
#ifndef EAXREVERBPROPERTIES_DEFINED | ||
#define EAXREVERBPROPERTIES_DEFINED | ||
typedef struct _EAXREVERBPROPERTIES | ||
{ | ||
unsigned long ulEnvironment; | ||
float flEnvironmentSize; | ||
float flEnvironmentDiffusion; | ||
long lRoom; | ||
long lRoomHF; | ||
long lRoomLF; | ||
float flDecayTime; | ||
float flDecayHFRatio; | ||
float flDecayLFRatio; | ||
long lReflections; | ||
float flReflectionsDelay; | ||
EAXVECTOR vReflectionsPan; | ||
long lReverb; | ||
float flReverbDelay; | ||
EAXVECTOR vReverbPan; | ||
float flEchoTime; | ||
float flEchoDepth; | ||
float flModulationTime; | ||
float flModulationDepth; | ||
float flAirAbsorptionHF; | ||
float flHFReference; | ||
float flLFReference; | ||
float flRoomRolloffFactor; | ||
unsigned long ulFlags; | ||
} EAXREVERBPROPERTIES, *LPEAXREVERBPROPERTIES; | ||
#endif |