mirror of
https://github.com/libAthena/athena.git
synced 2025-12-11 06:27:51 +00:00
* add atVec2f
This commit is contained in:
@@ -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__
|
||||
|
||||
Reference in New Issue
Block a user