You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason it appears the GLM_ARCH_SSE4 define is left out in setup.hpp. Not a huge problem, except simd_quat has an SSE4 optimized path which of causes -Wundef warnings.
I can remove that optimized path from simd_quat, but using GLM for platform detection for my own code is pretty handy - it'd be nice to have GLM_ARCH_SSE4 available too.
The text was updated successfully, but these errors were encountered:
I guess the reasoning here was that SSE, SSE2, SSE3 were clean set of cross platform instruction sets. SSSE3 SSE4* not so much.
So in GLM the idea was to just ignore SSE after SSE3 and check for AVX that is also a clean cross platform instruction set that have all the SSE4 stuff.
That doesn't prevent introducing SSE4 again if that's useful.
For some reason it appears the GLM_ARCH_SSE4 define is left out in setup.hpp. Not a huge problem, except simd_quat has an SSE4 optimized path which of causes -Wundef warnings.
I can remove that optimized path from simd_quat, but using GLM for platform detection for my own code is pretty handy - it'd be nice to have GLM_ARCH_SSE4 available too.
The text was updated successfully, but these errors were encountered: