From c9beec4b5b4adb17bdd788edc375fd33beea3a6c Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 31 May 2020 17:10:09 +0200 Subject: [PATCH] Removed unused config values --- src/sfizz/Config.h | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/sfizz/Config.h b/src/sfizz/Config.h index 7e1eaa42..4b0a5b67 100644 --- a/src/sfizz/Config.h +++ b/src/sfizz/Config.h @@ -97,28 +97,4 @@ namespace config { static constexpr double amplitudeSquare = 0.515; } // namespace config -// Enable or disable SIMD accelerators by default -namespace SIMDConfig { - constexpr bool writeInterleaved { true }; - constexpr bool readInterleaved { true }; - constexpr bool fill { true }; - constexpr bool gain { false }; - constexpr bool divide { false }; - constexpr bool mathfuns { false }; - constexpr bool loopingSFZIndex { true }; - constexpr bool saturatingSFZIndex { true }; - constexpr bool linearRamp { false }; - constexpr bool multiplicativeRamp { true }; - constexpr bool add { false }; - constexpr bool subtract { false }; - constexpr bool multiplyAdd { false }; - constexpr bool copy { false }; - constexpr bool pan { false }; - constexpr bool cumsum { true }; - constexpr bool diff { false }; - constexpr bool sfzInterpolationCast { true }; - constexpr bool mean { false }; - constexpr bool meanSquared { false }; - constexpr bool upsampling { true }; -} } // namespace sfz