diff options
Diffstat (limited to 'alc/hrtf.h')
-rw-r--r-- | alc/hrtf.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,7 +29,7 @@ struct HrtfEntry { RefCount ref; ALuint sampleRate; - ALsizei irSize; + ALuint irSize; struct Field { ALfloat distance; @@ -38,7 +38,7 @@ struct HrtfEntry { /* NOTE: Fields are stored *backwards*. field[0] is the farthest field, and * field[fdCount-1] is the nearest. */ - ALsizei fdCount; + ALuint fdCount; const Field *field; struct Elevation { @@ -78,7 +78,7 @@ struct HrtfFilter { struct DirectHrtfState { /* HRTF filter state for dry buffer content */ - ALsizei IrSize{0}; + ALuint IrSize{0}; alignas(16) HrirArray Values; al::FlexArray<HrirArray,16> Coeffs; |