diff options
author | Chris Robinson <[email protected]> | 2015-01-13 09:29:03 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-01-13 09:29:03 -0800 |
commit | f9a923533360cfbfaccf0e5527a40a51efa97215 (patch) | |
tree | c0c199e2cefa022190514ff52bd6822b948545b7 | |
parent | ed05c83ee7aa9464fe5e72cdd20916c3233dd283 (diff) |
Add missing alignas to CubicLUT declaration
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 1c96189b..e4bcd409 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -202,7 +202,7 @@ inline ALuint64 clampu64(ALuint64 val, ALuint64 min, ALuint64 max) { return minu64(max, maxu64(min, val)); } -extern ALfloat CubicLUT[FRACTIONONE][4]; +extern alignas(16) ALfloat CubicLUT[FRACTIONONE][4]; inline ALfloat lerp(ALfloat val1, ALfloat val2, ALfloat mu) |