zeus/include/TVectorUnion.hpp
2015-08-11 18:41:28 -07:00

14 lines
155 B
C++

#ifndef TVECTORUNION
#define TVECTORUNION
typedef union
{
float v[4];
#if __SSE__
__m128 mVec128;
#endif
} TVectorUnion;
#endif // TVECTORUNION