Update and adapt to Rack 2.3
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
03055c2563
commit
1262f318da
41 changed files with 901 additions and 727 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* DISTRHO Cardinal Plugin
|
||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
|
||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
|
@ -20,12 +20,7 @@
|
|||
#if (defined(__i386__) || defined(__x86_64__) || defined(__EMSCRIPTEN__)) && !defined(CARDINAL_NOSIMD)
|
||||
# include_next <emmintrin.h>
|
||||
#else
|
||||
# define SIMDE_ACCURACY_PREFERENCE 0
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# define SIMDE_FAST_CONVERSION_RANGE
|
||||
# define SIMDE_FAST_MATH
|
||||
# define SIMDE_FAST_NANS
|
||||
# define SIMDE_FAST_ROUND_MODE
|
||||
# define SIMDE_FAST_ROUND_TIES
|
||||
# include "../simde/simde/x86/sse.h"
|
||||
# include "simde/x86/sse.h"
|
||||
# undef SIMDE_ENABLE_NATIVE_ALIASES
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* DISTRHO Cardinal Plugin
|
||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
|
||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
|
@ -20,13 +20,8 @@
|
|||
#if (defined(__i386__) || defined(__x86_64__) || defined(__EMSCRIPTEN__)) && !defined(CARDINAL_NOSIMD)
|
||||
# include_next <immintrin.h>
|
||||
#else
|
||||
# define SIMDE_ACCURACY_PREFERENCE 0
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# define SIMDE_FAST_CONVERSION_RANGE
|
||||
# define SIMDE_FAST_MATH
|
||||
# define SIMDE_FAST_NANS
|
||||
# define SIMDE_FAST_ROUND_MODE
|
||||
# define SIMDE_FAST_ROUND_TIES
|
||||
# include "../simde/simde/x86/sse.h"
|
||||
# include "../simde/simde/x86/sse2.h"
|
||||
# undef SIMDE_ENABLE_NATIVE_ALIASES
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* DISTRHO Cardinal Plugin
|
||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
|
||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
|
@ -22,12 +22,7 @@
|
|||
#elif defined(__EMSCRIPTEN__) && !defined(CARDINAL_NOSIMD)
|
||||
# include <wasm_simd128.h>
|
||||
#else
|
||||
# define SIMDE_ACCURACY_PREFERENCE 0
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# define SIMDE_FAST_CONVERSION_RANGE
|
||||
# define SIMDE_FAST_MATH
|
||||
# define SIMDE_FAST_NANS
|
||||
# define SIMDE_FAST_ROUND_MODE
|
||||
# define SIMDE_FAST_ROUND_TIES
|
||||
# include "../simde/simde/x86/mmx.h"
|
||||
# undef SIMDE_ENABLE_NATIVE_ALIASES
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* DISTRHO Cardinal Plugin
|
||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
|
||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
// assume SSE3 only on macOS
|
||||
# ifndef ARCH_MAC
|
||||
# include "../simde/simde/x86/sse3.h"
|
||||
# include "simde/x86/sse3.h"
|
||||
# endif
|
||||
|
||||
# ifdef _WIN32_WAS_DEFINED
|
||||
|
@ -40,6 +40,9 @@
|
|||
# undef _WIN32_WAS_DEFINED
|
||||
# endif
|
||||
|
||||
# undef SIMDE_X86_SSE2_NATIVE
|
||||
# undef SIMDE_X86_SSE3_ENABLE_NATIVE_ALIASES
|
||||
|
||||
#elif defined(__EMSCRIPTEN__) && !defined(CARDINAL_NOSIMD)
|
||||
# include_next <pmmintrin.h>
|
||||
|
||||
|
@ -67,14 +70,9 @@ __m64 _mm_set1_pi16(short w)
|
|||
*/
|
||||
|
||||
#else
|
||||
# define SIMDE_ACCURACY_PREFERENCE 0
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# define SIMDE_FAST_CONVERSION_RANGE
|
||||
# define SIMDE_FAST_MATH
|
||||
# define SIMDE_FAST_NANS
|
||||
# define SIMDE_FAST_ROUND_MODE
|
||||
# define SIMDE_FAST_ROUND_TIES
|
||||
# include "../simde/simde/x86/sse.h"
|
||||
# include "../simde/simde/x86/sse2.h"
|
||||
# include "../simde/simde/x86/sse3.h"
|
||||
# include "simde/x86/sse.h"
|
||||
# include "simde/x86/sse2.h"
|
||||
# include "simde/x86/sse3.h"
|
||||
# undef SIMDE_ENABLE_NATIVE_ALIASES
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* DISTRHO Cardinal Plugin
|
||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
|
||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
|
@ -20,12 +20,7 @@
|
|||
#if (defined(__i386__) || defined(__x86_64__) || defined(__EMSCRIPTEN__)) && !defined(CARDINAL_NOSIMD)
|
||||
# include_next <xmmintrin.h>
|
||||
#else
|
||||
# define SIMDE_ACCURACY_PREFERENCE 0
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# define SIMDE_FAST_CONVERSION_RANGE
|
||||
# define SIMDE_FAST_MATH
|
||||
# define SIMDE_FAST_NANS
|
||||
# define SIMDE_FAST_ROUND_MODE
|
||||
# define SIMDE_FAST_ROUND_TIES
|
||||
# include "../simde/simde/x86/avx.h"
|
||||
# include "simde/x86/avx.h"
|
||||
# undef SIMDE_ENABLE_NATIVE_ALIASES
|
||||
#endif
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit dd0b662fd8cf4b1617dbbb4d08aa053e512b08e4
|
Loading…
Add table
Add a link
Reference in a new issue