intrinsic_matrix.hpp
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 
00029 #pragma once
00030 
00031 #include "setup.hpp"
00032 
00033 #if(!(GLM_ARCH & GLM_ARCH_SSE2))
00034 #       error "SSE2 instructions not supported or enabled"
00035 #else
00036 
00037 #include "intrinsic_geometric.hpp"
00038 
00039 namespace glm{
00040 namespace detail
00041 {
00042         void sse_add_ps(__m128 in1[4], __m128 in2[4], __m128 out[4]);
00043 
00044         void sse_sub_ps(__m128 in1[4], __m128 in2[4], __m128 out[4]);
00045 
00046         __m128 sse_mul_ps(__m128 m[4], __m128 v);
00047 
00048         __m128 sse_mul_ps(__m128 v, __m128 m[4]);
00049 
00050         void sse_mul_ps(__m128 const in1[4], __m128 const in2[4], __m128 out[4]);
00051 
00052         void sse_transpose_ps(__m128 const in[4], __m128 out[4]);
00053 
00054         void sse_inverse_ps(__m128 const in[4], __m128 out[4]);
00055 
00056         void sse_rotate_ps(__m128 const in[4], float Angle, float const v[3], __m128 out[4]);
00057 
00058         __m128 sse_det_ps(__m128 const m[4]);
00059 
00060         __m128 sse_slow_det_ps(__m128 const m[4]);
00061 
00062 }//namespace detail
00063 }//namespace glm
00064 
00065 #include "intrinsic_matrix.inl"
00066 
00067 #endif//GLM_ARCH


rtabmap
Author(s): Mathieu Labbe
autogenerated on Sat Jul 23 2016 11:44:16