├── .clang-format ├── .github └── workflows │ ├── build-pr.yml │ ├── code-checks.yml │ └── publish-doxygen.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── cmake └── CPM.cmake ├── doxygen ├── Doxyfile ├── header.html └── logo.png ├── examples ├── CMakeLists.txt ├── filter_plot_tool │ ├── CMakeLists.txt │ └── filter_plot_tool.cpp ├── filters_example_plugin │ ├── CMakeLists.txt │ ├── FilterPlotComponent.cpp │ ├── FilterPlotComponent.h │ ├── FiltersPlugin.cpp │ ├── FiltersPlugin.h │ ├── FiltersPluginEditor.cpp │ └── FiltersPluginEditor.h └── filters_plus_plus │ ├── CMakeLists.txt │ ├── filter_plus_plus_bruteforce.cpp │ ├── filter_plus_plus_dumpmodels.cpp │ └── pngplot.h ├── include-extras └── sst │ └── filters │ └── FilterPlotter.h ├── include └── sst │ ├── filters++.h │ ├── filters++ │ ├── api.h │ ├── configuration_selector.h │ ├── details │ │ ├── configuration_selector_impl.h │ │ ├── filter_impl.h │ │ └── filter_payload.h │ ├── enums.h │ ├── enums_to_string.h │ ├── model_config.h │ └── models │ │ ├── Comb.h │ │ ├── CutoffWarp.h │ │ ├── CytomicSVF.h │ │ ├── DiodeLadder.h │ │ ├── K35.h │ │ ├── OBXD_2Pole.h │ │ ├── OBXD_4Pole.h │ │ ├── OBXD_Xpander.h │ │ ├── ResonanceWarp.h │ │ ├── SampleAndHold.h │ │ ├── Tripole.h │ │ ├── VemberClassic.h │ │ ├── VemberLadder.h │ │ └── VintageLadder.h │ ├── filters.h │ ├── filters │ ├── BiquadFilter.h │ ├── CutoffWarp.h │ ├── CytomicSVF.h │ ├── CytomicSVFQuadForm.h │ ├── CytomicTilt.h │ ├── DiodeLadder.h │ ├── FastTiltNoiseFilter.h │ ├── FilterCoefficientMaker.h │ ├── FilterCoefficientMaker_Impl.h │ ├── FilterConfiguration.h │ ├── FilterConfigurationLabels.h │ ├── HalfRateFilter.h │ ├── K35Filter.h │ ├── OBXDFilter.h │ ├── QuadFilterUnit.h │ ├── QuadFilterUnit_Impl.h │ ├── ResonanceWarp.h │ ├── TriPoleFilter.h │ ├── TuningProvider.h │ └── VintageLadders.h │ └── utilities │ ├── SincTable.h │ ├── globals.h │ └── shared.h ├── libs └── catch2 │ └── catch2.hpp ├── scripts ├── fix_code.sh ├── fix_file_comments.pl └── fix_header_guards.pl └── tests ├── BasicFiltersTest.cpp ├── BiquadTest.cpp ├── CMakeLists.txt ├── CutoffWarpTest.cpp ├── CytomicSVFTests.cpp ├── DiodeLadderTest.cpp ├── HalfRateTest.cpp ├── K35FilterTest.cpp ├── OBXDFilterTest.cpp ├── ResonanceWarpTest.cpp ├── TestUtils.h ├── TriPoleFilterTest.cpp ├── VintageLaddersTest.cpp ├── filters_plus_plus.cpp └── tests.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/.github/workflows/build-pr.yml -------------------------------------------------------------------------------- /.github/workflows/code-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/.github/workflows/code-checks.yml -------------------------------------------------------------------------------- /.github/workflows/publish-doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/.github/workflows/publish-doxygen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/doxygen/header.html -------------------------------------------------------------------------------- /doxygen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/doxygen/logo.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/filter_plot_tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filter_plot_tool/CMakeLists.txt -------------------------------------------------------------------------------- /examples/filter_plot_tool/filter_plot_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filter_plot_tool/filter_plot_tool.cpp -------------------------------------------------------------------------------- /examples/filters_example_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /examples/filters_example_plugin/FilterPlotComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/FilterPlotComponent.cpp -------------------------------------------------------------------------------- /examples/filters_example_plugin/FilterPlotComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/FilterPlotComponent.h -------------------------------------------------------------------------------- /examples/filters_example_plugin/FiltersPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/FiltersPlugin.cpp -------------------------------------------------------------------------------- /examples/filters_example_plugin/FiltersPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/FiltersPlugin.h -------------------------------------------------------------------------------- /examples/filters_example_plugin/FiltersPluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/FiltersPluginEditor.cpp -------------------------------------------------------------------------------- /examples/filters_example_plugin/FiltersPluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_example_plugin/FiltersPluginEditor.h -------------------------------------------------------------------------------- /examples/filters_plus_plus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_plus_plus/CMakeLists.txt -------------------------------------------------------------------------------- /examples/filters_plus_plus/filter_plus_plus_bruteforce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_plus_plus/filter_plus_plus_bruteforce.cpp -------------------------------------------------------------------------------- /examples/filters_plus_plus/filter_plus_plus_dumpmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_plus_plus/filter_plus_plus_dumpmodels.cpp -------------------------------------------------------------------------------- /examples/filters_plus_plus/pngplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/examples/filters_plus_plus/pngplot.h -------------------------------------------------------------------------------- /include-extras/sst/filters/FilterPlotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include-extras/sst/filters/FilterPlotter.h -------------------------------------------------------------------------------- /include/sst/filters++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++.h -------------------------------------------------------------------------------- /include/sst/filters++/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/api.h -------------------------------------------------------------------------------- /include/sst/filters++/configuration_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/configuration_selector.h -------------------------------------------------------------------------------- /include/sst/filters++/details/configuration_selector_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/details/configuration_selector_impl.h -------------------------------------------------------------------------------- /include/sst/filters++/details/filter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/details/filter_impl.h -------------------------------------------------------------------------------- /include/sst/filters++/details/filter_payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/details/filter_payload.h -------------------------------------------------------------------------------- /include/sst/filters++/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/enums.h -------------------------------------------------------------------------------- /include/sst/filters++/enums_to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/enums_to_string.h -------------------------------------------------------------------------------- /include/sst/filters++/model_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/model_config.h -------------------------------------------------------------------------------- /include/sst/filters++/models/Comb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/Comb.h -------------------------------------------------------------------------------- /include/sst/filters++/models/CutoffWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/CutoffWarp.h -------------------------------------------------------------------------------- /include/sst/filters++/models/CytomicSVF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/CytomicSVF.h -------------------------------------------------------------------------------- /include/sst/filters++/models/DiodeLadder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/DiodeLadder.h -------------------------------------------------------------------------------- /include/sst/filters++/models/K35.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/K35.h -------------------------------------------------------------------------------- /include/sst/filters++/models/OBXD_2Pole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/OBXD_2Pole.h -------------------------------------------------------------------------------- /include/sst/filters++/models/OBXD_4Pole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/OBXD_4Pole.h -------------------------------------------------------------------------------- /include/sst/filters++/models/OBXD_Xpander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/OBXD_Xpander.h -------------------------------------------------------------------------------- /include/sst/filters++/models/ResonanceWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/ResonanceWarp.h -------------------------------------------------------------------------------- /include/sst/filters++/models/SampleAndHold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/SampleAndHold.h -------------------------------------------------------------------------------- /include/sst/filters++/models/Tripole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/Tripole.h -------------------------------------------------------------------------------- /include/sst/filters++/models/VemberClassic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/VemberClassic.h -------------------------------------------------------------------------------- /include/sst/filters++/models/VemberLadder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/VemberLadder.h -------------------------------------------------------------------------------- /include/sst/filters++/models/VintageLadder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters++/models/VintageLadder.h -------------------------------------------------------------------------------- /include/sst/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters.h -------------------------------------------------------------------------------- /include/sst/filters/BiquadFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/BiquadFilter.h -------------------------------------------------------------------------------- /include/sst/filters/CutoffWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/CutoffWarp.h -------------------------------------------------------------------------------- /include/sst/filters/CytomicSVF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/CytomicSVF.h -------------------------------------------------------------------------------- /include/sst/filters/CytomicSVFQuadForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/CytomicSVFQuadForm.h -------------------------------------------------------------------------------- /include/sst/filters/CytomicTilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/CytomicTilt.h -------------------------------------------------------------------------------- /include/sst/filters/DiodeLadder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/DiodeLadder.h -------------------------------------------------------------------------------- /include/sst/filters/FastTiltNoiseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/FastTiltNoiseFilter.h -------------------------------------------------------------------------------- /include/sst/filters/FilterCoefficientMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/FilterCoefficientMaker.h -------------------------------------------------------------------------------- /include/sst/filters/FilterCoefficientMaker_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/FilterCoefficientMaker_Impl.h -------------------------------------------------------------------------------- /include/sst/filters/FilterConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/FilterConfiguration.h -------------------------------------------------------------------------------- /include/sst/filters/FilterConfigurationLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/FilterConfigurationLabels.h -------------------------------------------------------------------------------- /include/sst/filters/HalfRateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/HalfRateFilter.h -------------------------------------------------------------------------------- /include/sst/filters/K35Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/K35Filter.h -------------------------------------------------------------------------------- /include/sst/filters/OBXDFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/OBXDFilter.h -------------------------------------------------------------------------------- /include/sst/filters/QuadFilterUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/QuadFilterUnit.h -------------------------------------------------------------------------------- /include/sst/filters/QuadFilterUnit_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/QuadFilterUnit_Impl.h -------------------------------------------------------------------------------- /include/sst/filters/ResonanceWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/ResonanceWarp.h -------------------------------------------------------------------------------- /include/sst/filters/TriPoleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/TriPoleFilter.h -------------------------------------------------------------------------------- /include/sst/filters/TuningProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/TuningProvider.h -------------------------------------------------------------------------------- /include/sst/filters/VintageLadders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/filters/VintageLadders.h -------------------------------------------------------------------------------- /include/sst/utilities/SincTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/utilities/SincTable.h -------------------------------------------------------------------------------- /include/sst/utilities/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/utilities/globals.h -------------------------------------------------------------------------------- /include/sst/utilities/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/include/sst/utilities/shared.h -------------------------------------------------------------------------------- /libs/catch2/catch2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/libs/catch2/catch2.hpp -------------------------------------------------------------------------------- /scripts/fix_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/scripts/fix_code.sh -------------------------------------------------------------------------------- /scripts/fix_file_comments.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/scripts/fix_file_comments.pl -------------------------------------------------------------------------------- /scripts/fix_header_guards.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/scripts/fix_header_guards.pl -------------------------------------------------------------------------------- /tests/BasicFiltersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/BasicFiltersTest.cpp -------------------------------------------------------------------------------- /tests/BiquadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/BiquadTest.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/CutoffWarpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/CutoffWarpTest.cpp -------------------------------------------------------------------------------- /tests/CytomicSVFTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/CytomicSVFTests.cpp -------------------------------------------------------------------------------- /tests/DiodeLadderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/DiodeLadderTest.cpp -------------------------------------------------------------------------------- /tests/HalfRateTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/HalfRateTest.cpp -------------------------------------------------------------------------------- /tests/K35FilterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/K35FilterTest.cpp -------------------------------------------------------------------------------- /tests/OBXDFilterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/OBXDFilterTest.cpp -------------------------------------------------------------------------------- /tests/ResonanceWarpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/ResonanceWarpTest.cpp -------------------------------------------------------------------------------- /tests/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/TestUtils.h -------------------------------------------------------------------------------- /tests/TriPoleFilterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/TriPoleFilterTest.cpp -------------------------------------------------------------------------------- /tests/VintageLaddersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/VintageLaddersTest.cpp -------------------------------------------------------------------------------- /tests/filters_plus_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/filters_plus_plus.cpp -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surge-synthesizer/sst-filters/HEAD/tests/tests.cpp --------------------------------------------------------------------------------