aboutsummaryrefslogtreecommitdiffstats
path: root/include/glm/detail/func_matrix_simd.inl
diff options
context:
space:
mode:
Diffstat (limited to 'include/glm/detail/func_matrix_simd.inl')
-rw-r--r--include/glm/detail/func_matrix_simd.inl21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/glm/detail/func_matrix_simd.inl b/include/glm/detail/func_matrix_simd.inl
new file mode 100644
index 0000000..2d73e79
--- /dev/null
+++ b/include/glm/detail/func_matrix_simd.inl
@@ -0,0 +1,21 @@
+/// @ref core
+/// @file glm/detail/func_matrix_simd.inl
+
+#include "type_mat4x4.hpp"
+#include "func_geometric.hpp"
+#include "../simd/matrix.h"
+
+namespace glm
+{
+# if GLM_HAS_UNRESTRICTED_UNIONS
+ template <>
+ GLM_FUNC_QUALIFIER tmat4x4<float, simd> inverse(tmat4x4<float, simd> const& m)
+ {
+ tmat4x4<float, simd> Result(uninitialize);
+ glm_inverse_ps(
+ *reinterpret_cast<__m128 const(*)[4]>(&m[0].data),
+ *reinterpret_cast<__m128(*)[4]>(&Result[0].data));
+ return Result;
+ }
+# endif// GLM_HAS_UNRESTRICTED_UNIONS
+}//namespace glm