diff options
author | Chris Robinson <[email protected]> | 2018-01-07 05:58:52 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-01-07 05:58:52 -0800 |
commit | c423b6c8b77354bee82f14c3b22c5d453d257c19 (patch) | |
tree | 84dbcc117b91e9a8d9c9091b2595f9342a248bbd /OpenAL32 | |
parent | 4cc1c646466737ba411aa23ce4a6116936ada8c2 (diff) |
Remove the sinc4 table
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index c427df0c..2c326327 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -84,13 +84,8 @@ typedef struct BsincState { const ALfloat *filter; } BsincState; -typedef struct Sinc4State { - const ALfloat (*filter)[4]; -} Sinc4State; - typedef union InterpState { BsincState bsinc; - Sinc4State sinc4; } InterpState; typedef const ALfloat* (*ResamplerFunc)(const InterpState *state, |