diff options
Diffstat (limited to 'include/glm/detail/func_geometric_simd.inl')
-rw-r--r-- | include/glm/detail/func_geometric_simd.inl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/glm/detail/func_geometric_simd.inl b/include/glm/detail/func_geometric_simd.inl new file mode 100644 index 0000000..eed4643 --- /dev/null +++ b/include/glm/detail/func_geometric_simd.inl @@ -0,0 +1,22 @@ +#include "../simd/geometric.h" + +namespace glm{ +namespace detail +{ +# if GLM_HAS_UNRESTRICTED_UNIONS + template <> + struct compute_dot<tvec4, float, simd> + { + GLM_FUNC_QUALIFIER static float call(tvec4<float, simd> const& x, tvec4<float, simd> const& y) + { + __m128 const dot0 = glm_dot_ss(x.data, y.data); + + float Result = 0; + _mm_store_ss(&Result, dot0); + return Result; + } + }; +# endif//GLM_HAS_UNRESTRICTED_UNIONS +}//namespace detail +}//namespace glm + |