aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.h
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r--Alc/hrtf.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Alc/hrtf.h b/Alc/hrtf.h
index c87210d4..9a6dc61e 100644
--- a/Alc/hrtf.h
+++ b/Alc/hrtf.h
@@ -29,10 +29,15 @@ struct HrtfEntry {
ALuint sampleRate;
ALsizei irSize;
+ /* Base elevation index for the farthest field. */
+ ALsizei evFarBase;
struct Field {
- ALfloat distance;
ALubyte evCount;
+ ALfloat distance;
};
+ /* NOTE: Fields are stored *backwards*. field[0] is the farthest field, and
+ * field[fdCount-1] is the nearest.
+ */
ALsizei fdCount;
Field *field;