├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── modules ├── CMakeLists.txt └── cmake │ ├── SubprojectVersion.cmake │ ├── WarningFlags.cmake │ └── pluginval.cmake ├── preview.png ├── res ├── CMakeLists.txt ├── RobotoCondensed-Bold.ttf ├── RobotoCondensed-Regular.ttf ├── gui.xml ├── knob.svg ├── pointer.svg └── presets │ └── Default.mypreset └── src ├── CMakeLists.txt ├── PluginProcessor.cpp ├── PluginProcessor.hpp ├── dsp ├── BiquadFilter.cpp ├── BiquadFilter.hpp ├── BitReduction.cpp ├── BitReduction.hpp ├── CMakeLists.txt └── WaveWarp.hpp ├── gui ├── CMakeLists.txt ├── item │ └── DynText.hpp └── lnf │ ├── MainLNF.cpp │ └── MainLNF.hpp └── pch.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/README.md -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/cmake/SubprojectVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/modules/cmake/SubprojectVersion.cmake -------------------------------------------------------------------------------- /modules/cmake/WarningFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/modules/cmake/WarningFlags.cmake -------------------------------------------------------------------------------- /modules/cmake/pluginval.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/modules/cmake/pluginval.cmake -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/preview.png -------------------------------------------------------------------------------- /res/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/CMakeLists.txt -------------------------------------------------------------------------------- /res/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /res/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /res/gui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/gui.xml -------------------------------------------------------------------------------- /res/knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/knob.svg -------------------------------------------------------------------------------- /res/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/pointer.svg -------------------------------------------------------------------------------- /res/presets/Default.mypreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/res/presets/Default.mypreset -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/PluginProcessor.cpp -------------------------------------------------------------------------------- /src/PluginProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/PluginProcessor.hpp -------------------------------------------------------------------------------- /src/dsp/BiquadFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/dsp/BiquadFilter.cpp -------------------------------------------------------------------------------- /src/dsp/BiquadFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/dsp/BiquadFilter.hpp -------------------------------------------------------------------------------- /src/dsp/BitReduction.cpp: -------------------------------------------------------------------------------- 1 | #include "BitReduction.hpp" 2 | -------------------------------------------------------------------------------- /src/dsp/BitReduction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/dsp/BitReduction.hpp -------------------------------------------------------------------------------- /src/dsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/dsp/CMakeLists.txt -------------------------------------------------------------------------------- /src/dsp/WaveWarp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/dsp/WaveWarp.hpp -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/item/DynText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/gui/item/DynText.hpp -------------------------------------------------------------------------------- /src/gui/lnf/MainLNF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/gui/lnf/MainLNF.cpp -------------------------------------------------------------------------------- /src/gui/lnf/MainLNF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eulmour/HandyOsc/HEAD/src/gui/lnf/MainLNF.hpp -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | --------------------------------------------------------------------------------