From a8b3118e8305fd1c668ea25e07157b625c9747ff Mon Sep 17 00:00:00 2001 From: Joursoir Date: Sat, 10 Apr 2021 17:29:02 +0000 Subject: add glm headers --- src/include/glm/ext/quaternion_common_simd.inl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/include/glm/ext/quaternion_common_simd.inl (limited to 'src/include/glm/ext/quaternion_common_simd.inl') diff --git a/src/include/glm/ext/quaternion_common_simd.inl b/src/include/glm/ext/quaternion_common_simd.inl new file mode 100644 index 0000000..c7abd88 --- /dev/null +++ b/src/include/glm/ext/quaternion_common_simd.inl @@ -0,0 +1,18 @@ +#if GLM_ARCH & GLM_ARCH_SSE2_BIT + +namespace glm{ +namespace detail +{ + template + struct compute_dot, float, true> + { + static GLM_FUNC_QUALIFIER float call(qua const& x, qua const& y) + { + return _mm_cvtss_f32(glm_vec1_dot(x.data, y.data)); + } + }; +}//namespace detail +}//namespace glm + +#endif//GLM_ARCH & GLM_ARCH_SSE2_BIT + -- cgit v1.2.3-18-g5258