nvidia-texture-tools/src/nvmath/SimdVector.h

13 lines
241 B
C
Raw Normal View History

// This code is in the public domain -- Ignacio Casta<74>o <castano@gmail.com>
#include "Vector.h" // Vector3, Vector4
#if NV_USE_ALTIVEC
# include "SimdVector_VE.h"
#endif
#if NV_USE_SSE
# include "SimdVector_SSE.h"
#endif