You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
628B

  1. /*
  2. * DISTRHO Cardinal Plugin
  3. * Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
  4. * SPDX-License-Identifier: GPL-3.0-or-later
  5. */
  6. #pragma once
  7. #include "simd-compat.h"
  8. #if defined(CARDINAL_INCLUDING_EMULATED_IMMINTRIN_H) || defined(SIMDE_X86_SSE_NATIVE)
  9. # define CARDINAL_INCLUDING_IMMINTRIN_H
  10. # include_next <immintrin.h>
  11. # undef CARDINAL_INCLUDING_IMMINTRIN_H
  12. #else
  13. # define CARDINAL_INCLUDING_EMULATED_IMMINTRIN_H
  14. # include "mmintrin.h"
  15. # include "xmmintrin.h"
  16. # include "emmintrin.h"
  17. # include "pmmintrin.h"
  18. # include "tmmintrin.h"
  19. # include "smmintrin.h"
  20. # undef CARDINAL_INCLUDING_EMULATED_IMMINTRIN_H
  21. #endif