diff options
author | Chris Robinson <[email protected]> | 2019-01-28 20:31:58 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-01-28 20:43:34 -0800 |
commit | 2d93a9cdb176d0958cd78979794a9acc35de0725 (patch) | |
tree | ebfab529b3a8b58aec6e469fb35db04eea5b736d /Alc/hrtf.h | |
parent | df5d238e3db579f43b394d7f3da43358f21f416f (diff) |
Collect HRTF field info into a struct
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r-- | Alc/hrtf.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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; |