Simd.h 409 B

123456789101112131415161718
  1. // Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <anki/Config.h>
  7. #if ANKI_SIMD == ANKI_SIMD_SSE
  8. #include <smmintrin.h>
  9. #elif ANKI_SIMD == ANKI_SIMD_NEON
  10. #include <arm_neon.h>
  11. #elif ANKI_SIMD == ANKI_SIMD_NONE
  12. #define ANKI_DUMMY_DUMMY_DUMMY 1
  13. #else
  14. #error "See file"
  15. #endif