OpenMoHAA 0.82.1
Loading...
Searching...
No Matches
CellVectorMath.h
1#ifndef __CELL_VECTORMATH_H__
2#define __CELL_VECTORMATH_H__
3
4#ifndef __CELLOS_LV2__
6{
7 float x, y, z, w;
8}
9#ifdef __GNUC__
10__attribute__ ((aligned (16)));
11#else
12__declspec(align(16));
13#endif // __GNUC__
14#endif // __CELLOS_LV2__
15
16#ifdef __CELLOS_LV2__
17#include "vectormath_soa.h"
18#else
19#include "vectormath_scalar/vectormath_aos.h"
20#endif // __CELLOS_LV2__
21
22using namespace Vectormath;
23using namespace Vectormath::Aos;
24
25#endif /* __CELL_VECTORMATH_H__ */
Definition CellVectorMath.h:6