summaryrefslogtreecommitdiffstats
path: root/external/include/glm/detail/func_geometric_simd.inl
diff options
context:
space:
mode:
Diffstat (limited to 'external/include/glm/detail/func_geometric_simd.inl')
-rw-r--r--external/include/glm/detail/func_geometric_simd.inl99
1 files changed, 0 insertions, 99 deletions
diff --git a/external/include/glm/detail/func_geometric_simd.inl b/external/include/glm/detail/func_geometric_simd.inl
deleted file mode 100644
index e6c8d85..0000000
--- a/external/include/glm/detail/func_geometric_simd.inl
+++ /dev/null
@@ -1,99 +0,0 @@
-/// @ref core
-/// @file glm/detail/func_geometric_simd.inl
-
-#include "../simd/geometric.h"
-
-#if GLM_ARCH & GLM_ARCH_SSE2_BIT
-
-namespace glm{
-namespace detail
-{
- template<qualifier Q>
- struct compute_length<4, float, Q, true>
- {
- GLM_FUNC_QUALIFIER static float call(vec<4, float, Q> const& v)
- {
- return _mm_cvtss_f32(glm_vec4_length(v.data));
- }
- };
-
- template<qualifier Q>
- struct compute_distance<4, float, Q, true>
- {
- GLM_FUNC_QUALIFIER static float call(vec<4, float, Q> const& p0, vec<4, float, Q> const& p1)
- {
- return _mm_cvtss_f32(glm_vec4_distance(p0.data, p1.data));
- }
- };
-
- template<qualifier Q>
- struct compute_dot<vec<4, float, Q>, float, true>
- {
- GLM_FUNC_QUALIFIER static float call(vec<4, float, Q> const& x, vec<4, float, Q> const& y)
- {
- return _mm_cvtss_f32(glm_vec1_dot(x.data, y.data));
- }
- };
-
- template<qualifier Q>
- struct compute_cross<float, Q, true>
- {
- GLM_FUNC_QUALIFIER static vec<3, float, Q> call(vec<3, float, Q> const& a, vec<3, float, Q> const& b)
- {
- __m128 const set0 = _mm_set_ps(0.0f, a.z, a.y, a.x);
- __m128 const set1 = _mm_set_ps(0.0f, b.z, b.y, b.x);
- __m128 const xpd0 = glm_vec4_cross(set0, set1);
-
- vec<4, float, Q> Result;
- Result.data = xpd0;
- return vec<3, float, Q>(Result);
- }
- };
-
- template<qualifier Q>
- struct compute_normalize<4, float, Q, true>
- {
- GLM_FUNC_QUALIFIER static vec<4, float, Q> call(vec<4, float, Q> const& v)
- {
- vec<4, float, Q> Result;
- Result.data = glm_vec4_normalize(v.data);
- return Result;
- }
- };
-
- template<qualifier Q>
- struct compute_faceforward<4, float, Q, true>
- {
- GLM_FUNC_QUALIFIER static vec<4, float, Q> call(vec<4, float, Q> const& N, vec<4, float, Q> const& I, vec<4, float, Q> const& Nref)
- {
- vec<4, float, Q> Result;
- Result.data = glm_vec4_faceforward(N.data, I.data, Nref.data);
- return Result;
- }
- };
-
- template<qualifier Q>
- struct compute_reflect<4, float, Q, true>
- {
- GLM_FUNC_QUALIFIER static vec<4, float, Q> call(vec<4, float, Q> const& I, vec<4, float, Q> const& N)
- {
- vec<4, float, Q> Result;
- Result.data = glm_vec4_reflect(I.data, N.data);
- return Result;
- }
- };
-
- template<qualifier Q>
- struct compute_refract<4, float, Q, true>
- {
- GLM_FUNC_QUALIFIER static vec<4, float, Q> call(vec<4, float, Q> const& I, vec<4, float, Q> const& N, float eta)
- {
- vec<4, float, Q> Result;
- Result.data = glm_vec4_refract(I.data, N.data, _mm_set1_ps(eta));
- return Result;
- }
- };
-}//namespace detail
-}//namespace glm
-
-#endif//GLM_ARCH & GLM_ARCH_SSE2_BIT