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.

21 lines
474B

  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_IMMINTRIN_H) || defined(SIMDE_X86_SSE3_NATIVE)
  9. # include_next <pmmintrin.h>
  10. #else
  11. # include "mmintrin.h"
  12. # include "xmmintrin.h"
  13. # include "emmintrin.h"
  14. # define SIMDE_ENABLE_NATIVE_ALIASES
  15. # include "simde/x86/sse3.h"
  16. # undef SIMDE_ENABLE_NATIVE_ALIASES
  17. #endif