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 namespace glm{
00038 namespace detail
00039 {
00040 __m128 sse_abs_ps(__m128 x);
00041
00042 __m128 sse_sgn_ps(__m128 x);
00043
00044
00045 __m128 sse_flr_ps(__m128 v);
00046
00047
00048 __m128 sse_trc_ps(__m128 v);
00049
00050
00051 __m128 sse_nd_ps(__m128 v);
00052
00053
00054 __m128 sse_rde_ps(__m128 v);
00055
00056 __m128 sse_rnd_ps(__m128 x);
00057
00058 __m128 sse_ceil_ps(__m128 v);
00059
00060 __m128 sse_frc_ps(__m128 x);
00061
00062 __m128 sse_mod_ps(__m128 x, __m128 y);
00063
00064 __m128 sse_modf_ps(__m128 x, __m128i & i);
00065
00066
00067
00068
00069
00070 __m128 sse_clp_ps(__m128 v, __m128 minVal, __m128 maxVal);
00071
00072 __m128 sse_mix_ps(__m128 v1, __m128 v2, __m128 a);
00073
00074 __m128 sse_stp_ps(__m128 edge, __m128 x);
00075
00076 __m128 sse_ssp_ps(__m128 edge0, __m128 edge1, __m128 x);
00077
00078 __m128 sse_nan_ps(__m128 x);
00079
00080 __m128 sse_inf_ps(__m128 x);
00081
00082 }
00083 }
00084
00085 #include "intrinsic_common.inl"
00086
00087 #endif//GLM_ARCH