* add atVec2f

This commit is contained in:
2015-07-10 18:45:26 -07:00
parent 8d3524b1f6
commit 4f8df65a3d
4 changed files with 56 additions and 1 deletions

View File

@@ -46,6 +46,17 @@ typedef unsigned long long atUint64;
#include <xmmintrin.h>
#endif
typedef union
{
#if __clang__
float clangVec __attribute__((__vector_size__(8)));
#endif
#if __SSE__
__m128 mVec128;
#endif
float vec[2];
} atVec2f;
typedef union
{
#if __clang__