1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00
hl2sdk/mathlib/sseconst.cpp

9 lines
234 B
C++

// $Id$
#include <mathlib/ssemath.h>
__m128 Four_PointFives={0.5,0.5,0.5,0.5};
__m128 Four_Zeros={0.0,0.0,0.0,0.0};
__m128 Four_Ones={1.0,1.0,1.0,1.0};
__m128 Four_Epsilons={FLT_EPSILON,FLT_EPSILON,FLT_EPSILON,FLT_EPSILON};