aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-01-28 20:31:58 -0800
committerChris Robinson <[email protected]>2019-01-28 20:43:34 -0800
commit2d93a9cdb176d0958cd78979794a9acc35de0725 (patch)
treeebfab529b3a8b58aec6e469fb35db04eea5b736d /Alc/hrtf.h
parentdf5d238e3db579f43b394d7f3da43358f21f416f (diff)
Collect HRTF field info into a struct
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r--Alc/hrtf.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Alc/hrtf.h b/Alc/hrtf.h
index 742a1812..6f3d456f 100644
--- a/Alc/hrtf.h
+++ b/Alc/hrtf.h
@@ -28,8 +28,12 @@ struct HrtfEntry {
ALuint sampleRate;
ALsizei irSize;
- ALfloat distance;
- ALubyte evCount;
+ struct Field {
+ ALfloat distance;
+ ALubyte evCount;
+ };
+ ALsizei fdCount;
+ Field *field;
const ALubyte *azCount;
const ALushort *evOffset;