diff options
Diffstat (limited to 'PxShared/src/foundation/include/PsVecMathSSE.h')
| -rw-r--r-- | PxShared/src/foundation/include/PsVecMathSSE.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/PxShared/src/foundation/include/PsVecMathSSE.h b/PxShared/src/foundation/include/PsVecMathSSE.h index 13e44663..fd7af011 100644 --- a/PxShared/src/foundation/include/PsVecMathSSE.h +++ b/PxShared/src/foundation/include/PsVecMathSSE.h @@ -30,6 +30,13 @@ #ifndef PSFOUNDATION_PSVECMATHSSE_H #define PSFOUNDATION_PSVECMATHSSE_H +namespace physx +{ +namespace shdfnd +{ +namespace aos +{ + namespace { const PX_ALIGN(16, PxF32) minus1w[4] = { 0.0f, 0.0f, 0.0f, -1.0f }; @@ -52,5 +59,10 @@ PX_FORCE_INLINE void QuatGetMat33V(const QuatVArg q, Vec3V& column0, Vec3V& colu column2 = V4MulAdd(v, V4GetZ(q2), _mm_shuffle_ps(a2, a2, _MM_SHUFFLE(3, 0, 2, 1))); } +} // namespace aos +} // namespace shdfnd +} // namespace physx + + #endif // PSFOUNDATION_PSVECMATHSSE_H |